:root {
  --navy: #001f3f;
  --blue: #1689ff;
  --teal: #20d6c5;
  --teal-dark: #00707c;
  --white: #ffffff;
  --ink: #071827;
  --muted: #5f7185;
  --soft: #f3f8fb;
  --shadow: 0 24px 70px rgba(0, 22, 44, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7,24,39,.08);
}
.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.35px;
  font-size: 20px;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 80, 120, .16);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 750;
  color: #29445b;
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white !important;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 83% 10%, rgba(45, 212, 191, 0.28), transparent 30%),
    radial-gradient(circle at 10% 38%, rgba(37, 99, 235, 0.24), transparent 30%),
    linear-gradient(135deg, #001f3f 0%, #003a5f 47%, #006f7c 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, transparent 56%, rgba(255,255,255,0.07) 56.5%, transparent 72%),
    radial-gradient(circle at 88% 38%, rgba(255,255,255,0.10), transparent 18%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 76px;
  width: 300px;
  height: 300px;
  border: 18px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(45,212,191,0.20);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 78px;
  display: block;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.86);
  font-weight: 850;
  margin-bottom: 26px;
}
.kicker img {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}
h1 {
  margin: 0;
  font-size: clamp(50px, 7vw, 92px);
  line-height: .95;
  letter-spacing: -3.6px;
  font-weight: 930;
}
h1 span {
  display: block;
  background: linear-gradient(90deg, #38bdf8, #2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.42;
  color: rgba(255,255,255,.84);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: #06233d;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.button.secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.button.disabled {
  color: rgba(6,35,61,.72);
  background: rgba(255,255,255,.86);
  cursor: default;
}
.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 760;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(45,212,191,.75);
}

.hero-shot {
  width: 300px;
  max-width: 100%;
  justify-self: end;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 24px 56px rgba(0,0,0,.28);
  transform: rotate(1.2deg);
}
.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}
.section.soft {
  width: 100%;
  background: var(--soft);
  padding: 76px 0;
}
.section.soft > .section-inner,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.section-kicker {
  color: var(--teal-dark);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.section-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -1.8px;
  font-weight: 920;
  color: var(--ink);
}
.section-text {
  max-width: 780px;
  margin: 16px 0 0;
  font-size: 19px;
  line-height: 1.48;
  color: var(--muted);
}
.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.feature {
  min-height: 190px;
  padding: 24px 22px;
  border-radius: 26px;
  background: white;
  border: 1px solid rgba(7,24,39,.08);
  box-shadow: 0 18px 45px rgba(4,20,38,.08);
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  background: linear-gradient(135deg,#1689ff,#18c8bd);
  box-shadow: 0 12px 24px rgba(0,0,0,.10);
}
.feature-icon svg { width: 25px; height: 25px; stroke: white; }
.feature strong {
  display: block;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -.3px;
  margin-bottom: 9px;
}
.feature span {
  display: block;
  font-size: 15px;
  line-height: 1.38;
  color: var(--muted);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  align-items: start;
}
.gallery-card {
  overflow: hidden;
  border-radius: 28px;
  background: white;
  border: 1px solid rgba(7,24,39,.08);
  box-shadow: 0 20px 50px rgba(4,20,38,.10);
}
.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  background: #f7fbff;
}
.gallery-caption {
  padding: 20px 22px 24px;
}
.gallery-caption strong {
  display: block;
  font-size: 21px;
  letter-spacing: -.4px;
  margin-bottom: 8px;
}
.gallery-caption span {
  display: block;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.4;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.step {
  padding: 28px;
  border-radius: 28px;
  background: white;
  border: 1px solid rgba(7,24,39,.08);
  box-shadow: 0 18px 45px rgba(4,20,38,.08);
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg,#1689ff,#18c8bd);
  color: white;
  font-weight: 900;
}
.step strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.4px;
  margin-bottom: 8px;
}
.step span {
  display: block;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--muted);
}
.cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 72px;
  padding: 46px;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 85% 20%,rgba(45,212,191,.22),transparent 28%),
    linear-gradient(135deg,#001f3f,#00707c);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta h2 {
  margin: 0;
  font-size: clamp(30px,4vw,48px);
  line-height: 1.04;
  letter-spacing: -1.4px;
}
.cta p {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255,255,255,.78);
  max-width: 650px;
}
.page-hero {
  color: white;
  background:
    radial-gradient(circle at 80% 10%,rgba(45,212,191,.22),transparent 30%),
    linear-gradient(135deg,#001f3f 0%,#006f7c 100%);
}
.page-hero-inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}
.page-hero h1 { font-size: clamp(42px,6vw,76px); }
.page-hero p {
  max-width: 720px;
  color: rgba(255,255,255,.82);
  font-size: 21px;
  line-height: 1.45;
}
.content {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 80px;
}
.content h2 {
  margin: 34px 0 10px;
  font-size: 28px;
  letter-spacing: -.6px;
}
.content p,
.content li {
  color: #3e5368;
  line-height: 1.7;
  font-size: 17px;
}
.content ul { padding-left: 22px; }
.support-card {
  border: 1px solid rgba(7,24,39,.08);
  border-radius: 28px;
  padding: 28px;
  background: white;
  box-shadow: 0 18px 45px rgba(4,20,38,.08);
  margin: 22px 0;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}
.footer {
  border-top: 1px solid rgba(7,24,39,.08);
  background: #ffffff;
}
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.footer a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
}
.footer a:hover { color: var(--blue); }

@media (max-width: 980px) {
  .nav { min-height: 68px; }
  .nav-links { gap: 14px; font-size: 14px; }
  .hero-inner { grid-template-columns: 1fr; padding: 58px 0; }
  .hero-shot { width: 280px; justify-self: start; transform: none; }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery, .steps, .cta, .support-grid { grid-template-columns: 1fr; }
  h1 { letter-spacing: -2.4px; }
}
@media (max-width: 620px) {
  .brand span { display: none; }
  .nav-links { gap: 10px; }
  .nav-cta { display: none; }
  .features { grid-template-columns: 1fr; }
  .hero-shot { width: 240px; }
  .cta { padding: 30px; }
}

.announcement {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 800;
}
.announcement::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 14px rgba(45,212,191,.75);
}
.use-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.use-case {
  padding: 26px;
  border-radius: 28px;
  background: white;
  border: 1px solid rgba(7,24,39,.08);
  box-shadow: 0 18px 45px rgba(4,20,38,.08);
}
.use-case strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.4px;
  margin-bottom: 9px;
}
.use-case span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}
.seo-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.seo-pill {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.35;
}
.seo-pill strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 5px;
}
@media (max-width: 980px) {
  .use-cases, .seo-strip { grid-template-columns: 1fr; }
}


.hero-inner > div:first-child {
  max-width: 890px;
}


.faq {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(7,24,39,.08);
  border-radius: 20px;
  background: white;
  box-shadow: 0 14px 34px rgba(4,20,38,.06);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -.25px;
  list-style: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg,#1689ff,#18c8bd);
  font-size: 22px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: #3e5368;
  line-height: 1.65;
  font-size: 16.5px;
}

.response-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-top: 12px;
  border-radius: 18px;
  background: #eef9f8;
  color: #07525b;
  font-weight: 800;
}

.response-note::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #20d6c5;
  box-shadow: 0 0 14px rgba(32,214,197,.6);
}


/* v8 homepage polish */
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 86px;
  display: block;
  text-align: center;
}

.hero-inner > div:first-child {
  max-width: 930px;
  margin: 0 auto;
}

.kicker {
  justify-content: center;
}

.hero p {
  margin-left: auto;
  margin-right: auto;
}

.actions {
  justify-content: center;
}

.proof {
  justify-content: center;
}

.section-kicker,
.section-title,
.section-text {
  text-align: center;
}

.section-text {
  margin-left: auto;
  margin-right: auto;
}

.cta {
  text-align: center;
  grid-template-columns: 1fr;
  justify-items: center;
}

.cta p {
  margin-left: auto;
  margin-right: auto;
}

.gallery-caption {
  text-align: center;
}

.step {
  text-align: center;
}

.step-num {
  margin-left: auto;
  margin-right: auto;
}

/* refined support FAQ */
.faq-pro {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.faq-pro details {
  border: 1px solid rgba(7,24,39,.10);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(4,20,38,.055);
  overflow: hidden;
}

.faq-pro summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -.2px;
  list-style: none;
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.faq-pro summary::-webkit-details-marker {
  display: none;
}

.faq-pro summary::after {
  content: "Expand";
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .2px;
  color: var(--teal-dark);
  background: #eef9f8;
  border: 1px solid rgba(0,112,124,.14);
  padding: 8px 11px;
  border-radius: 999px;
}

.faq-pro details[open] summary {
  border-bottom: 1px solid rgba(7,24,39,.07);
}

.faq-pro details[open] summary::after {
  content: "Close";
}

.faq-pro details p {
  margin: 0;
  padding: 20px 24px 24px;
  color: #3e5368;
  line-height: 1.7;
  font-size: 16.5px;
}

.support-intro {
  max-width: 760px;
  margin: 0 0 24px;
  color: #3e5368;
  line-height: 1.7;
  font-size: 17px;
}

.support-card.highlight {
  background: linear-gradient(135deg, #f7fbff, #eef9f8);
  border-color: rgba(0,112,124,.12);
}

.site-note {
  width: min(1180px, calc(100% - 40px));
  margin: -36px auto 76px;
  padding: 24px 28px;
  border-radius: 28px;
  background: #f3f8fb;
  border: 1px solid rgba(7,24,39,.08);
  color: #3e5368;
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
}

.site-note strong {
  color: var(--ink);
}

@media (max-width: 620px) {
  .faq-pro summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .faq-pro summary::after {
    justify-self: start;
  }
}


/* v9 refined FAQ arrows */
.faq-pro summary::after {
  content: "⌄";
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  color: var(--teal-dark);
  background: #eef9f8;
  border: 1px solid rgba(0,112,124,.14);
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: transform .18s ease;
}

.faq-pro details[open] summary::after {
  content: "⌄";
  transform: rotate(180deg);
}

/* v9 homepage hero fixes */
.hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 212, 191, 0.25), transparent 34%),
    radial-gradient(circle at 18% 62%, rgba(37, 99, 235, 0.18), transparent 34%),
    radial-gradient(circle at 85% 66%, rgba(32, 214, 197, 0.18), transparent 30%),
    linear-gradient(135deg, #001b36 0%, #003254 45%, #006875 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 88px;
  display: block;
  text-align: center;
}

.hero-inner > div:first-child {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(46px, 6.8vw, 84px);
  line-height: 1;
  letter-spacing: -3px;
}

.hero p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.site-note {
  margin: 0 auto 76px;
}

/* Header background update */
.site-header {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(243,248,251,.94));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,112,124,.12);
  box-shadow: 0 8px 24px rgba(4,20,38,.04);
}

/* Avoid decorative elements visually covering hero text */
.hero::after {
  opacity: .45;
  right: 3%;
  top: 120px;
}

.hero::before {
  opacity: .75;
}


/* v10 refinements */
.site-header {
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(7,24,39,.08);
  box-shadow: 0 6px 20px rgba(4,20,38,.035);
}

.hero-inner {
  padding-top: 124px;
  padding-bottom: 92px;
}

.hero::before {
  opacity: .45;
}

.hero::after {
  display: none;
}

.faq-pro summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--teal-dark);
  border-bottom: 3px solid var(--teal-dark);
  transform: rotate(45deg);
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: block;
  transition: transform .18s ease;
}

.faq-pro details[open] summary::after {
  content: "";
  transform: rotate(225deg);
}

.faq-pro summary {
  padding: 22px 26px;
}

.faq-pro details p {
  padding: 20px 26px 24px;
}

.support-card.highlight {
  margin-bottom: 34px;
}

@media (max-width: 620px) {
  .hero-inner {
    padding-top: 92px;
  }
}


/* v11 spacing and homepage CTA cleanup */
.hero + .hero {
  padding-bottom: 34px !important;
}

.seo-strip {
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-note {
  margin: 36px auto 48px !important;
  padding: 22px 28px;
}

.section.soft {
  padding-top: 58px;
}

.hero + .hero + .site-note + .section.soft {
  padding-top: 58px;
}

.actions {
  justify-content: center;
}

.hero .actions {
  margin-bottom: 0;
}

/* Make the info strip feel connected instead of leaving a large blank white gap */
.site-note + .section.soft {
  margin-top: 0;
}

/* Slightly tighter homepage rhythm */
.section {
  padding-top: 64px;
  padding-bottom: 64px;
}


/* v12 cache + spacing refinements */

/* Give the "Who it helps" section more breathing room from the section above. */
.section.soft + .section.soft {
  padding-top: 96px !important;
}

/* Specifically polish the Who It Helps block, which currently has inline padding-top: 0. */
.section.soft[style*="padding-top: 0"] {
  padding-top: 96px !important;
  padding-bottom: 82px !important;
}

/* Add more space under the App Highlights gallery/cards before the next section starts. */
.gallery {
  margin-bottom: 42px;
}

/* Prevent clipped-looking card shadows at section boundaries. */
.section.soft {
  overflow: visible;
}

/* Make headings feel less cramped. */
.section-kicker + .section-title {
  margin-top: 14px;
}

.section-title + .section-text {
  margin-top: 24px;
}
