:root {
  --navy-950: #062b5c;
  --navy-800: #0b3d78;
  --teal-700: #087f83;
  --teal-500: #0aa4a6;
  --teal-100: #dff5f3;
  --red-600: #e3262e;
  --ink: #14213a;
  --muted: #5b6878;
  --line: #dce5eb;
  --surface: #ffffff;
  --soft: #f5f9fa;
  --shadow: 0 20px 55px rgba(6, 43, 92, 0.12);
  --radius: 22px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--navy-800);
}

a:hover {
  color: var(--teal-700);
}

.container {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  z-index: 100;
  top: -60px;
  left: 20px;
  padding: 10px 14px;
  color: white;
  background: var(--navy-950);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(220, 229, 235, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--navy-950);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(280px, 34vw, 430px);
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: white;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 9px 11px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 680;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--teal-700);
  background: var(--teal-100);
}

.nav-list .nav-cta {
  padding-inline: 16px;
  color: white;
  background: var(--navy-800);
}

.nav-list .nav-cta:hover,
.nav-list .nav-cta[aria-current="page"] {
  color: white;
  background: var(--teal-700);
}

.nav-list a.nav-adop {
  color: var(--red-600);
}

.nav-list a.nav-adop:hover,
.nav-list a.nav-adop[aria-current="page"] {
  color: var(--red-600);
  background: rgba(227, 38, 46, 0.09);
}

.adop-brand {
  color: var(--red-600);
  font-weight: 850;
}

.ask-panel .adop-brand,
.cta-band .adop-brand,
.site-footer .adop-brand {
  color: #ff535b;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 126px) 0;
  background:
    radial-gradient(circle at 85% 16%, rgba(10, 164, 166, 0.22), transparent 24rem),
    linear-gradient(145deg, #f8fbfc 0%, #edf7f7 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(6, 43, 92, 0.045);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(40px, 8vw, 90px);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal-700);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  line-height: 1.16;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5rem);
  letter-spacing: -0.055em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.04em;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.2rem);
}

.hero-actions,
.button-row {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy-800);
  border-radius: 12px;
  color: white;
  background: var(--navy-800);
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  color: white;
  background: var(--teal-700);
}

.button.secondary {
  color: var(--navy-800);
  background: transparent;
}

.button.secondary:hover {
  color: white;
}

.platform-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(10, 164, 166, 0.25);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.adop-logo {
  display: block;
  width: min(100%, 350px);
  height: auto;
  margin-bottom: 8px;
}

.platform-card strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.08rem;
}

.platform-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.signal-list {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.signal-list li {
  padding: 10px 12px;
  border-left: 3px solid var(--teal-500);
  border-radius: 0 9px 9px 0;
  background: var(--soft);
  font-size: 0.9rem;
}

.section {
  padding: clamp(68px, 9vw, 108px) 0;
}

.section.soft {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.letter-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.letter-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red-600);
  font-size: 2.2rem;
  line-height: 1;
}

.letter-card span {
  color: var(--navy-950);
  font-weight: 760;
}

.letter-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 30px rgba(6, 43, 92, 0.055);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 19px;
  place-items: center;
  border-radius: 13px;
  color: var(--navy-800);
  background: var(--teal-100);
  font-size: 0.82rem;
  font-weight: 850;
}

.solution-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 19px;
  padding: 7px;
  border-radius: 13px;
  fill: none;
  stroke: var(--navy-800);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: var(--teal-100);
}

.solution-icon .accent {
  stroke: var(--teal-700);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.compare-card h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.08rem;
}

.compare-label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--navy-800);
  background: var(--soft);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.compare-card li + li {
  margin-top: 8px;
}

.compare-summary {
  margin-top: 22px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.compare-summary p {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.02rem;
}

.journey {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  padding: 24px;
  overflow-x: auto;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.journey-step {
  position: relative;
  min-width: 108px;
  padding: 17px 12px;
  border-radius: 12px;
  color: var(--navy-950);
  background: var(--soft);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 760;
}

.journey-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -8px;
  color: var(--teal-700);
  content: "→";
  transform: translateY(-50%);
}

.ask-panel {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 28px;
  color: white;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
}

.ask-panel h2,
.ask-panel h3 {
  color: white;
}

.ask-box {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 1.08rem;
}

.answer-list {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.answer-list li {
  padding: 11px 13px;
  border-radius: 10px;
  color: #e9f7f6;
  background: rgba(255, 255, 255, 0.07);
}

.page-hero {
  padding: 70px 0;
  background: linear-gradient(145deg, #f8fbfc, #edf7f7);
}

.page-hero h1 {
  font-size: clamp(2.45rem, 5vw, 4.4rem);
}

.content-copy {
  max-width: 790px;
}

.content-copy p,
.content-copy li {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 28px;
}

.contact-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.contact-list a {
  font-weight: 700;
  text-decoration: none;
}

.contact-form-card {
  padding: clamp(24px, 4vw, 38px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.form-consent {
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bdcbd9;
  border-radius: 10px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(21, 101, 192, 0.15);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 500;
}

.form-consent input {
  margin-top: 4px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--teal-700);
  font-size: 0.88rem;
  font-weight: 700;
}

.turnstile-label {
  margin: 0 0 8px;
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 750;
}

.turnstile-host {
  min-height: 65px;
}

.contact-form .button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--teal-500);
  border-radius: 0 12px 12px 0;
  background: var(--teal-100);
}

.spaced-notice {
  margin-top: 28px;
}

.cta-band {
  padding: 42px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(120deg, var(--teal-700), var(--navy-800));
}

.cta-band h2 {
  color: white;
}

.cta-band p {
  max-width: 650px;
  margin-bottom: 0;
  color: #e7f8f7;
}

.site-footer {
  padding: 48px 0 28px;
  color: #dce9f3;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 30px;
}

.site-footer strong {
  color: white;
}

.site-footer p {
  max-width: 430px;
  color: #b9c9d8;
  font-size: 0.88rem;
}

.footer-links {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #dce9f3;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #9eb2c4;
  font-size: 0.76rem;
}

.digital-card-page {
  display: grid;
  min-height: 100vh;
  padding: 28px 0;
  place-items: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 183, 165, 0.2), transparent 22rem),
    var(--soft);
}

.digital-card-shell {
  width: min(560px, calc(100% - 28px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.digital-card-brand {
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--line);
}

.digital-card-brand .brand-logo {
  width: min(100%, 430px);
}

.digital-card-content {
  padding: 30px;
}

.digital-card-content h1 {
  font-size: clamp(2rem, 8vw, 3rem);
}

.digital-card-title {
  margin: 6px 0 22px;
  color: var(--teal-700);
  font-size: 1.08rem;
  font-weight: 800;
}

.digital-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0;
  gap: 10px;
}

.digital-action {
  display: flex;
  min-height: 50px;
  padding: 11px 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-800);
  background: var(--soft);
  font-weight: 760;
  text-align: center;
  text-decoration: none;
}

.digital-action.primary {
  color: white;
  border-color: var(--navy-800);
  background: var(--navy-800);
}

.digital-contact {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.digital-contact a {
  overflow-wrap: anywhere;
  font-weight: 700;
  text-decoration: none;
}

.digital-qr {
  display: grid;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 18px;
}

.digital-qr img {
  width: 120px;
  height: 120px;
}

.digital-qr p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.brand-architecture {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.architecture-level {
  width: min(100%, 520px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 30px rgba(6, 43, 92, 0.055);
}

.architecture-level h3 {
  margin-bottom: 4px;
}

.architecture-level p {
  margin: 0;
  color: var(--muted);
}

.architecture-arrow {
  color: var(--teal-700);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.industry-solution-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.industry-solution-list span {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-800);
  background: var(--soft);
  font-weight: 760;
}

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    padding: 10px 0;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .brand-logo {
    width: min(100%, 260px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-bottom: 8px;
  }

  .site-header.nav-open nav {
    display: block;
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow: visible;
  }

  .nav-list a {
    padding: 13px 14px;
    font-size: 1rem;
  }

  .nav-list .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--content));
  }

  .brand-logo {
    width: min(100%, 220px);
  }

  .grid-3,
  .grid-2,
  .grid-4,
  .footer-grid,
  .industry-solution-list,
  .form-grid,
  .digital-actions,
  .digital-qr {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .platform-card,
  .cta-band {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
