:root {
  --bg: #f4f8fc;
  --bg-deep: #e9f0f8;
  --surface: #ffffff;
  --surface-strong: #f9fcff;
  --text: #0f1e31;
  --muted: #4b5d77;
  --line: #d5dfeb;
  --line-strong: #b4c4d8;
  --brand: #0f6d84;
  --brand-deep: #0b4f61;
  --accent: #f59f28;
  --ink: #09111d;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px rgba(11, 41, 66, 0.08);
  --shadow-deep: 0 20px 40px rgba(11, 41, 66, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9fcff 0%, #eff5fb 50%, #f7fbff 100%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p {
  margin: 0;
}

a {
  color: var(--brand-deep);
}

a:hover {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0.75rem;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  font-weight: 700;
  z-index: 100;
}

.skip-link:focus {
  top: 0.75rem;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
}

.orb-a {
  width: 360px;
  height: 360px;
  left: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(12, 109, 132, 0.25) 0%, rgba(12, 109, 132, 0) 70%);
}

.orb-b {
  width: 440px;
  height: 440px;
  right: -180px;
  top: 70px;
  background: radial-gradient(circle, rgba(245, 159, 40, 0.18) 0%, rgba(245, 159, 40, 0) 72%);
}

.orb-c {
  width: 460px;
  height: 460px;
  left: 20%;
  bottom: -250px;
  background: radial-gradient(circle, rgba(67, 107, 148, 0.18) 0%, rgba(67, 107, 148, 0) 72%);
}

.site-wrap {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0.55rem;
  z-index: 20;
  margin-top: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(9, 30, 53, 0.06);
  padding: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.site-header.scrolled {
  box-shadow: 0 10px 26px rgba(9, 30, 53, 0.12);
}

.site-header.compact {
  position: static;
  border-radius: 14px;
  margin-top: 1rem;
}

.site-header.compact .site-nav {
  display: flex;
  width: auto;
  margin-left: auto;
  border: none;
  padding: 0;
  background: transparent;
}

.site-header.compact .site-nav a {
  width: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
}

.brand-mark {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.5rem;
  background: linear-gradient(145deg, #0f6d84 0%, #0b4f61 68%, #092f3b 100%);
  box-shadow: 0 10px 20px rgba(11, 79, 97, 0.36);
}

.brand-text {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.menu-toggle {
  margin-left: auto;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--ink);
  border-radius: 999px;
  min-height: 2.2rem;
  padding: 0 0.86rem;
  font-weight: 700;
}

.site-nav {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  gap: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.4rem;
  background: #ffffff;
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  width: 100%;
  border-radius: 10px;
  padding: 0.58rem 0.65rem;
  text-decoration: none;
  color: #163150;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover {
  background: #edf5fc;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 999px;
  padding: 0 1.1rem;
  font-weight: 800;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.72;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(140deg, #0f6d84 0%, #0b4f61 62%, #093543 100%);
  box-shadow: 0 12px 26px rgba(11, 79, 97, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(11, 79, 97, 0.35);
}

.btn-primary:disabled {
  background: #5d6c7f;
}

.btn-ghost {
  color: var(--brand-deep);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.75);
}

.btn-small {
  min-height: 2.2rem;
  padding: 0 0.85rem;
  font-size: 0.86rem;
}

.btn-nav {
  margin-top: 0.2rem;
}

main {
  padding: 1.2rem 0 2.8rem;
}

.hero {
  display: grid;
  gap: 1.3rem;
}

.hero-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  background:
    radial-gradient(circle at 2% 0%, rgba(15, 109, 132, 0.12), transparent 38%),
    linear-gradient(170deg, #ffffff 0%, #f4f9ff 82%);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  color: var(--brand-deep);
  font-weight: 800;
}

.hero-copy h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  max-width: 14ch;
}

.hero-copy p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 56ch;
}

.hero-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.store-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.store-btn {
  appearance: none;
  flex: 1 1 170px;
  border: 1px solid #213349;
  background: #0f1e31;
  color: #ffffff;
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
  text-align: left;
  text-decoration: none;
  line-height: 1.2;
  font-family: inherit;
}

.store-btn strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.03rem;
}

.store-label {
  display: block;
  font-size: 0.74rem;
  opacity: 0.86;
}

.store-btn:disabled {
  cursor: not-allowed;
  background: #5d6c7f;
  border-color: #5d6c7f;
  opacity: 0.92;
}

.store-status {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  color: #36516f;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  background: linear-gradient(150deg, #e9f4ff 0%, #f8fbff 60%, #eef5fc 100%);
  box-shadow: var(--shadow-soft);
}

.halo {
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 999px;
  right: 14%;
  top: 16%;
  background: radial-gradient(circle, rgba(11, 79, 97, 0.25), rgba(11, 79, 97, 0));
}

.phone {
  position: absolute;
  width: 200px;
  min-height: 360px;
  border: 1px solid rgba(12, 35, 56, 0.22);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}

.phone-primary {
  left: 8%;
  top: 16%;
  transform: rotate(-6deg);
}

.phone-secondary {
  right: 6%;
  top: 8%;
  transform: rotate(6deg);
}

.phone-top {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.65rem;
  border-bottom: 1px solid var(--line);
  background: #f7fbff;
}

.phone-top span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #a7bacf;
}

.phone-body {
  padding: 0.9rem;
}

.screen-tag {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  font-weight: 800;
}

.phone-body h2 {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.3;
}

.status-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.status-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.79rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.4rem 0.5rem;
  background: #fbfdff;
}

.status-list li span {
  color: var(--muted);
}

.status-list li strong {
  color: var(--ink);
}

.deadline-pill {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #7a4300;
  background: #ffe6c5;
  border: 1px solid #f5bf78;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  text-align: center;
}

.mock-lines {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.46rem;
}

.mock-lines span {
  display: block;
  height: 0.62rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #dbe8f5 0%, #eff5fb 100%);
}

.mock-lines span:nth-child(1) {
  width: 92%;
}

.mock-lines span:nth-child(2) {
  width: 100%;
}

.mock-lines span:nth-child(3) {
  width: 84%;
}

.mock-lines span:nth-child(4) {
  width: 72%;
}

.screen-note {
  margin-top: 1.1rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.metrics {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.metrics h2 {
  font-size: 1.1rem;
}

.metrics p {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  margin-top: clamp(2rem, 8vw, 3.6rem);
}

.section-intro {
  max-width: 70ch;
}

.section-intro h2 {
  font-size: clamp(1.45rem, 5vw, 2.45rem);
}

.section-lead {
  margin-top: 0.85rem;
  color: var(--muted);
  max-width: 70ch;
}

.provider-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.provider-card,
.provider-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.provider-card {
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.provider-card h3 {
  font-size: 1.06rem;
}

.provider-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.provider-form {
  margin-top: 0.8rem;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.provider-form label {
  font-size: 0.84rem;
  font-weight: 800;
  color: #1d3553;
}

.provider-form input,
.provider-form select,
.provider-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  font: inherit;
  color: var(--ink);
  background: #fbfdff;
}

.provider-form textarea {
  resize: vertical;
  min-height: 110px;
}

.provider-form .btn {
  margin-top: 0.4rem;
  justify-self: start;
}

.benefit-grid,
.feature-grid,
.trust-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.card,
.feature-card,
.quote-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.card,
.feature-card,
.quote-card {
  padding: 1rem;
}

.card h3,
.feature-card h3,
.quote-card h3 {
  font-size: 1.04rem;
}

.card p,
.feature-card p,
.quote-card p {
  margin-top: 0.42rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.steps {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 0.7rem;
}

.steps li {
  counter-increment: step;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.steps li::before {
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #0f6d84, #0b4f61);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.steps h3 {
  font-size: 1.07rem;
}

.steps p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-premium {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background:
    radial-gradient(circle at 95% 4%, rgba(245, 159, 40, 0.2), transparent 35%),
    linear-gradient(160deg, #ffffff 0%, #f2f8ff 82%);
  box-shadow: var(--shadow-deep);
}

.premium-text p {
  color: var(--muted);
}

.premium-text .btn {
  margin-top: 1rem;
}

.premium-panel {
  margin-top: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 0.95rem;
}

.premium-panel p {
  font-weight: 800;
  color: var(--ink);
}

.premium-panel ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.quote-card p {
  color: #203a5f;
}

.quote-card span {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.cred-points {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.cred-points p {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  color: #254369;
  font-weight: 700;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1rem;
  font-weight: 800;
  color: var(--ink);
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 0.86rem;
  font-size: 1.3rem;
  color: var(--brand);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 1rem 0.95rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.final-cta {
  margin-top: clamp(2.1rem, 8vw, 3.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 4vw, 1.8rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 109, 132, 0.2), transparent 30%),
    linear-gradient(160deg, #ffffff 0%, #eef6ff 100%);
  box-shadow: var(--shadow-deep);
}

.final-cta h2 {
  font-size: clamp(1.5rem, 6vw, 2.6rem);
  max-width: 20ch;
}

.final-cta p {
  margin-top: 0.65rem;
  color: var(--muted);
  max-width: 58ch;
}

.final-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.site-footer {
  margin: 2rem 0 1.4rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer.compact {
  justify-content: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer nav a {
  color: var(--muted);
  text-decoration: none;
}

.inner-page {
  background: linear-gradient(180deg, #f9fcff 0%, #eef5fc 100%);
}

.legal-wrap {
  width: min(900px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding-top: 1.15rem;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: clamp(1.1rem, 4vw, 1.8rem);
  box-shadow: var(--shadow-soft);
}

.legal-card h1 {
  font-size: clamp(1.8rem, 8vw, 3rem);
}

.last-updated {
  margin-top: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
}

.legal-card h2 {
  margin-top: 1.35rem;
  font-size: 1.16rem;
}

.legal-card p,
.legal-card li {
  color: #243d5f;
}

.legal-card ul {
  padding-left: 1.2rem;
}

.fx {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.fx.in-view {
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #95bed4;
  outline-offset: 2px;
}

@media (min-width: 740px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

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

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

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

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

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

  .section-premium {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 1rem;
  }

  .final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .final-actions {
    margin-top: 0;
    justify-content: flex-end;
  }
}

@media (min-width: 980px) {
  .site-header {
    border-radius: 999px;
    padding: 0.5rem 0.7rem 0.5rem 1rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    margin-left: auto;
    width: auto;
    display: flex;
    border: none;
    padding: 0;
    background: transparent;
  }

  .site-nav a {
    width: auto;
    padding: 0.5rem 0.65rem;
  }

  .btn-nav {
    margin-top: 0;
    margin-left: 0.2rem;
  }

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

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

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

@media (max-width: 440px) {
  .hero-visual {
    min-height: 520px;
  }

  .phone {
    width: 176px;
  }
}

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

  .fx {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn {
    transition: none;
  }
}
