:root {
  color-scheme: dark;
  --black: oklch(0.13 0.008 235);
  --black-deep: oklch(0.08 0.006 235);
  --surface: oklch(0.19 0.01 235);
  --surface-2: oklch(0.24 0.012 235);
  --white: oklch(0.98 0.004 235);
  --muted: oklch(0.72 0.014 235);
  --line: oklch(0.35 0.012 235 / 0.62);
  --cyan: oklch(0.79 0.16 205);
  --blue: oklch(0.67 0.2 250);
  --purple: oklch(0.67 0.19 300);
  --green: oklch(0.77 0.2 150);
  --orange: oklch(0.76 0.18 65);
  --page: min(1180px, calc(100% - 44px));
  --ease: cubic-bezier(.16, 1, .3, 1);
  --z-header: 20;
  --z-dialog: 40;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black-deep);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; letter-spacing: -.035em; }
p { text-wrap: pretty; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 12px 18px; border-radius: 8px; background: var(--white); color: var(--black); }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 14px;
  left: 50%;
  width: min(980px, calc(100% - 28px));
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 9px 8px 18px;
  border-radius: 14px;
  background: oklch(0.15 0.008 235 / .84);
  box-shadow: 0 6px 8px oklch(0.02 0 0 / .24);
  backdrop-filter: blur(18px) saturate(140%);
  transform: translateX(-50%);
  transition: background .3s ease, transform .5s var(--ease);
}
.site-header.scrolled { background: oklch(0.12 0.008 235 / .96); }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: -.025em; }
.brand-mark { display: inline-block; width: 22px; height: 16px; border-radius: 3px 3px 7px 7px; background: currentColor; position: relative; }
.brand-mark::after { content: ""; position: absolute; width: 8px; height: 4px; border-radius: 0 0 3px 3px; top: 0; left: 7px; background: var(--black-deep); }
.brand-mark.large { width: 64px; height: 46px; border-radius: 8px 8px 16px 16px; }
.brand-mark.large::after { width: 24px; height: 10px; left: 20px; border-radius: 0 0 7px 7px; }
.site-header nav { display: flex; gap: 27px; color: var(--muted); font-size: 13px; }
.site-header nav a { transition: color .2s ease; }
.site-header nav a:hover, .site-header nav a[aria-current="page"] { color: var(--white); }

.button { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 48px; padding: 0 22px; border: 0; border-radius: 999px; font-weight: 700; letter-spacing: -.015em; cursor: pointer; transition: transform .25s var(--ease), background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button-small { min-height: 40px; padding: 0 17px; font-size: 13px; }
.button-small span { color: oklch(0.48 0.01 235); font-weight: 600; }
.button-light { background: var(--white); color: var(--black); }
.button-light:hover { background: var(--cyan); }
.button-dark { background: var(--black); color: var(--white); }
.button-dark:hover { background: oklch(0.25 0.04 235); }
.button-ghost { color: var(--white); background: oklch(0.98 0 0 / .08); }
.button-ghost:hover { background: oklch(0.98 0 0 / .14); }
.button-wide { width: 100%; }

.hero { min-height: 1080px; padding: 180px 0 120px; overflow: hidden; background: radial-gradient(circle at 50% 65%, oklch(0.26 0.09 245 / .48), transparent 31%), var(--black-deep); }
.hero-copy { width: var(--page); margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; color: oklch(0.82 0.02 235); font-size: 14px; font-weight: 600; }
.status-dot, .live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.hero h1 { max-width: 950px; margin: 0 auto 28px; font-size: clamp(3.5rem, 7vw, 5.9rem); line-height: .97; font-weight: 750; }
.hero-lede { max-width: 680px; margin: 0 auto 34px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.microcopy { margin-top: 18px; color: oklch(0.58 0.012 235); font-size: 12px; }

.product-stage { width: min(1320px, 110vw); height: 560px; margin: 90px auto 0; position: relative; perspective: 1200px; }
.ambient { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .45; }
.ambient-one { width: 300px; height: 300px; top: 80px; left: 18%; background: var(--purple); }
.ambient-two { width: 400px; height: 220px; right: 14%; bottom: 0; background: var(--blue); }
.mac-frame { height: 600px; position: relative; overflow: hidden; border-radius: 24px 24px 0 0; background: radial-gradient(circle at 20% 85%, oklch(0.56 0.19 300 / .5), transparent 27%), radial-gradient(circle at 76% 65%, oklch(0.52 0.18 235 / .55), transparent 34%), linear-gradient(145deg, oklch(0.15 0.025 250), oklch(0.1 0.025 280)); box-shadow: 0 -4px 0 oklch(0.58 0.01 235), 0 40px 80px oklch(0.02 0 0 / .8); transform: rotateX(3deg); transform-origin: bottom; }
.screen-top { height: 34px; padding: 0 26px; display: flex; align-items: center; justify-content: space-between; color: oklch(0.88 0.01 235); font-size: 11px; background: oklch(0.04 0 0 / .35); }
.notch-shell { position: absolute; top: 0; left: 50%; width: 590px; transform: translateX(-50%); }
.notch-bar { width: 300px; height: 35px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; position: relative; border-radius: 0 0 12px 12px; background: #000; }
.camera-dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; left: calc(50% - 3px); top: 9px; background: oklch(0.28 0.06 260); }
.notch-wing { display: flex; align-items: center; gap: 6px; width: 92px; color: oklch(0.86 0.01 235); font-size: 10px; }
.left-wing { justify-content: flex-end; transform: translateX(-94px); }
.right-wing { transform: translateX(94px); }
.live-dot { width: 6px; height: 6px; box-shadow: none; }
.live-dot.green { background: var(--green); }.live-dot.purple, .purple { background: var(--purple); }.cyan { background: var(--cyan); }.orange { background: var(--orange); }
.notch-panel { width: 590px; height: 306px; padding: 42px 16px 13px; margin-top: -35px; border-radius: 0 0 22px 22px; background: #000; box-shadow: 0 18px 50px oklch(0.02 0 0 / .7); animation: notch-enter 1s .35s both var(--ease); }
.panel-tabs { display: flex; gap: 5px; padding-bottom: 12px; }
.panel-tabs span { padding: 5px 11px; border-radius: 99px; color: oklch(0.58 0.01 235); font-size: 10px; font-weight: 650; }
.panel-tabs .active { background: oklch(0.98 0 0 / .12); color: var(--white); }
.terminal-window { height: 180px; padding: 18px; border-radius: 10px; background: oklch(0.17 0.013 245); font: 12px/1.65 ui-monospace, "SFMono-Regular", Menlo, monospace; text-align: left; }
.terminal-line.muted { color: oklch(0.55 0.02 235); }.terminal-line.success { color: var(--green); }.terminal-line b, .prompt { color: var(--cyan); }
.cursor { display: inline-block; width: 7px; height: 14px; background: var(--white); vertical-align: -2px; animation: blink 1s step-end infinite; }
.panel-footer { display: flex; align-items: center; justify-content: space-between; padding: 12px 4px 0; color: oklch(0.5 0.01 235); font-size: 9px; }
.panel-footer span { display: flex; align-items: center; gap: 6px; }
.desktop-copy { position: absolute; left: 8%; bottom: 70px; display: flex; flex-direction: column; gap: 9px; }
.desktop-copy span { color: oklch(0.76 0.1 210); font-size: 10px; letter-spacing: .16em; }
.desktop-copy strong { font-size: clamp(1.7rem, 3vw, 3.2rem); line-height: 1.04; letter-spacing: -.035em; }

.promise { padding: clamp(120px, 17vw, 220px) 22px; text-align: center; background: var(--white); color: var(--black); }
.promise p { margin-bottom: 24px; font-size: 15px; font-weight: 700; color: oklch(0.55 0.03 235); }
.promise h2 { max-width: 1060px; margin: auto; font-size: clamp(2.8rem, 6vw, 5.6rem); line-height: 1.02; }
.promise h2 span { color: oklch(0.65 0.015 235); }

.feature { width: var(--page); min-height: 780px; margin: 0 auto; padding: 150px 0; display: flex; align-items: center; justify-content: space-between; gap: clamp(50px, 8vw, 130px); }
.feature-copy { flex: 0 1 510px; }
.feature-index { display: block; margin-bottom: 28px; color: var(--cyan); font-weight: 700; }
.feature h2, .toolbelt h2, .shortcut-section h2 { margin-bottom: 28px; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: 1.02; }
.feature-copy > p { max-width: 52ch; color: var(--muted); font-size: 18px; line-height: 1.65; }
.plain-list { padding: 0; margin: 42px 0 0; list-style: none; border-top: 1px solid var(--line); }
.plain-list li { padding: 15px 0; display: flex; gap: 17px; border-bottom: 1px solid var(--line); color: oklch(0.87 0.01 235); }
.plain-list span { color: oklch(0.5 0.02 235); font: 11px ui-monospace, Menlo, monospace; }
.code-scene { flex: 1 1 520px; min-height: 480px; padding: 20px; border-radius: 14px; background: oklch(0.18 0.016 245); box-shadow: inset 0 1px 0 oklch(0.9 0 0 / .08), 0 8px 8px oklch(0.02 0 0 / .3); }
.code-top { padding: 8px 4px 26px; display: flex; justify-content: space-between; color: var(--muted); font: 12px ui-monospace, Menlo, monospace; }
.window-controls { color: oklch(0.45 0.01 235); letter-spacing: 5px; }
.service-row { padding: 18px 12px; display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); }
.service-row div { flex: 1; display: flex; flex-direction: column; }
.service-row small { color: var(--muted); font: 11px ui-monospace, Menlo, monospace; }
.service-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 9px; color: var(--black); font-weight: 900; }
.running { color: var(--green); font-size: 12px; }
.code-command { margin-top: 28px; padding: 20px; border-radius: 9px; background: oklch(0.1 0.012 245); color: oklch(0.88 0.01 235); font: 13px ui-monospace, Menlo, monospace; }
.code-command span { color: var(--cyan); }.code-command i { display: inline-block; width: 7px; height: 15px; background: var(--white); vertical-align: -2px; animation: blink 1s infinite; }

.feature-ai { width: 100%; padding-left: max(22px, calc((100% - 1180px) / 2)); padding-right: max(22px, calc((100% - 1180px) / 2)); background: oklch(0.2 0.08 292); }
.ai-visual { flex: 1 1 560px; min-height: 560px; position: relative; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; }
.orb-main { width: 400px; height: 400px; left: 40px; top: 70px; background: radial-gradient(circle at 33% 28%, var(--white), var(--cyan) 12%, var(--purple) 43%, oklch(0.25 0.13 280) 70%); box-shadow: 0 0 90px oklch(0.7 0.2 285 / .4); filter: saturate(120%); }
.usage-ring { width: 140px; height: 140px; display: flex; position: absolute; left: 180px; top: 200px; flex-direction: column; align-items: center; justify-content: center; border: 8px solid oklch(0.98 0 0 / .18); border-top-color: var(--white); border-right-color: var(--white); border-radius: 50%; background: oklch(0.12 0.03 280 / .75); }
.usage-ring span { font-size: 32px; font-weight: 800; letter-spacing: -.04em; }.usage-ring small { color: oklch(0.78 0.04 280); }
.usage-pill { position: absolute; padding: 12px 15px; border-radius: 999px; background: oklch(0.11 0.025 280 / .85); box-shadow: 0 6px 8px oklch(0.05 0 0 / .2); font-size: 12px; }
.usage-pill .live-dot { margin-right: 7px; }.pill-one { top: 75px; left: 20px; }.pill-two { right: 5px; top: 185px; }.pill-three { left: 40px; bottom: 70px; color: oklch(0.75 0.04 280); }
.feature-ai .feature-index { color: oklch(0.88 0.1 205); }

.toolbelt { padding: clamp(110px, 14vw, 190px) max(22px, calc((100% - 1180px) / 2)); background: var(--white); color: var(--black); }
.toolbelt-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 80px; }
.toolbelt-head h2 { max-width: 700px; margin-bottom: 0; }
.toolbelt-head p { max-width: 380px; margin-bottom: 7px; color: oklch(0.48 0.02 235); font-size: 18px; }
.tool-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 320px 320px; gap: 16px; }
.tool { position: relative; overflow: hidden; padding: 34px; border-radius: 14px; color: var(--white); display: flex; justify-content: space-between; flex-direction: column; }
.tool h3 { margin: 0 0 6px; font-size: 27px; }.tool p { margin: 0; color: oklch(0.78 0.015 235); }
.tool-clipboard { background: oklch(0.18 0.035 245); }.tool-focus { background: oklch(0.64 0.18 35); }.tool-media { background: oklch(0.21 0.08 300); }.tool-kanban { background: oklch(0.28 0.12 210); }
.tool-symbol { font-size: clamp(4rem, 8vw, 7rem); line-height: .9; font-weight: 800; letter-spacing: -.07em; color: var(--cyan); }
.timer { font-size: clamp(3.2rem, 6vw, 5.3rem); font-weight: 800; letter-spacing: -.06em; }
.album { width: 130px; height: 130px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(from 45deg, var(--purple), var(--cyan), var(--orange), var(--purple)); box-shadow: inset 0 0 0 35px oklch(0.13 0.03 290); animation: spin 16s linear infinite; }
.album span { display: grid; place-items: center; width: 38px; height: 38px; padding-left: 3px; border-radius: 50%; background: var(--white); color: var(--black); animation: spin 16s linear infinite reverse; }
.mini-kanban { display: flex; gap: 9px; height: 150px; }.mini-kanban i { flex: 1; border-radius: 8px; background: oklch(0.98 0 0 / .18); }.mini-kanban i:nth-child(2) { transform: translateY(28px); }.mini-kanban i:nth-child(3) { transform: translateY(58px); }

.shortcut-section { width: var(--page); min-height: 670px; margin: 0 auto; padding: 120px 0; display: flex; align-items: center; justify-content: center; gap: clamp(60px, 11vw, 170px); }
.shortcut-section > div:last-child { max-width: 650px; }.shortcut-section p { color: var(--muted); font-size: 20px; }
.shortcut-key { display: flex; gap: 10px; }
.shortcut-key span { min-width: 98px; height: 98px; padding: 0 24px; display: grid; place-items: center; border-radius: 14px; background: var(--surface); box-shadow: 0 7px 0 oklch(0.09 0.006 235), inset 0 1px 0 oklch(0.9 0 0 / .1); font-size: 25px; font-weight: 700; }
.shortcut-key span:last-child { min-width: 170px; }

.pricing { min-height: 700px; display: flex; justify-content: space-between; align-items: center; gap: 60px; padding: 120px max(22px, calc((100% - 1180px) / 2)); background: var(--cyan); color: var(--black); }
.pricing-copy { max-width: 620px; }.pricing-copy > p:first-child { font-weight: 750; }
.pricing h2 { margin-bottom: 28px; font-size: clamp(4rem, 9vw, 7rem); line-height: .85; }
.pricing-lede { max-width: 52ch; font-size: 19px; font-weight: 560; }
.price-action { width: min(100%, 410px); padding: 34px; border-radius: 14px; background: var(--white); box-shadow: 0 8px 8px oklch(0.25 0.08 210 / .25); }
.price-action > div { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 24px; border-bottom: 1px solid oklch(0.82 0.01 235); }.price-action > div strong { font-size: 30px; }
.price-action ul { padding: 20px 0; margin: 0; list-style: none; }.price-action li { padding: 6px 0; }.price-action li::before { content: "✓"; margin-right: 10px; font-weight: 900; }
.price-action .button { width: 100%; }.text-link { display: block; margin-top: 17px; text-align: center; font-size: 13px; font-weight: 700; }
.final-cta { min-height: 720px; padding: 130px 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.final-cta .brand-mark { color: var(--cyan); margin-bottom: 38px; }.final-cta h2 { max-width: 900px; margin-bottom: 40px; font-size: clamp(3rem, 6.5vw, 5.6rem); line-height: 1; }

footer { width: var(--page); margin: 0 auto; padding: 45px 0 35px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
footer p { margin: 0; text-align: center; }footer div { display: flex; justify-content: flex-end; gap: 20px; }footer a:hover { color: var(--white); }footer small { grid-column: 1 / -1; color: oklch(0.48 0.01 235); }

/* Download */
.inner-page { background: var(--black-deep); }
.download-main { padding-top: 72px; }
.download-hero { min-height: 800px; padding: 145px 22px 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle at 50% 50%, oklch(0.32 0.1 245 / .48), transparent 32%); }
.download-icon { width: 132px; height: 132px; margin-bottom: 40px; display: grid; place-items: center; position: relative; border-radius: 28px; background: oklch(0.15 0.012 235); box-shadow: inset 0 1px 0 oklch(0.98 0 0 / .1), 0 8px 8px oklch(0.02 0 0 / .45); }
.download-icon i { position: absolute; right: -8px; bottom: -8px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--cyan); color: var(--black); font-size: 20px; font-style: normal; font-weight: 900; }
.download-hero h1 { margin-bottom: 24px; font-size: clamp(3.7rem, 8vw, 6rem); line-height: .95; }.download-hero > p:not(.hero-kicker) { max-width: 600px; margin-bottom: 32px; color: var(--muted); font-size: 19px; }.download-hero small { margin-top: 16px; color: oklch(0.55 0.01 235); }
.install-steps { padding: 130px max(22px, calc((100% - 1050px) / 2)); background: var(--white); color: var(--black); }
.install-steps h2 { margin-bottom: 65px; text-align: center; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.install-steps ol { padding: 0; margin: 0; display: flex; list-style: none; }.install-steps li { flex: 1; padding: 0 34px; display: flex; gap: 20px; }.install-steps li + li { border-left: 1px solid oklch(0.85 0.01 235); }.install-steps li > span { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--black); color: var(--white); font-weight: 800; }.install-steps strong { font-size: 18px; }.install-steps p { margin: 7px 0 0; color: oklch(0.48 0.02 235); }
.requirements { width: var(--page); padding: 130px 0; display: flex; gap: 80px; }.requirements > div { flex: 1; }.requirements h2 { font-size: 28px; }.requirements p { color: var(--muted); line-height: 1.8; }
.download-purchase { width: var(--page); margin: 0 auto 120px; padding: 70px; border-radius: 14px; background: var(--cyan); color: var(--black); text-align: center; }.download-purchase h2 { margin-bottom: 8px; font-size: clamp(2.2rem, 4vw, 3.5rem); }.download-purchase .button { margin-top: 18px; }

/* Checkout */
.checkout-page { min-height: 100vh; background: oklch(0.94 0.008 235); color: var(--black); color-scheme: light; }
.checkout-header { width: min(1120px, calc(100% - 44px)); height: 80px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid oklch(0.82 0.01 235); color: oklch(0.4 0.02 235); font-size: 13px; }.brand-dark { color: var(--black); }
.checkout-main { width: min(1080px, calc(100% - 44px)); margin: 0 auto; padding: 90px 0 120px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 110px; align-items: start; }
.back-link { display: inline-block; margin-bottom: 80px; color: oklch(0.48 0.04 235); font-weight: 650; }.back-link:hover { color: var(--black); }
.order-summary > p { margin-bottom: 16px; font-weight: 700; }.order-summary h1 { margin-bottom: 60px; font-size: clamp(3rem, 5.5vw, 5rem); line-height: .98; }
.checkout-product { padding: 24px 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; border-top: 1px solid oklch(0.8 0.01 235); border-bottom: 1px solid oklch(0.8 0.01 235); }.checkout-app-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 14px; background: var(--black); color: var(--white); }.checkout-app-icon .brand-mark.large { transform: scale(.48); }.checkout-product div:nth-child(2) { display: flex; flex-direction: column; }.checkout-product span { color: oklch(0.48 0.02 235); font-size: 13px; }
.total { padding: 22px 0; display: flex; justify-content: space-between; font-size: 20px; }.total strong { font-size: 26px; }
.checkout-benefits { padding: 24px 0 0; margin: 0; border-top: 1px solid oklch(0.8 0.01 235); list-style: none; color: oklch(0.42 0.025 235); font-size: 14px; }.checkout-benefits li { padding: 5px 0; }.checkout-benefits li::before { content: "✓"; margin-right: 10px; color: oklch(0.55 0.16 150); font-weight: 900; }
.payment-panel { padding: 40px; border-radius: 14px; background: var(--white); box-shadow: 0 8px 8px oklch(0.42 0.02 235 / .11); }.payment-panel h2 { margin-bottom: 8px; font-size: 30px; }.payment-panel > p { color: oklch(0.46 0.02 235); }
.purchase-form { margin-top: 30px; }.purchase-form > label:not(.consent) { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 750; }.purchase-form input[type="email"] { width: 100%; height: 52px; padding: 0 15px; border: 1px solid oklch(0.72 0.02 235); border-radius: 9px; background: var(--white); color: var(--black); }.purchase-form input::placeholder { color: oklch(0.45 0.015 235); }.purchase-form input:focus { border-color: var(--blue); outline: 3px solid oklch(0.67 0.2 250 / .2); }
.consent { margin: 20px 0; display: flex; align-items: flex-start; gap: 10px; color: oklch(0.4 0.02 235); font-size: 12px; }.consent input { margin-top: 3px; accent-color: var(--black); }
.payment-methods { margin-top: 27px; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }.payment-methods span { padding: 5px 8px; border-radius: 4px; background: oklch(0.9 0.01 235); font-size: 9px; font-weight: 800; }.secure-note { margin: 18px 0 0; text-align: center; font-size: 11px; }
.checkout-dialog { width: min(460px, calc(100% - 32px)); padding: 50px 38px 38px; border: 0; border-radius: 14px; background: var(--white); color: var(--black); text-align: center; box-shadow: 0 8px 8px oklch(0.02 0 0 / .35); }.checkout-dialog::backdrop { background: oklch(0.08 0 0 / .78); backdrop-filter: blur(8px); }.checkout-dialog > button { position: absolute; right: 14px; top: 10px; border: 0; background: none; color: oklch(0.4 0 0); font-size: 28px; cursor: pointer; }.checkout-dialog .brand-mark { margin-bottom: 25px; }.checkout-dialog h2 { font-size: 30px; }.checkout-dialog p { color: oklch(0.42 0.02 235); }.checkout-dialog code { font-size: .9em; }.checkout-dialog .button { margin-top: 10px; }

@keyframes notch-enter { from { height: 35px; opacity: .5; transform: scaleX(.52); transform-origin: top; } to { height: 306px; opacity: 1; transform: scaleX(1); } }
@keyframes blink { 50% { opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { min-height: auto; padding-top: 150px; }
  .product-stage { height: 470px; margin-top: 70px; }
  .mac-frame { height: 500px; border-radius: 16px 16px 0 0; }
  .notch-shell { transform: translateX(-50%) scale(.78); transform-origin: top; }
  .feature, .feature-ai { min-height: auto; padding-top: 110px; padding-bottom: 110px; flex-direction: column; align-items: stretch; }
  .feature-ai .feature-copy { order: -1; }.feature-copy { flex-basis: auto; }.code-scene { flex-basis: auto; }
  .ai-visual { flex-basis: 500px; width: min(560px, 100%); margin: auto; }
  .toolbelt-head { align-items: flex-start; flex-direction: column; }.tool-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 300px; }
  .shortcut-section { flex-direction: column; text-align: center; }
  .pricing { flex-direction: column; align-items: flex-start; }.price-action { width: 100%; }
  .install-steps ol { flex-direction: column; gap: 30px; }.install-steps li { padding: 0; }.install-steps li + li { border-left: 0; }
  .checkout-main { grid-template-columns: 1fr; gap: 65px; padding-top: 55px; }.back-link { margin-bottom: 50px; }.order-summary h1 { margin-bottom: 45px; }
}

@media (max-width: 620px) {
  :root { --page: min(calc(100% - 30px), 1180px); }
  .site-header { top: 8px; width: calc(100% - 16px); padding-left: 14px; }.site-header .button span { display: none; }
  .hero { padding: 135px 0 80px; }.hero h1 { font-size: clamp(3rem, 13vw, 4.3rem); }.hero-lede { padding: 0 12px; }.hero-actions { flex-direction: column; padding: 0 15px; }.hero-actions .button { width: 100%; }
  .product-stage { width: 900px; height: 400px; left: 50%; transform: translateX(-50%); }.mac-frame { height: 430px; }.notch-shell { transform: translateX(-50%) scale(.62); }.desktop-copy { left: 29%; }
  .promise { padding: 110px 18px; }.promise h2 { font-size: 2.75rem; }
  .feature h2, .toolbelt h2, .shortcut-section h2 { font-size: 2.8rem; }
  .code-scene { min-height: 430px; padding: 14px; }.service-row { padding-left: 4px; padding-right: 4px; }.running { font-size: 10px; }
  .ai-visual { min-height: 430px; flex-basis: 430px; transform: scale(.8); transform-origin: center; margin-top: -40px; margin-bottom: -40px; }.orb-main { left: calc(50% - 200px); }.usage-ring { left: calc(50% - 70px); }.pill-two { right: -30px; }
  .toolbelt { padding-top: 105px; padding-bottom: 105px; }.toolbelt-head { margin-bottom: 50px; }.tool-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 280px); }.tool { padding: 28px; }
  .shortcut-section { min-height: 600px; gap: 65px; }.shortcut-key { transform: scale(.78); }.shortcut-key span:last-child { min-width: 150px; }
  .pricing { padding-top: 100px; padding-bottom: 100px; }.pricing h2 { font-size: 4.4rem; }.price-action { padding: 26px; }
  .final-cta { min-height: 620px; }.final-cta h2 { font-size: 3.2rem; }
  footer { grid-template-columns: 1fr; text-align: center; }footer p { text-align: center; }footer div { justify-content: center; }footer small { grid-column: 1; }
  .download-hero { min-height: 760px; }.download-hero h1 { font-size: 3.8rem; }.install-steps { padding-top: 100px; padding-bottom: 100px; }.requirements { flex-direction: column; gap: 40px; padding: 95px 0; }.download-purchase { padding: 55px 22px; }
  .checkout-header { width: calc(100% - 30px); }.checkout-main { width: calc(100% - 30px); }.order-summary h1 { font-size: 3.2rem; }.checkout-product { grid-template-columns: auto 1fr; }.checkout-product > strong { grid-column: 2; }.payment-panel { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .notch-panel { height: 306px; transform: none; opacity: 1; }
}
