:root {
  color-scheme: dark;
  --ft-bg: #020914;
  --ft-bg-deep: #01060d;
  --ft-surface: #071525;
  --ft-surface-2: #0c1a2d;
  --ft-surface-3: #142640;
  --ft-border: rgba(149, 174, 210, 0.28);
  --ft-border-strong: rgba(255, 181, 38, 0.68);
  --ft-text: #f8fbff;
  --ft-muted: #aab9d0;
  --ft-muted-2: #7f8fa7;
  --ft-accent: #ffbc2e;
  --ft-accent-2: #ffad1d;
  --ft-success: #69dca2;
  --ft-danger: #ff6f61;
  --ft-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --ft-radius-sm: 12px;
  --ft-radius: 18px;
  --ft-radius-lg: 28px;
  --ft-container: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: clip;
  color: var(--ft-text);
  background:
    radial-gradient(circle at 55% 8%, rgba(16, 90, 160, 0.16), transparent 26rem),
    radial-gradient(circle at 84% 32%, rgba(17, 62, 105, 0.2), transparent 26rem),
    linear-gradient(180deg, var(--ft-bg) 0%, #061527 58%, var(--ft-bg-deep) 100%);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 197, 71, 0.62);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ft-accent);
  color: var(--ft-bg-deep);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--ft-container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  width: min(100% - 40px, 1220px);
  margin: 10px auto 0;
  border: 1px solid rgba(149, 174, 210, 0.3);
  border-radius: 10px;
  background: rgba(2, 10, 19, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 16px;
  width: min(100% - 42px, 1130px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-header {
  width: auto;
  max-width: min(390px, 42vw);
  max-height: 72px;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.32));
}

.brand-gauge {
  position: relative;
  width: 42px;
  height: 26px;
  flex: 0 0 auto;
}

.brand-gauge::before {
  content: "";
  position: absolute;
  inset: 3px 1px 0;
  border: 5px solid var(--ft-accent);
  border-bottom-color: transparent;
  border-radius: 44px 44px 0 0;
}

.brand-gauge::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 6px;
  width: 21px;
  height: 5px;
  border-radius: 999px;
  background: #ffffff;
  transform: rotate(-28deg);
  transform-origin: right center;
  box-shadow: 0 0 0 2px rgba(2, 10, 19, 0.5);
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 28px;
  font-weight: 900;
}

.brand-copy span {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.8vw, 34px);
  color: var(--ft-text);
  font-size: 15px;
  font-weight: 500;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ft-text);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav .nav-cta {
  display: inline-flex;
  gap: 10px;
  margin-left: clamp(8px, 2.6vw, 34px);
  color: #07111f;
  background: linear-gradient(135deg, var(--ft-accent), var(--ft-accent-2));
  padding: 11px 18px;
  border-radius: 5px;
  box-shadow: 0 10px 26px rgba(255, 177, 35, 0.18);
  font-weight: 760;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ft-border);
  border-radius: 14px;
  color: var(--ft-text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
}

.nav-toggle-bars::before {
  transform: translateY(-7px);
}

.nav-toggle-bars::after {
  transform: translateY(5px);
}

.nav-open .nav-toggle-bars {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-bars::before {
  transform: translateY(0) rotate(90deg);
}

.nav-open .nav-toggle-bars::after {
  opacity: 0;
}

.section,
.final-cta {
  padding: clamp(64px, 9vw, 112px) 0;
}

.value-section {
  border-top: 1px solid rgba(149, 174, 210, 0.23);
  padding: 74px 0 clamp(64px, 9vw, 112px);
  background: rgba(3, 12, 22, 0.52);
}

.section-hero {
  padding: 8px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: clamp(38px, 6vw, 88px);
  min-height: 690px;
  padding-top: clamp(42px, 7vw, 76px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 4.8vw, 60px);
  font-weight: 920;
  line-height: 1.16;
}

h1 span {
  color: var(--ft-accent);
}

h2 {
  font-size: clamp(31px, 4.4vw, 52px);
  font-weight: 900;
}

h3 {
  font-size: 20px;
  font-weight: 850;
}

.hero-lead,
.section-heading p,
.split-panel > div > p,
.final-cta p {
  color: var(--ft-muted);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 560;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 28px;
  line-height: 1.46;
}

.hero-actions,
.benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid var(--ft-border);
  border-radius: 6px;
  padding: 14px 24px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button span {
  margin-right: 8px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--ft-accent), var(--ft-accent-2));
  color: #07111f;
  min-width: 182px;
}

.button-secondary {
  border-color: rgba(255, 188, 46, 0.72);
  background: rgba(255, 255, 255, 0.015);
  color: var(--ft-text);
  min-width: 178px;
}

.benefit-chips {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.benefit-chips li {
  border: 1px solid var(--ft-border);
  border-radius: 6px;
  background: rgba(7, 21, 37, 0.66);
  color: var(--ft-text);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 520;
}

.benefit-chips li span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  color: var(--ft-accent);
  font-weight: 900;
}

.hero-visual {
  position: relative;
}

.phone-shell {
  position: relative;
  width: min(100%, 330px);
  margin: 0 auto;
  border: 2px solid rgba(198, 188, 174, 0.8);
  border-radius: 52px;
  background: linear-gradient(145deg, #1b1b1c, #090b0e 42%, #23201c);
  padding: 10px;
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.55);
  transform: scale(0.96);
  transform-origin: top center;
}

.hero-visual {
  margin-top: -60px;
  height: 680px;
}

.phone-notch {
  position: absolute;
  top: 19px;
  left: 50%;
  z-index: 4;
  width: 98px;
  height: 28px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #020306;
}

.phone-side {
  position: absolute;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(#8b8072, #2e2b28);
}

.phone-side-left {
  left: -4px;
  top: 118px;
  height: 86px;
}

.phone-side-right {
  right: -4px;
  top: 188px;
  height: 70px;
}

.phone-screen {
  aspect-ratio: 577 / 1208;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 42px;
  background:
    radial-gradient(circle at 26% 10%, rgba(24, 79, 139, 0.3), transparent 11rem),
    linear-gradient(180deg, #02101f 0%, #061627 100%);
}

.app-screenshot-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 20px 22px 10px;
  color: rgba(247, 250, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.phone-title-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 4px 22px 12px;
}

.phone-title-row div {
  display: grid;
  gap: 3px;
}

.phone-title-row strong {
  font-size: 17px;
}

.phone-title-row span {
  color: var(--ft-muted);
  font-size: 12px;
}

.phone-bell {
  color: var(--ft-text) !important;
  font-size: 20px !important;
}

.app-hero-card {
  margin: 0 18px 12px;
  border: 1px solid rgba(149, 174, 210, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(11, 33, 58, 0.92), rgba(5, 19, 33, 0.94));
  padding: 13px 16px 11px;
}

.mini-label,
.dashboard-grid span,
.wide-dashboard span,
.records-panel span,
.calculator-results span {
  color: var(--ft-muted);
  font-size: 12px;
  font-weight: 800;
}

.app-hero-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ft-text);
  font-size: 27px;
  line-height: 1;
  font-weight: 940;
}

.app-hero-card small,
.dashboard-grid small {
  color: var(--ft-text);
  font-size: 11px;
  font-weight: 650;
}

.phone-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  margin: 10px 0 7px;
  background: rgba(149, 174, 210, 0.18);
}

.phone-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--ft-accent);
}

.app-hero-card p {
  margin: 8px 0 0;
  color: var(--ft-muted);
  font-size: 14px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 18px 12px;
}

.dashboard-grid article,
.activity-list > div,
.feature-card,
.value-list article,
.steps article,
.callout-list article,
.calculator,
.faq-list details {
  border: 1px solid var(--ft-border);
  background: rgba(255, 255, 255, 0.055);
}

.dashboard-grid article {
  border-radius: 7px;
  padding: 11px 12px;
}

.dashboard-grid strong {
  display: block;
  margin-top: 5px;
  font-size: 25px;
  line-height: 1.16;
}

.dashboard-grid p {
  margin: 2px 0 0;
  color: var(--ft-muted);
  font-size: 11px;
}

.records-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 18px 8px;
}

.records-head strong {
  font-size: 15px;
}

.records-head span {
  color: var(--ft-muted);
  font-size: 11px;
}

.activity-list {
  display: grid;
  gap: 0;
  padding: 0 18px 0;
  border-top: 1px solid rgba(149, 174, 210, 0.18);
}

.activity-list > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border-width: 0 1px 1px;
  border-radius: 0;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.035);
}

.activity-icon {
  color: var(--ft-text);
  font-size: 18px;
}

.activity-list p {
  display: grid;
  gap: 1px;
  margin: 0;
}

.activity-list strong {
  font-size: 15px;
}

.activity-list span:not(.activity-dot) {
  color: var(--ft-muted);
  font-size: 13px;
}

.activity-list b {
  color: var(--ft-muted);
  font-size: 11px;
  font-weight: 500;
  text-align: right;
  line-height: 1.2;
}

.activity-list b small {
  font-size: 10px;
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 6px;
  margin-top: -1px;
  border-top: 1px solid rgba(149, 174, 210, 0.18);
  padding: 6px 16px 8px;
  color: var(--ft-muted);
  font-size: 9px;
  text-align: center;
}

.phone-tabs span {
  display: grid;
  gap: 2px;
  justify-items: center;
}

.phone-tabs b {
  color: var(--ft-accent);
}

.phone-add {
  width: 38px;
  height: 38px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--ft-accent);
  color: #07111f;
  font-size: 29px !important;
  line-height: 34px;
  font-weight: 700;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: start;
}

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

.value-list article {
  display: block;
  min-height: 168px;
  border-radius: 10px;
  padding: 24px 20px;
  background: rgba(4, 14, 25, 0.68);
}

.value-list span,
.steps span,
.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 2px solid var(--ft-accent);
  background: transparent;
  color: var(--ft-accent);
  font-size: 25px;
  font-weight: 900;
}

.value-list h3,
.value-list p {
  grid-column: auto;
}

.value-list h3,
.feature-card h3,
.steps h3 {
  margin-bottom: 8px;
}

.value-list p,
.feature-card p,
.steps p,
.callout-list p,
.detail-row p,
.faq-list p,
.site-footer p {
  color: var(--ft-muted);
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--ft-radius);
  padding: 20px;
  background: rgba(16, 33, 58, 0.66);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--ft-border-strong);
  background: rgba(24, 35, 50, 0.92);
}

.feature-card a,
.text-link,
.faq-list a,
.site-footer a:hover {
  color: var(--ft-accent);
  font-weight: 820;
}

.feature-card a {
  margin-top: auto;
  padding-top: 16px;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(16, 33, 58, 0.34), rgba(4, 11, 19, 0)),
    rgba(4, 11, 19, 0.36);
  border-block: 1px solid rgba(180, 200, 230, 0.08);
}

.migration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: center;
}

.migration-section .section-heading {
  margin-bottom: 0;
}

.migration-section .button {
  margin-top: 22px;
}

.migration-panel {
  border: 1px solid rgba(255, 197, 71, 0.18);
  border-radius: var(--ft-radius);
  padding: clamp(20px, 4vw, 28px);
  background: rgba(16, 33, 58, 0.66);
  box-shadow: var(--ft-shadow-soft);
}

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

.migration-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--ft-text);
  line-height: 1.45;
}

.migration-panel li::before {
  position: absolute;
  left: 0;
  color: var(--ft-accent);
  content: "✓";
  font-weight: 900;
}

.migration-panel p {
  margin: 18px 0 0;
  color: var(--ft-muted);
  font-size: 0.95rem;
}

.preview-grid {
  display: grid;
  gap: 22px;
}

.walkthrough {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.52fr);
  gap: 18px;
  align-items: stretch;
}

.wide-dashboard {
  border: 1px solid rgba(255, 197, 71, 0.18);
  border-radius: var(--ft-radius-lg);
  background:
    linear-gradient(160deg, rgba(23, 58, 115, 0.76), rgba(16, 33, 58, 0.92) 52%, rgba(4, 11, 19, 0.94)),
    var(--ft-surface);
  box-shadow: var(--ft-shadow);
  padding: clamp(18px, 4vw, 30px);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.dashboard-header div {
  display: grid;
  gap: 3px;
}

.dashboard-header strong {
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1;
}

.dashboard-header a,
.coming-soon-pill {
  border: 1px solid var(--ft-border);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--ft-accent);
  font-weight: 850;
  white-space: nowrap;
}

.coming-soon-pill {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.055);
}

.wide-metrics {
  display: grid;
  grid-template-columns: minmax(210px, 1.45fr) repeat(2, minmax(130px, 1fr));
  gap: 12px;
}

.wide-metrics article,
.records-panel div {
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.wide-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--ft-text);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1;
}

.wide-metrics p {
  margin: 7px 0 0;
  color: var(--ft-muted);
}

.primary-metric {
  grid-row: span 2;
}

.primary-metric strong {
  color: var(--ft-accent);
  font-size: clamp(48px, 8vw, 72px);
}

.records-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.records-panel div {
  display: grid;
  gap: 5px;
}

.records-panel strong {
  font-size: 17px;
}

.records-panel em {
  color: var(--ft-accent);
  font-style: normal;
  font-weight: 850;
}

.callout-list {
  display: grid;
  gap: 12px;
}

.callout-list article {
  border-radius: var(--ft-radius);
  padding: 18px;
  background: rgba(16, 33, 58, 0.72);
}

.callout-list span {
  color: var(--ft-accent);
  font-weight: 850;
}

.callout-list p {
  margin: 7px 0 0;
}

.detail-stack {
  display: grid;
  gap: 14px;
}

.launch-status-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.launch-status .section-heading {
  margin-bottom: 0;
}

.launch-status-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 197, 71, 0.22);
  border-radius: var(--ft-radius-lg);
  background: rgba(16, 33, 58, 0.72);
  box-shadow: var(--ft-shadow);
  padding: clamp(20px, 4vw, 28px);
}

.launch-status-panel article {
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 16px;
}

.launch-status-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--ft-accent);
  font-size: 12px;
  font-weight: 880;
  text-transform: uppercase;
}

.launch-status-panel strong {
  display: block;
  line-height: 1.25;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 5vw, 56px);
  align-items: start;
  border-top: 1px solid var(--ft-border);
  padding: clamp(26px, 5vw, 44px) 0;
}

.detail-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--ft-accent);
  font-size: 13px;
  font-weight: 880;
  text-transform: uppercase;
}

.detail-row p {
  margin: 0;
  font-size: 18px;
}

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

.steps article {
  border-radius: var(--ft-radius);
  padding: 20px;
  background: rgba(16, 33, 58, 0.62);
}

.steps span {
  margin-bottom: 18px;
}

.tools-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.calculator {
  border-radius: var(--ft-radius-lg);
  background: rgba(16, 33, 58, 0.76);
  box-shadow: var(--ft-shadow);
  padding: clamp(18px, 4vw, 28px);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.field-grid label {
  display: grid;
  gap: 8px;
}

.field-grid span {
  color: var(--ft-muted);
  font-size: 13px;
  font-weight: 780;
}

.field-grid input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--ft-border);
  border-radius: 14px;
  background: rgba(4, 11, 19, 0.55);
  color: var(--ft-text);
  padding: 12px 13px;
}

.field-grid input:focus {
  border-color: rgba(255, 197, 71, 0.7);
}

.calculator .button {
  width: 100%;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.calculator-results article {
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 14px;
}

.calculator-results strong {
  display: block;
  margin-top: 6px;
  color: var(--ft-accent);
  font-size: 22px;
  line-height: 1.1;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border-radius: var(--ft-radius);
  background: rgba(16, 33, 58, 0.64);
  padding: 0 18px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 840;
}

.faq-list summary:focus-visible {
  border-radius: 8px;
  outline: 3px solid rgba(255, 197, 71, 0.8);
  outline-offset: 5px;
}

.faq-list p {
  margin: 0;
  padding: 0 0 18px;
}

.final-cta {
  padding-top: 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 197, 71, 0.26);
  border-radius: var(--ft-radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 197, 71, 0.17), rgba(23, 58, 115, 0.22)),
    rgba(16, 33, 58, 0.75);
  box-shadow: var(--ft-shadow);
  padding: clamp(24px, 5vw, 40px);
}

.final-cta h2 {
  margin-bottom: 10px;
}

.final-cta p {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--ft-border);
  background: rgba(4, 11, 19, 0.5);
  padding: 44px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(130px, 0.7fr));
  gap: 28px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 900;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ffffff;
  padding: 5px;
}

.site-footer p {
  max-width: 390px;
  margin: 12px 0 0;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer nav h2 {
  margin: 0 0 5px;
  color: var(--ft-text);
  font-size: 14px;
  font-weight: 880;
  text-transform: uppercase;
}

.site-footer nav a,
.footer-bottom {
  color: var(--ft-muted);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(180, 200, 230, 0.1);
}

.footer-bottom a {
  color: var(--ft-accent);
}

.content-page {
  padding: clamp(42px, 8vw, 86px) 0;
}

.content-shell {
  max-width: 860px;
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius-lg);
  background: rgba(16, 33, 58, 0.72);
  box-shadow: var(--ft-shadow);
  padding: clamp(22px, 5vw, 42px);
}

.content-shell h1 {
  font-size: clamp(34px, 6vw, 58px);
}

.content-shell h2 {
  margin-top: 30px;
  font-size: 24px;
}

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

.content-shell a {
  color: var(--ft-accent);
  font-weight: 820;
}

.content-shell ul {
  padding-left: 22px;
}

.content-shell li + li {
  margin-top: 8px;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 30px;
}

.page-card-grid a {
  display: grid;
  gap: 8px;
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.page-card-grid strong {
  color: var(--ft-text);
  font-size: 18px;
}

.page-card-grid span {
  color: var(--ft-muted);
}

@media (max-width: 1060px) {
  .brand-logo-header {
    max-width: min(320px, 38vw);
    max-height: 68px;
  }

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

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    border: 1px solid var(--ft-border);
    border-radius: 22px;
    background: rgba(6, 17, 30, 0.98);
    box-shadow: var(--ft-shadow);
    padding: 10px;
  }

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

  .site-nav a {
    padding: 14px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-grid,
  .split-panel,
  .walkthrough,
  .tools-grid,
  .faq-grid,
  .migration-grid,
  .launch-status-grid,
  .detail-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 28px;
    gap: 28px;
  }

  .hero-visual {
    height: auto;
    margin-top: 0;
  }

  .phone-shell {
    max-width: 390px;
  }

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

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

  .detail-row {
    gap: 14px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .site-header {
    width: min(100% - 24px, 1220px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-logo-header {
    max-width: min(62vw, 240px);
    max-height: 54px;
  }

  .site-nav {
    inset: 78px 12px auto;
  }

  .brand-copy span {
    display: none;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(34px, 10.8vw, 44px);
    line-height: 1.12;
  }

  .hero-lead {
    margin-bottom: 20px;
    font-size: 16px;
  }

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

  .benefit-chips li {
    min-height: 44px;
    padding: 9px 10px;
    font-size: 13px;
    text-align: center;
  }

  .benefit-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .phone-screen {
    min-height: 0;
  }

  .hero-visual {
    height: auto;
    margin-top: 24px;
  }

  .phone-shell {
    width: min(100%, 328px);
    transform: none;
  }

  .feature-grid,
  .steps,
  .field-grid,
  .calculator-results,
  .records-panel,
  .footer-grid,
  .page-card-grid,
  .wide-metrics {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .value-list article {
    grid-template-columns: 1fr;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .value-list h3,
  .value-list p {
    grid-column: auto;
  }

  .dashboard-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    display: grid;
  }

  .final-cta-inner .button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .phone-shell {
    width: min(100%, 316px);
    padding: 8px;
    border-radius: 42px;
  }

  .phone-screen {
    min-height: 0;
    border-radius: 34px;
  }

  .dashboard-grid {
    gap: 7px;
    padding-inline: 14px;
  }

  .dashboard-grid article {
    padding: 9px;
  }

  .dashboard-grid strong {
    font-size: 20px;
  }

  .activity-list > div {
    gap: 8px;
    padding: 7px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
