:root {
  --ink: #1a2340;
  --ink-deep: #101728;
  --ink-mid: #33456f;
  --aqua: #9cf2e1;
  --aqua-soft: #e6fcf8;
  --coral: #ff8666;
  --coral-soft: #ffe2d8;
  --paper: #fbfaf7;
  --paper-strong: #ffffff;
  --sand: #fff4ec;
  --text: #27324a;
  --muted: #66728b;
  --border: rgba(26, 35, 64, 0.12);
  --shadow-lg: 0 24px 70px rgba(12, 18, 33, 0.16);
  --shadow-md: 0 18px 38px rgba(12, 18, 33, 0.08);
  --radius-xl: 2rem;
  --radius-lg: 1.4rem;
  --radius-md: 1rem;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 134, 102, 0.18), transparent 32%),
    radial-gradient(circle at right 12%, rgba(156, 242, 225, 0.18), transparent 28%),
    linear-gradient(180deg, #fffdfa 0%, #f5f7fb 100%);
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  line-height: 1.65;
}

main {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

section[id],
article[id],
div[id] {
  scroll-margin-top: 6.75rem;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.accordion-button:focus {
  border-color: rgba(255, 134, 102, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 134, 102, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(16px);
  background: rgba(16, 23, 40, 0.88);
  border-bottom: 1px solid rgba(156, 242, 225, 0.12);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: inline-flex;
  flex: none;
}

.brand-mark-image {
  width: 2.95rem;
  height: 2.95rem;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.25));
}

.brand-lockup {
  display: grid;
  line-height: 1;
}

.brand-name {
  color: #f5fbff;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-tag {
  margin-top: 0.28rem;
  color: rgba(220, 227, 239, 0.74);
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(220, 227, 239, 0.78);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.7rem 0.95rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffffff;
}

.btn-brand,
.btn-outline-brand,
.btn-outline-footer {
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-brand {
  background: var(--coral);
  border: 1px solid var(--coral);
  color: var(--ink-deep);
  box-shadow: 0 10px 24px rgba(255, 134, 102, 0.24);
}

.btn-brand:hover {
  background: #ff9a7d;
  border-color: #ff9a7d;
  color: var(--ink-deep);
}

.btn-outline-brand {
  border: 1px solid rgba(26, 35, 64, 0.16);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.btn-outline-brand:hover {
  border-color: rgba(26, 35, 64, 0.28);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.btn-outline-footer {
  border: 1px solid rgba(156, 242, 225, 0.26);
  background: transparent;
  color: #f3f9fd;
}

.btn-outline-footer:hover {
  border-color: rgba(156, 242, 225, 0.46);
  background: rgba(156, 242, 225, 0.08);
  color: #ffffff;
}

.hero-section,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink-deep) 0%, var(--ink) 46%, var(--ink-mid) 100%);
}

.hero-section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -8rem -8rem auto;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 134, 102, 0.28), rgba(255, 134, 102, 0));
  filter: blur(6px);
}

.hero-section::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(156, 242, 225, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-section .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-section {
  padding: 6rem 0 5rem;
}

.page-hero {
  padding: 5rem 0 4rem;
}

.section-pad {
  padding: 5rem 0;
}

.section-pad-sm {
  padding: 3.5rem 0;
}

.section-band {
  background: linear-gradient(180deg, rgba(230, 252, 248, 0.72), rgba(255, 255, 255, 0.92));
}

.section-band-warm {
  background: linear-gradient(180deg, rgba(255, 226, 216, 0.74), rgba(255, 255, 255, 0.96));
}

.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(156, 242, 225, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-chip::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--coral);
}

.section-chip-dark {
  background: rgba(26, 35, 64, 0.08);
  color: var(--ink);
}

.section-title {
  margin: 1rem 0 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-title-light {
  color: #ffffff;
}

.section-lead {
  max-width: 46rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-lead-light {
  color: rgba(243, 249, 253, 0.82);
}

.hero-display {
  margin: 1.25rem 0 1rem;
  color: #ffffff;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy {
  color: rgba(243, 249, 253, 0.84);
  font-size: 1.12rem;
  max-width: 39rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-note {
  margin-top: 1rem;
  color: rgba(220, 227, 239, 0.72);
  font-size: 0.95rem;
  max-width: 33rem;
}

.hero-stage {
  position: relative;
}

.glass-card,
.feature-card,
.quote-card,
.number-card,
.summary-card,
.policy-card,
.form-shell,
.info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border-color: rgba(156, 242, 225, 0.16);
  padding: 1.4rem;
}

.logo-card {
  padding: 1.5rem;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  width: 100%;
  padding: 1.3rem;
  border-radius: 1.35rem;
  background: linear-gradient(145deg, rgba(19, 27, 46, 0.94), rgba(41, 56, 88, 0.72));
  border: 1px solid rgba(156, 242, 225, 0.16);
  box-shadow: 0 22px 48px rgba(12, 18, 33, 0.35);
}

.hero-logo-mark {
  width: clamp(4.4rem, 14vw, 5.4rem);
  flex: none;
}

.hero-logo-copy {
  display: grid;
  gap: 0.32rem;
}

.hero-logo-name {
  color: #ffffff;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero-logo-tag {
  color: rgba(220, 227, 239, 0.74);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stack-card {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.stack-card h3,
.feature-card h3,
.info-card h3,
.summary-card h3 {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(16, 23, 40, 0.96), rgba(51, 69, 111, 0.96));
  color: #ffffff;
  font-size: 1.15rem;
  box-shadow: 0 14px 24px rgba(16, 23, 40, 0.16);
}

.feature-icon.gold {
  background: linear-gradient(180deg, rgba(255, 134, 102, 0.98), rgba(241, 111, 94, 0.98));
  color: var(--ink-deep);
}

.feature-icon.soft {
  background: linear-gradient(180deg, rgba(156, 242, 225, 0.96), rgba(127, 230, 211, 0.96));
  color: var(--ink-deep);
}

.signal-list,
.plain-list,
.disclosure-list,
.icon-list,
.policy-card ul,
.policy-card ol {
  margin: 0;
  padding-left: 1.2rem;
}

.signal-list li,
.plain-list li,
.disclosure-list li,
.icon-list li,
.policy-card li {
  margin-bottom: 0.6rem;
}

.icon-list {
  list-style: none;
  padding-left: 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--muted);
}

.icon-list li i {
  margin-top: 0.2rem;
  color: var(--ink);
}

.metric-strip {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(156, 242, 225, 0.14);
}

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

.metric-grid span {
  display: block;
  color: rgba(220, 227, 239, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
  color: #ffffff;
}

.surface-card,
.feature-card,
.quote-card,
.number-card,
.summary-card,
.policy-card,
.form-shell,
.info-card {
  background: rgba(255, 255, 255, 0.92);
}

.feature-card,
.number-card,
.summary-card,
.info-card {
  height: 100%;
  padding: 1.5rem;
}

.card-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(26, 35, 64, 0.08);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-copy,
.feature-card p,
.info-card p,
.number-card p,
.summary-card p,
.policy-card p {
  color: var(--muted);
}

.quote-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 226, 216, 0.92), rgba(255, 255, 255, 0.96));
}

.soft-quote {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.3;
}

.quote-caption {
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.tone-pills,
.cadence-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tone-pill,
.cadence-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(26, 35, 64, 0.08);
  color: var(--ink);
  font-weight: 600;
}

.tone-pill.alt,
.cadence-pill.alt {
  background: rgba(255, 134, 102, 0.16);
}

.number-card {
  position: relative;
  overflow: hidden;
}

.number-card .step-number {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(16, 23, 40, 0.96), rgba(51, 69, 111, 0.96));
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
}

.number-card h3 {
  margin: 1rem 0 0.6rem;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
}

.detail-grid > * {
  height: 100%;
}

.accent-panel {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(16, 23, 40, 0.96), rgba(45, 61, 98, 0.96));
  color: #f4f9fc;
  box-shadow: var(--shadow-lg);
}

.accent-panel h3 {
  color: #ffffff;
}

.accent-panel p,
.accent-panel li {
  color: rgba(220, 227, 239, 0.84);
}

.faq-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.faq-accordion .accordion-item + .accordion-item {
  margin-top: 1rem;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(156, 242, 225, 0.24);
  color: var(--ink);
}

.faq-accordion .accordion-body {
  color: var(--muted);
}

.page-kicker {
  max-width: 44rem;
}

.highlight-grid .feature-card:nth-child(2n) {
  background: linear-gradient(180deg, rgba(255, 226, 216, 0.78), rgba(255, 255, 255, 0.96));
}

.form-shell {
  padding: 1.8rem;
}

.form-shell label,
.info-card label {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.form-control,
.form-select {
  border-radius: 1rem;
  border: 1px solid rgba(26, 35, 64, 0.16);
  padding: 0.85rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
}

.form-text,
.form-note,
.text-muted-brand {
  color: var(--muted) !important;
}

.form-check {
  padding: 1rem 1rem 1rem 2.4rem;
  border-radius: 1rem;
  background: rgba(230, 252, 248, 0.72);
}

.consent-check {
  margin-top: 0.25rem;
}

.form-check-input {
  margin-top: 0.25rem;
}

.form-check-input:checked {
  background-color: var(--ink);
  border-color: var(--ink);
}

.validation-summary-valid {
  display: none;
}

.field-validation-error,
.validation-summary-errors {
  color: #a12a2a;
  font-weight: 600;
}

.hidden-panel[hidden] {
  display: none !important;
}

.bot-filter {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.success-panel {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(226, 248, 233, 0.95);
  border: 1px solid rgba(37, 113, 67, 0.16);
  color: #185e39;
}

.disclosure-card {
  padding: 1.35rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(26, 35, 64, 0.12);
  background: linear-gradient(180deg, rgba(255, 226, 216, 0.76), rgba(255, 255, 255, 0.96));
}

.policy-shell {
  padding: 4rem 0 5rem;
}

.policy-nav {
  position: sticky;
  top: 6.2rem;
}

.policy-nav .list-group {
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.policy-nav .list-group-item {
  border-color: rgba(26, 35, 64, 0.08);
  color: var(--ink);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.96);
}

.policy-nav .list-group-item:hover {
  background: rgba(230, 252, 248, 0.78);
}

.policy-card {
  padding: 1.8rem;
  margin-bottom: 1.2rem;
}

.policy-card h2 {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.policy-meta {
  margin-top: 1rem;
  color: var(--muted);
}

.callout-card {
  padding: 1.4rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 226, 216, 0.84), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(255, 134, 102, 0.24);
}

.site-footer {
  padding: 0 0 2.5rem;
  background: linear-gradient(180deg, #0d1321 0%, #101728 100%);
  color: #f2f8fc;
}

.footer-panel {
  margin-top: 2rem;
  padding: 2.2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 134, 102, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(22, 31, 54, 0.96), rgba(12, 18, 33, 0.98));
  border: 1px solid rgba(156, 242, 225, 0.12);
  box-shadow: var(--shadow-lg);
}

.footer-chip {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.footer-title {
  margin-top: 1rem;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.08;
}

.footer-copy {
  max-width: 30rem;
  color: rgba(220, 227, 239, 0.78);
}

.footer-heading {
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links li + li {
  margin-top: 0.65rem;
}

.footer-links a,
.footer-contact li {
  color: rgba(220, 227, 239, 0.78);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-safety {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(156, 242, 225, 0.1);
  color: rgba(220, 227, 239, 0.78);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.5rem;
  color: rgba(220, 227, 239, 0.56);
  font-size: 0.9rem;
}

.reveal {
  animation: rise-in 0.75s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    padding: 1rem 0 0.4rem;
  }

  .hero-section,
  .page-hero {
    padding-top: 4.5rem;
  }

  .policy-nav {
    position: static;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .hero-display {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .section-title {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-brand,
  .btn-outline-brand,
  .btn-outline-footer {
    width: 100%;
    justify-content: center;
  }

  .footer-panel,
  .form-shell,
  .policy-card,
  .quote-card {
    padding: 1.4rem;
  }
}
