:root {
  color-scheme: light;
  --ink: #242438;
  --muted: #4c5267;
  --faint: #62697c;
  --accent: #5537b3;
  --accent-alt: #0d7480;
  --focus: #5137b8;
  --glass: rgba(255, 255, 255, .59);
  --glass-strong: rgba(255, 255, 255, .87);
  --glass-edge: rgba(255, 255, 255, .88);
  --line: rgba(62, 62, 104, .16);
  --soft-chip: rgba(255, 255, 255, .59);
  --shadow: 0 26px 70px rgba(75, 68, 112, .18);
  --hero-gradient: linear-gradient(108deg, #5d42bd 5%, #7156cf 47%, #187c8c 100%);
  --button-gradient: linear-gradient(110deg, #5437b6, #8247c2 63%, #a640a7);
  --closing-gradient: radial-gradient(circle at 80% 130%, rgba(63, 219, 231, .52), transparent 35%), radial-gradient(circle at 10% -35%, rgba(239, 132, 209, .34), transparent 50%), linear-gradient(120deg, #303653, #363257);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --ink: #f6f7ff; --muted: #c6cde0; --faint: #abb5cf; --accent: #aee9fb; --accent-alt: #8cdde6; --focus: #7de7f0;
    --glass: rgba(22, 29, 49, .75); --glass-strong: rgba(18, 26, 46, .93); --glass-edge: rgba(204, 220, 255, .27);
    --line: rgba(223, 232, 255, .16); --soft-chip: rgba(33, 43, 68, .76);
    --shadow: 0 28px 82px rgba(0, 0, 0, .36);
    --hero-gradient: linear-gradient(108deg, #6ce6ee 4%, #9ea5ff 49%, #e185e2 100%);
    --button-gradient: linear-gradient(110deg, #3c64d2, #7451c8 62%, #a448bb);
    --closing-gradient: radial-gradient(circle at 80% 130%, rgba(48, 218, 231, .40), transparent 39%), radial-gradient(circle at 10% -35%, rgba(218, 83, 196, .30), transparent 52%), linear-gradient(120deg, #141d34, #292342);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f6f7ff; --muted: #c6cde0; --faint: #abb5cf; --accent: #aee9fb; --accent-alt: #8cdde6; --focus: #7de7f0;
  --glass: rgba(22, 29, 49, .75); --glass-strong: rgba(18, 26, 46, .93); --glass-edge: rgba(204, 220, 255, .27);
  --line: rgba(223, 232, 255, .16); --soft-chip: rgba(33, 43, 68, .76);
  --shadow: 0 28px 82px rgba(0, 0, 0, .36);
  --hero-gradient: linear-gradient(108deg, #6ce6ee 4%, #9ea5ff 49%, #e185e2 100%);
  --button-gradient: linear-gradient(110deg, #3c64d2, #7451c8 62%, #a448bb);
  --closing-gradient: radial-gradient(circle at 80% 130%, rgba(48, 218, 231, .40), transparent 39%), radial-gradient(circle at 10% -35%, rgba(218, 83, 196, .30), transparent 52%), linear-gradient(120deg, #141d34, #292342);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh; margin: 0; color: var(--ink);
  background: radial-gradient(ellipse 700px 570px at 0% 3%, rgba(255, 221, 211, .76), transparent 72%),
    radial-gradient(ellipse 760px 650px at 90% 11%, rgba(144, 171, 216, .70), transparent 70%),
    radial-gradient(ellipse 800px 700px at 88% 57%, rgba(198, 175, 230, .45), transparent 73%),
    linear-gradient(140deg, #f3e8e9, #eaedf6 60%, #eee5ee);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
:root[data-theme="dark"] body { background: radial-gradient(ellipse 800px 650px at 0% 4%, rgba(32, 104, 142, .40), transparent 72%), radial-gradient(ellipse 720px 620px at 92% 12%, rgba(74, 47, 121, .28), transparent 70%), radial-gradient(ellipse 800px 700px at 93% 60%, rgba(72, 30, 102, .22), transparent 75%), linear-gradient(140deg, #111b2e, #0f1423 56%, #171325); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) body { background: radial-gradient(ellipse 800px 650px at 0% 4%, rgba(32, 104, 142, .40), transparent 72%), radial-gradient(ellipse 720px 620px at 92% 12%, rgba(74, 47, 121, .28), transparent 70%), radial-gradient(ellipse 800px 700px at 93% 60%, rgba(72, 30, 102, .22), transparent 75%), linear-gradient(140deg, #111b2e, #0f1423 56%, #171325); }
}
button, input { font: inherit; }
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: absolute; z-index: 10; left: 20px; top: -100px; padding: 12px 18px; background: #242438; color: #fff; border-radius: 12px; }
.skip-link:focus { top: 12px; }

.announcement { min-height: 37px; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 7px 20px; border-bottom: 1px solid var(--glass-edge); background: var(--glass); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); text-align: center; font-size: 11px; font-weight: 750; letter-spacing: .03em; }
.announcement-dot { width: 7px; height: 7px; flex: none; border-radius: 50%; background: #20c6cf; box-shadow: 0 0 0 4px rgba(46, 210, 220, .16), 0 0 15px #31dfea; }
.site-header { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 22px; padding: 12px 21px; border: 1px solid var(--glass-edge); border-radius: 22px; background: var(--glass); box-shadow: 0 15px 40px rgba(55, 57, 97, .10), inset 0 1px rgba(255,255,255,.34); backdrop-filter: blur(24px) saturate(140%); -webkit-backdrop-filter: blur(24px) saturate(140%); }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 24px; font-weight: 820; letter-spacing: -.055em; text-decoration: none; white-space: nowrap; }
.brand span { background: var(--hero-gradient); background-clip: text; -webkit-background-clip: text; color: transparent; }
.brand-mark { width: 37px; height: 37px; color: var(--accent); filter: drop-shadow(0 0 7px rgba(86,209,234,.45)); }
.header-actions { display: flex; align-items: center; gap: 24px; }
.site-header nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); }
.site-header nav a { color: var(--ink); font-size: 13px; font-weight: 700; text-decoration: none; }
.site-header nav a:hover, .text-link:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 5px; }
.theme-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-width: 80px; min-height: 39px; padding: 8px 13px; border: 1px solid var(--glass-edge); border-radius: 100px; background: var(--soft-chip); box-shadow: inset 0 1px rgba(255,255,255,.24), 0 7px 18px rgba(51,43,91,.10); color: var(--ink); font-size: 12px; font-weight: 750; cursor: pointer; }
.theme-toggle:hover { border-color: #a891ee; }
.theme-toggle-icon { color: var(--accent); font-size: 16px; line-height: 1; }

.hero { position: relative; min-height: 680px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr); align-items: center; gap: clamp(38px, 6vw, 92px); padding-block: 66px 92px; }
.hero::before { content: ""; position: absolute; z-index: 0; width: 390px; height: 390px; right: 4%; top: 7%; border-radius: 50%; background: conic-gradient(from 25deg, rgba(70,222,235,.41), rgba(120,86,231,.29), rgba(241,109,205,.30), rgba(70,222,235,.41)); filter: blur(90px); opacity: .65; pointer-events: none; }
.hero > * { position: relative; z-index: 1; }
.hero-copy { padding-bottom: 24px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 20px; color: var(--accent); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-line { display: inline-block; width: 27px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, #47deea, #a968ee); box-shadow: 0 0 10px rgba(78, 222, 231, .65); }
.hero h1 { max-width: 630px; margin: 0; font-size: clamp(46px, 5.6vw, 76px); line-height: 1.045; letter-spacing: -.066em; font-weight: 830; }
.hero h1 em { display: block; background: var(--hero-gradient); background-clip: text; -webkit-background-clip: text; color: transparent; font-style: normal; }
.hero-lede { max-width: 550px; margin: 28px 0 0; color: var(--muted); font-size: clamp(16px, 1.7vw, 19px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 30px; min-height: 53px; padding: 13px 22px; border: 1px solid rgba(255,255,255,.56); border-radius: 100px; font-size: 14px; font-weight: 760; text-decoration: none; }
.button-primary { background: var(--button-gradient); color: #fff; box-shadow: 0 12px 23px rgba(117,76,214,.25), 0 17px 34px rgba(221,92,195,.23), inset 0 1px rgba(255,255,255,.32); }
.button-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.button span { font-size: 19px; font-weight: 400; }
.text-link { color: var(--accent); font-size: 14px; font-weight: 760; text-decoration: none; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 31px; color: var(--muted); font-size: 13px; }
.check-icon { display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid rgba(91,222,224,.48); border-radius: 50%; background: var(--soft-chip); color: var(--accent-alt); font-size: 12px; font-weight: 800; box-shadow: 0 0 14px rgba(59,221,231,.27); }

.preview-shell { position: relative; min-width: 0; padding: 17px; border: 1px solid var(--glass-edge); border-radius: 27px; background: var(--glass); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.44), 0 0 28px rgba(83,213,230,.18); backdrop-filter: blur(30px) saturate(150%); -webkit-backdrop-filter: blur(30px) saturate(150%); }
.preview-shell::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 97% 13%, rgba(245,112,219,.17), transparent 27%), radial-gradient(circle at 10% 92%, rgba(60,228,234,.13), transparent 35%); pointer-events: none; }
.preview-topline { position: relative; display: flex; justify-content: space-between; padding: 1px 6px 13px; color: var(--faint); font-size: 10px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.preview-card { position: relative; padding: 24px 26px 18px; border: 1px solid transparent; border-radius: 19px; background: linear-gradient(var(--glass-strong), var(--glass-strong)) padding-box, linear-gradient(130deg, rgba(100,224,240,.75), rgba(179,152,255,.54) 56%, rgba(244,140,214,.58)) border-box; box-shadow: 0 18px 40px rgba(58,45,103,.11), inset 0 1px rgba(255,255,255,.36); }
.preview-header { display: flex; justify-content: space-between; align-items: flex-start; }
.small-label { margin: 0 0 5px; color: var(--faint); font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.preview-header h2 { margin: 0; font-size: 20px; letter-spacing: -.04em; }
.preview-calendar { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid var(--glass-edge); border-radius: 13px; background: var(--soft-chip); box-shadow: 0 4px 16px rgba(81,111,196,.12); }
.preview-calendar svg { width: 21px; height: 21px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.preview-summary { display: flex; align-items: end; justify-content: space-between; gap: 8px; margin-top: 27px; }
.preview-summary > div { display: flex; flex-direction: column; gap: 4px; }
.summary-label { color: var(--muted); font-size: 12px; font-weight: 650; }
.preview-summary strong { font-size: 35px; line-height: 1.2; letter-spacing: -.055em; }
.summary-count { padding-bottom: 5px; color: var(--accent); font-size: 11px; font-weight: 780; white-space: nowrap; }
.preview-progress { height: 7px; margin-top: 18px; border-radius: 100px; background: var(--line); overflow: hidden; }
.preview-progress span { display: block; width: 60%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #3bdce6, #7f6ef1 62%, #e577d5); box-shadow: 0 0 12px rgba(91,228,235,.7); }
.preview-section-label { margin: 28px 0 4px; color: var(--faint); font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.preview-upcoming { margin-top: 20px; }
.preview-row { display: flex; align-items: center; gap: 12px; min-height: 58px; border-bottom: 1px solid var(--line); }
.preview-row:last-child { border-bottom: 0; }
.row-icon { display: grid; place-items: center; width: 32px; height: 32px; flex: none; border: 1px solid var(--glass-edge); border-radius: 11px; background: var(--soft-chip); font-size: 20px; font-weight: 700; }
.house { color: #6550c8; }.domain { color: #0d7987; }.savings { color: #a251ba; }.utility { color: #916028; }.subscription { color: #4b73ca; }
.row-main { min-width: 0; display: flex; flex: 1; flex-direction: column; gap: 3px; }
.row-main strong { font-size: 12px; font-weight: 780; }
.row-main small { color: var(--faint); font-size: 10px; }
.row-amount { font-size: 12px; font-weight: 790; }
.preview-caption { position: relative; margin: 12px 8px 1px; color: var(--muted); font-size: 10px; line-height: 1.5; text-align: center; }
:root[data-theme="dark"] .row-icon { color: #b6dff4; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .row-icon { color: #b6dff4; } }

.band { border-block: 1px solid var(--glass-edge); background: var(--glass); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.band-inner { min-height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.band p { margin: 0; font-size: 13px; font-weight: 760; }
.category-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.category-list span { padding: 9px 14px; border: 1px solid var(--glass-edge); border-radius: 100px; background: var(--soft-chip); color: var(--ink); font-size: 11px; font-weight: 720; box-shadow: inset 0 1px rgba(255,255,255,.16); }

.section { padding-block: 112px; }
.section-intro { max-width: 670px; }
.section-intro h2, .privacy-copy h2, .closing h2 { margin: 0; font-size: clamp(34px, 4.1vw, 49px); line-height: 1.14; letter-spacing: -.055em; }
.section-intro > p:last-child { max-width: 540px; margin: 19px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.step, .feature-card { border: 1px solid var(--glass-edge); border-radius: 20px; background: var(--glass); box-shadow: 0 18px 42px rgba(66,59,110,.11), inset 0 1px rgba(255,255,255,.25); backdrop-filter: blur(22px) saturate(130%); -webkit-backdrop-filter: blur(22px) saturate(130%); }
.step { padding: 28px 28px 29px; }
.step-number { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--glass-edge); border-radius: 12px; background: var(--soft-chip); color: var(--accent); font-size: 13px; font-weight: 800; box-shadow: 0 0 18px rgba(161,115,238,.15); }
.step h3, .feature-card h3 { margin: 25px 0 9px; font-size: 18px; letter-spacing: -.035em; }
.step p, .feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.feature-section { border-block: 1px solid var(--glass-edge); background: linear-gradient(120deg, rgba(198,227,245,.21), rgba(210,184,236,.20) 55%, rgba(248,181,210,.16)); }
.feature-intro { max-width: 600px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; margin-top: 48px; }
.feature-card { min-height: 221px; padding: 25px 23px; }
.feature-card:nth-child(2) { box-shadow: 0 18px 42px rgba(66,59,110,.11), 0 0 32px rgba(102,229,233,.16), inset 0 1px rgba(255,255,255,.25); }
.feature-card:nth-child(3) { box-shadow: 0 18px 42px rgba(66,59,110,.11), 0 0 32px rgba(222,115,219,.16), inset 0 1px rgba(255,255,255,.25); }
.feature-symbol { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--glass-edge); border-radius: 12px; background: linear-gradient(135deg, rgba(76,224,235,.20), rgba(165,103,229,.25)); color: var(--accent); font-size: 21px; }
.feature-card h3 { margin-top: 30px; font-size: 16px; }

.privacy-section { display: grid; grid-template-columns: .8fr 1fr; align-items: center; gap: clamp(70px, 10vw, 145px); }
.privacy-art { position: relative; display: grid; place-items: center; width: min(100%, 330px); aspect-ratio: 1; margin: auto; border: 1px solid var(--glass-edge); border-radius: 50%; background: radial-gradient(circle at 18% 25%, rgba(100,240,244,.47), transparent 35%), radial-gradient(circle at 75% 80%, rgba(234,113,213,.44), transparent 42%), var(--glass); box-shadow: 0 0 44px rgba(79,212,237,.24), 0 0 68px rgba(224,111,218,.15), inset 0 2px rgba(255,255,255,.40); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); }
.privacy-ring { position: absolute; border: 1px solid rgba(154,139,226,.62); border-radius: 50%; box-shadow: 0 0 12px rgba(122,179,238,.24); }
.ring-one { width: 74%; height: 74%; }.ring-two { width: 52%; height: 52%; border-color: rgba(73,221,232,.72); }
.privacy-center { display: grid; place-items: center; width: 31%; height: 31%; border: 1px solid rgba(255,255,255,.57); border-radius: 50%; background: linear-gradient(145deg, #4b69cf, #8554be 57%, #b74cae); color: #fff; text-align: center; font-size: 14px; font-weight: 850; letter-spacing: .05em; line-height: 1.4; box-shadow: 0 9px 28px rgba(95,95,210,.30), 0 0 29px rgba(84,224,233,.39); }
.privacy-copy h2 { max-width: 600px; }
.privacy-copy > p:not(.eyebrow) { max-width: 590px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.privacy-copy .privacy-footnote { padding-top: 14px; border-top: 1px solid var(--line); font-size: 12px !important; }

.closing { padding-block: 65px; border-block: 1px solid var(--glass-edge); background: var(--closing-gradient); color: #fff; box-shadow: inset 0 1px rgba(255,255,255,.16); }
.closing-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.closing .eyebrow { color: #b7f6fb; }
.closing h2 { max-width: 580px; font-size: clamp(30px, 4vw, 46px); }
.closing-status { display: inline-flex; align-items: center; justify-content: space-between; gap: 35px; min-width: 180px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.55); border-radius: 100px; background: rgba(255,255,255,.12); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); font-size: 13px; font-weight: 760; white-space: nowrap; }
.site-footer { display: flex; justify-content: space-between; align-items: flex-start; gap: 28px; padding-block: 38px 45px; }
.footer-brand span { background: var(--hero-gradient); background-clip: text; -webkit-background-clip: text; color: transparent; font-size: 20px; font-weight: 820; letter-spacing: -.05em; }
.footer-brand p, .site-footer > p { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.site-footer > p { max-width: 360px; margin-top: 0; text-align: right; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(350px, .95fr); gap: 30px; }
  .hero h1 { font-size: clamp(44px, 5.4vw, 60px); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { min-height: 190px; }
}
@media (max-width: 760px) {
  .wrap { width: min(100% - 32px, 620px); }
  .site-header { min-height: 68px; margin-top: 15px; padding: 10px 14px; border-radius: 18px; }
  .header-actions { gap: 12px; }
  .site-header nav { gap: 14px; }
  .site-header nav a { font-size: 11px; }
  .site-header nav a:last-child { display: none; }
  .brand { font-size: 21px; }.brand-mark { width: 32px; height: 32px; }
  .hero { display: flex; flex-direction: column; align-items: stretch; min-height: 0; padding-block: 56px 65px; gap: 42px; }
  .hero-copy { padding-bottom: 0; }.hero h1 { max-width: 590px; font-size: clamp(46px, 9vw, 66px); }.hero-lede { margin-top: 22px; }
  .preview-shell { max-width: 550px; width: 100%; margin-inline: auto; }
  .band-inner { flex-direction: column; justify-content: center; padding-block: 24px; text-align: center; }.category-list { justify-content: center; }
  .section { padding-block: 83px; }.steps { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }.step { padding: 23px; }.step h3 { margin-top: 18px; }
  .privacy-section { grid-template-columns: 1fr; gap: 45px; }.privacy-art { width: 250px; grid-row: 2; }.privacy-copy { grid-row: 1; }
}
@media (max-width: 520px) {
  .announcement { font-size: 10px; }.site-header nav a:nth-child(2) { display: none; }
  .theme-toggle { min-width: 39px; width: 39px; padding: 7px; }.theme-toggle-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .hero { padding-top: 48px; }.hero h1 { font-size: clamp(43px, 11vw, 56px); }.hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .preview-shell { padding: 10px; border-radius: 20px; }.preview-card { padding: 20px 17px 14px; }.preview-summary strong { font-size: 31px; }.summary-count { font-size: 9px; }
  .section-intro h2, .privacy-copy h2 { font-size: clamp(33px, 8.4vw, 43px); }
  .feature-grid { grid-template-columns: 1fr; gap: 12px; }.feature-card { min-height: 0; }.feature-card h3 { margin-top: 20px; }
  .closing-inner { flex-direction: column; align-items: flex-start; }.site-footer { flex-direction: column; }.site-footer > p { text-align: left; }
}
@media (max-width: 390px) {
  .site-header nav { display: none; }
  .brand { font-size: 19px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.button-primary:hover { transform: none; } }
