*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0d151b;
  --muted: #526572;
  --soft: #758691;
  --line: #dfe7e5;
  --paper: #ffffff;
  --paper-soft: #f6faf8;
  --wash: #eef8f3;
  --wash-strong: #ddf2e9;
  --brand: #085041;
  --brand-dark: #06392f;
  --brand-mid: #2f856d;
  --brand-light: #cbeadd;
  --navy: #10233b;
  --amber: #b86b18;
  --amber-soft: #fff3df;
  --violet: #4d3c91;
  --violet-soft: #f0edff;
  --shadow: 0 22px 70px rgba(8, 80, 65, 0.13);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --max: 1160px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 231, 229, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: var(--max);
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(8, 80, 65, 0.2);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.nav-actions .signin {
  color: var(--muted);
}

.nav-actions .signin:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(8, 80, 65, 0.18);
}

.button-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 20px 44px rgba(8, 80, 65, 0.22);
}

.button-secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #cbd8d4;
  box-shadow: 0 14px 34px rgba(16, 35, 59, 0.08);
}

.button-disabled {
  background: #f2f5f3;
  border-color: var(--line);
  color: var(--soft);
  cursor: default;
  box-shadow: none;
}

.button-disabled:hover {
  transform: none;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(203, 234, 221, 0.75), transparent 32%),
    linear-gradient(180deg, #f2faf6 0%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -34% -20%;
  height: 280px;
  background: #ffffff;
  border-radius: 50% 50% 0 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 24px 90px;
  text-align: center;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 26px;
  margin-inline: auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(203, 234, 221, 0.9);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-mid);
  box-shadow: 0 0 0 4px rgba(47, 133, 109, 0.15);
}

h1 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.hero-copy {
  max-width: 690px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.hero-copy strong {
  color: var(--ink);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

.hero-note {
  max-width: 660px;
  margin: 22px auto 0;
  color: var(--soft);
  font-size: 13px;
}

.suite-card {
  position: relative;
  max-width: 900px;
  min-height: 0;
  margin: 58px auto 0;
  text-align: left;
}

.suite-card::before {
  content: "";
  position: absolute;
  inset: 46px 38px -18px 38px;
  border-radius: 42px;
  background: var(--brand-light);
  transform: rotate(-1.5deg);
}

.suite-shell {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background: #ffffff;
  border: 1px solid rgba(8, 80, 65, 0.12);
  box-shadow: var(--shadow);
}

.suite-top {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.suite-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
}

.suite-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--wash);
  color: var(--brand);
}

.suite-pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: #eaf6ef;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.suite-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  padding: 26px;
  background:
    linear-gradient(90deg, rgba(8, 80, 65, 0.045), transparent 42%),
    #fbfdfc;
}

.suite-preview {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.suite-preview h2 {
  max-width: 310px;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.doc-lines {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.doc-line {
  height: 9px;
  border-radius: 999px;
  background: #dce7e3;
}

.doc-line:nth-child(1) { width: 92%; }
.doc-line:nth-child(2) { width: 76%; }
.doc-line:nth-child(3) { width: 84%; }

.suite-rail {
  display: grid;
  gap: 12px;
}

.rail-item {
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.rail-label {
  display: block;
  margin-bottom: 5px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rail-value {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 94px 24px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}

.section-label {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.section-lede {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.product-switcher {
  position: sticky;
  top: calc(var(--header-height) + 14px);
  z-index: 12;
  max-width: 760px;
  margin: 0 auto 38px;
  padding: 7px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid rgba(8, 80, 65, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(16, 35, 59, 0.08);
  backdrop-filter: blur(18px);
}

.product-tab {
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-tab:hover {
  color: var(--ink);
  background: var(--wash);
}

.product-tab[aria-selected="true"] {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(8, 80, 65, 0.2);
}

.product-tab:focus-visible,
.button:focus-visible,
.nav a:focus-visible,
.footer-col a:focus-visible {
  outline: 3px solid rgba(47, 133, 109, 0.28);
  outline-offset: 3px;
}

.coming-soon-chip {
  display: inline-flex;
  margin-left: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.product-tab:not([aria-selected="true"]) .coming-soon-chip {
  background: var(--amber-soft);
  color: var(--amber);
}

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

.product-panel {
  animation: panelIn 220ms ease;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-note {
  max-width: 720px;
  margin: 0 auto 38px;
  color: var(--soft);
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 58px;
  align-items: center;
}

.quote-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--paper-soft);
  border: 1px solid var(--line);
}

.quote-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.quote-card strong {
  color: var(--ink);
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
}

.check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--brand);
}

.panel-block {
  padding-top: 74px;
}

.panel-block:first-child {
  padding-top: 0;
}

.wash-panel {
  margin: 74px -24px 0;
  padding: 74px 24px;
  background: linear-gradient(180deg, var(--paper-soft), #ffffff);
  border-block: 1px solid rgba(223, 231, 229, 0.8);
}

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

.info-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(16, 35, 59, 0.045);
}

.info-card {
  padding: 26px;
}

.info-card h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.info-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.info-card .card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--wash);
  color: var(--brand);
  font-weight: 800;
}

.coming-card {
  background: linear-gradient(180deg, #ffffff, #fbf7ef);
}

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

.process-card {
  position: relative;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.process-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 800;
}

.process-card h3 {
  margin-bottom: 9px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.process-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.flow-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.flow-card.alt {
  background: var(--navy);
}

.flow-card.pending {
  background: linear-gradient(135deg, var(--violet), #6e5bc2);
}

.flow-card::before,
.flow-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  filter: blur(1px);
}

.flow-card::before {
  width: 250px;
  height: 250px;
  right: -76px;
  top: -74px;
}

.flow-card::after {
  width: 190px;
  height: 190px;
  left: -74px;
  bottom: -82px;
}

.flow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.mini-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.mini-step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand);
  font-weight: 800;
}

.flow-card.alt .mini-step-number {
  color: var(--navy);
}

.flow-card.pending .mini-step-number {
  color: var(--violet);
}

.mini-step h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.mini-step p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  border: 2px solid var(--brand);
  box-shadow: 0 24px 64px rgba(8, 80, 65, 0.12);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-name {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.price {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--ink);
}

.price strong {
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.price span {
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.plan-copy {
  min-height: 72px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.feature-list li {
  display: flex;
  gap: 9px;
  list-style: none;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 820px;
  margin-top: 18px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.65;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 40px;
  align-items: start;
  padding: 44px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(203, 234, 221, 0.7), transparent 34%),
    var(--paper-soft);
  border: 1px solid var(--line);
}

.about-band p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.74;
}

.profile-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.profile-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.profile-card p {
  font-size: 14px;
  color: var(--muted);
}

.cta {
  background: var(--brand);
  color: #ffffff;
}

.cta .section {
  padding-block: 76px;
  text-align: center;
}

.cta h2 {
  max-width: 820px;
  margin: 0 auto;
  color: #ffffff;
}

.cta p {
  max-width: 660px;
  margin: 18px auto 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.7;
}

.cta .button {
  background: #ffffff;
  color: var(--brand-dark);
}

.site-footer {
  background: #071d17;
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 50px 24px 34px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 38px;
}

.footer-brand {
  color: #ffffff;
}

.footer-copy {
  max-width: 350px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
}

.footer-col h3 {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

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

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 30px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 13px;
}

@media (max-width: 980px) {
  .suite-body,
  .split,
  .about-band {
    grid-template-columns: 1fr;
  }

  .suite-card {
    max-width: 760px;
  }

  .cards,
  .price-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .nav {
    height: auto;
    padding-block: 16px;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .signin {
    display: none;
  }

  .button {
    min-height: 42px;
    padding-inline: 16px;
  }

  .hero-inner {
    padding-top: 62px;
    padding-bottom: 70px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-switcher {
    position: static;
    grid-template-columns: 1fr;
    border-radius: 24px;
    margin-bottom: 26px;
  }

  .product-tab {
    border-radius: 18px;
  }

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

  .section {
    padding-block: 68px;
  }

  .panel-block,
  .wash-panel {
    padding-top: 58px;
  }

  .wash-panel {
    margin-top: 58px;
    padding-bottom: 58px;
  }

  .about-band {
    padding: 28px;
  }
}
