/* TabHangar landing page — purple / white product layout */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f5fc;
  --bg-muted: #efecf8;
  --text: #1e1b2b;
  --text-soft: #696477;
  --text-faint: #9892a7;
  --border: #e8e4f0;
  --accent: #6a42c5;
  --accent-dark: #4c278e;
  --accent-deep: #2c1959;
  --accent-soft: #eee8fb;
  --accent-line: #d9cdf4;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(44, 25, 89, 0.13);
  --shadow-soft: 0 12px 35px rgba(44, 25, 89, 0.08);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }
.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; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(232, 228, 240, 0.82);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 760; letter-spacing: -0.03em; white-space: nowrap; }
.brand-mark { position: relative; display: inline-flex; align-items: flex-end; gap: 3px; width: 24px; height: 24px; padding: 4px; border-radius: 8px; background: var(--accent); }
.brand-mark span { display: block; width: 4px; border-radius: 3px 3px 2px 2px; background: var(--white); }
.brand-mark span:nth-child(1) { height: 8px; opacity: .72; }
.brand-mark span:nth-child(2) { height: 13px; opacity: .88; }
.brand-mark span:nth-child(3) { height: 17px; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.site-nav a, .header-signin, .footer-links a { color: var(--text-soft); text-decoration: none; font-size: 13px; transition: color .18s ease; }
.site-nav a:hover, .header-signin:hover, .footer-links a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.language-control select { appearance: none; border: 0; background: transparent; color: var(--text-soft); padding: 5px 2px; font-size: 12px; outline: none; cursor: pointer; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: -0.01em; transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 8px 20px rgba(106, 66, 197, .2); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-small { min-height: 38px; padding: 0 17px; font-size: 12px; }
.btn-outline { border-color: var(--accent-line); background: transparent; color: var(--accent-dark); }
.btn-outline:hover { border-color: var(--accent); background: var(--accent-soft); }
.btn-light { background: var(--white); color: var(--accent-deep); }
.btn-light:hover { background: var(--accent-soft); }
.mobile-menu { display: none; margin-left: auto; width: 38px; height: 38px; padding: 9px; border: 1px solid var(--border); border-radius: 10px; background: var(--white); }
.mobile-menu span { display: block; height: 1px; margin: 5px 0; background: var(--text); }

/* Shared sections */
.section { padding: 128px 0; }
.eyebrow { margin: 0 0 16px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
.section-heading { max-width: 700px; }
.section-heading.centered { margin: 0 auto 58px; text-align: center; }
.section-heading h2, .split-copy h2, .proof-intro h2, .faq-heading h2, .final-cta h2 { margin: 0; color: var(--text); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 760; letter-spacing: -.055em; line-height: 1.08; }
.section-heading > p:last-child, .split-copy > p:not(.eyebrow), .proof-intro > p:last-child { max-width: 600px; margin: 20px auto 0; color: var(--text-soft); font-size: 16px; line-height: 1.75; }

/* Hero */
.hero { overflow: hidden; padding: 86px 0 116px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: 74px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 620px; margin: 0; font-size: clamp(3.5rem, 7vw, 6.8rem); font-weight: 780; letter-spacing: -.085em; line-height: .94; }
.hero-copy h1 em { color: var(--accent); font-style: normal; }
.hero-description { max-width: 510px; margin: 30px 0 0; color: var(--text-soft); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--accent-dark); text-decoration: none; font-size: 13px; font-weight: 750; }
.text-link:hover { color: var(--accent); }
.text-link span:last-child { font-size: 16px; transition: transform .18s ease; }
.text-link:hover span:last-child { transform: translate(3px, -3px); }
.hero-note { display: flex; align-items: center; gap: 9px; margin: 28px 0 0; color: var(--text-faint); font-size: 12px; }
.note-check { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 11px; font-weight: 800; }
.hero-stage { position: relative; min-height: 575px; }
.hero-purple-field { position: absolute; inset: 20px 0 0 30px; overflow: hidden; border-radius: 220px 0 0 0; background: var(--accent-deep); }
.hero-purple-field::before { content: ""; position: absolute; width: 340px; height: 340px; top: -160px; right: -70px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.hero-purple-field::after { content: ""; position: absolute; width: 500px; height: 160px; left: -150px; bottom: -100px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: rotate(-18deg); }
.browser-window { position: absolute; top: 106px; left: 54px; right: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.42); border-radius: 16px; background: var(--white); box-shadow: 0 24px 60px rgba(17, 8, 40, .36); transform: rotate(-3deg); }
.browser-toolbar { display: flex; align-items: center; gap: 13px; height: 38px; padding: 0 14px; border-bottom: 1px solid var(--border); background: #fbfaff; color: var(--text-faint); font-size: 9px; }
.window-dots { display: flex; gap: 4px; }
.window-dots span { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-line); }
.window-dots span:nth-child(2) { background: #c6b5eb; }
.window-dots span:nth-child(3) { background: var(--accent); }
.browser-address { flex: 1; padding: 5px 12px; border: 1px solid var(--border); border-radius: 999px; background: var(--white); }
.browser-control { font-weight: 800; letter-spacing: 2px; }
.browser-tabs { display: flex; gap: 7px; height: 40px; padding: 7px 11px 0; background: #f4f0fb; }
.browser-tab { display: flex; align-items: center; gap: 6px; min-width: 0; padding: 0 12px; border-radius: 8px 8px 0 0; color: var(--text-faint); font-size: 9px; }
.browser-tab.active { background: var(--white); color: var(--text); }
.tab-favicon { width: 8px; height: 8px; border-radius: 2px; background: var(--accent); }
.tab-favicon-two { background: #bfa9e9; }
.tab-favicon-three { background: var(--accent-deep); }
.browser-content { height: 270px; padding: 33px 38px; background: var(--white); }
.content-line { height: 8px; margin-bottom: 13px; border-radius: 6px; background: var(--bg-muted); }
.content-line-wide { width: 72%; height: 13px; background: var(--accent-soft); }
.content-line-mid { width: 45%; }
.content-line-short { width: 34%; margin-top: 26px; }
.content-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.content-columns span { display: block; height: 88px; border-radius: 8px; background: #f7f4fc; }
.content-columns span:nth-child(2) { background: var(--accent-soft); }
.content-blocks { display: grid; grid-template-columns: 1.3fr .7fr; gap: 12px; margin-top: 18px; }
.content-blocks span { display: block; height: 38px; border-radius: 7px; background: #f5f2fa; }
.content-blocks span:last-child { background: var(--accent-line); opacity: .52; }
.save-status { position: absolute; right: 18px; bottom: 17px; display: flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid var(--accent-line); border-radius: 999px; background: var(--white); color: var(--accent-dark); font-size: 9px; box-shadow: var(--shadow-soft); }
.status-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.visual-float { position: absolute; display: flex; align-items: center; gap: 8px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 10px; background: rgba(255,255,255,.96); color: var(--text); font-size: 10px; font-weight: 750; box-shadow: var(--shadow); }
.visual-float-top { top: 68px; right: 24px; transform: rotate(5deg); }
.visual-float-bottom { bottom: 96px; left: 2px; transform: rotate(-4deg); }
.float-mark { display: inline-flex; align-items: center; justify-content: center; width: 19px; height: 19px; border-radius: 6px; background: var(--accent-soft); color: var(--accent); font-size: 16px; line-height: 1; }
.float-mark-check { background: var(--accent); color: var(--white); font-size: 11px; }
.hero-stage-caption { position: absolute; right: 0; bottom: 9px; display: flex; align-items: center; gap: 12px; color: var(--text-faint); font-size: 11px; letter-spacing: .02em; }
.caption-rule { display: block; width: 70px; height: 1px; background: var(--accent-line); }

/* Feature offer */
.offer-section { padding-top: 60px; border-top: 1px solid var(--border); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-item { min-height: 246px; padding: 27px 25px 30px; border-right: 1px solid var(--border); }
.feature-item:first-child { padding-left: 0; }
.feature-item:last-child { padding-right: 0; border-right: 0; }
.feature-number { display: block; margin-bottom: 34px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.feature-item h3 { margin: 0 0 12px; font-size: 20px; letter-spacing: -.04em; }
.feature-item p { min-height: 74px; margin: 0; color: var(--text-soft); font-size: 13px; line-height: 1.7; }
.feature-link { display: inline-block; margin-top: 19px; color: var(--accent-dark); text-decoration: none; font-size: 12px; font-weight: 750; }
.feature-link::after { content: " ↗"; color: var(--accent); }

/* Split content sections */
.split-section { padding-top: 105px; padding-bottom: 105px; }
.split-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 100px; }
.split-reverse .split-copy { order: 2; }
.split-reverse .split-visual { order: 1; }
.split-copy h2 { max-width: 520px; }
.split-copy > p:not(.eyebrow) { margin: 24px 0 0; }
.check-list { display: grid; gap: 13px; margin: 30px 0 32px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--text-soft); font-size: 13px; line-height: 1.6; }
.check-list li::before { content: "✓"; position: absolute; top: 1px; left: 0; display: inline-flex; align-items: center; justify-content: center; width: 17px; height: 17px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 10px; font-weight: 900; }
.split-visual { position: relative; min-height: 430px; }
.snapshot-visual { display: flex; align-items: center; justify-content: center; }
.snapshot-shadow-card { position: absolute; width: 67%; height: 285px; border-radius: 18px; background: var(--accent-soft); transform: translate(54px, -29px) rotate(8deg); }
.snapshot-card { position: absolute; display: flex; flex-direction: column; border-radius: 16px; box-shadow: var(--shadow); }
.snapshot-card-back { width: 68%; height: 260px; padding: 23px; background: #e3daf6; color: var(--accent-dark); transform: translate(54px, -19px) rotate(7deg); }
.snapshot-card-back span, .snapshot-card-mid span { font-size: 11px; font-weight: 700; }
.snapshot-card-back b, .snapshot-card-mid b { margin-top: auto; font-size: 26px; letter-spacing: -.06em; }
.snapshot-card-mid { width: 70%; height: 273px; padding: 23px; background: #bba6e6; color: var(--accent-deep); transform: translate(26px, -5px) rotate(3deg); }
.snapshot-card-front { z-index: 2; width: 73%; min-height: 295px; padding: 22px; background: var(--white); border: 1px solid var(--border); transform: rotate(-4deg); }
.snapshot-card-head { display: flex; align-items: center; gap: 7px; color: var(--text); font-size: 11px; font-weight: 800; }
.tiny-dot { width: 8px; height: 8px; border-radius: 3px; background: var(--accent); }
.snapshot-menu { margin-left: auto; color: var(--text-faint); letter-spacing: 2px; }
.snapshot-date { margin: 25px 0 14px; color: var(--text-faint); font-size: 10px; }
.snapshot-row { display: grid; grid-template-columns: 16px 1fr auto; align-items: center; gap: 8px; padding: 13px 0; border-top: 1px solid var(--border); color: var(--text-soft); font-size: 11px; }
.snapshot-row b { color: var(--accent); font-size: 11px; }
.row-icon { width: 11px; height: 11px; border-radius: 3px; background: var(--accent); }
.row-icon-purple { background: #bd9de8; }
.row-icon-gray { background: #c9c4d2; }
.organize-section { background: var(--bg-soft); }
.grid-visual { padding: 25px; border-radius: 20px; background: var(--accent-deep); box-shadow: var(--shadow); }
.grid-visual-head, .grid-visual-footer { display: flex; align-items: center; justify-content: space-between; color: var(--white); font-size: 12px; font-weight: 750; }
.grid-visual-count { color: rgba(255,255,255,.52); font-size: 10px; font-weight: 500; }
.mini-tab-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; margin: 28px 0; }
.mini-tab { min-height: 118px; padding: 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(255,255,255,.1); color: var(--white); }
.mini-tab span { display: block; width: 23px; height: 23px; margin-bottom: 25px; border-radius: 7px; background: rgba(255,255,255,.42); }
.mini-tab b { display: block; font-size: 12px; font-weight: 700; }
.mini-tab small { display: block; margin-top: 3px; color: rgba(255,255,255,.5); font-size: 10px; }
.mini-tab-purple { background: var(--accent); border-color: rgba(255,255,255,.3); }
.mini-tab-purple span { background: var(--white); }
.mini-tab-dark { background: rgba(0,0,0,.16); }
.mini-tab-wide { grid-column: span 2; min-height: 86px; }
.mini-tab-wide span { display: inline-block; vertical-align: middle; margin: 0 9px 0 0; width: 17px; height: 17px; }
.mini-tab-wide b { display: inline-block; }
.mini-tab-wide small { display: inline-block; margin-left: 6px; }
.grid-visual-footer { justify-content: flex-start; gap: 8px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.65); font-size: 10px; font-weight: 500; }
.footer-dot { width: 7px; height: 7px; border-radius: 50%; background: #c8b2f0; box-shadow: 0 0 0 4px rgba(200,178,240,.15); }

/* Proof / trust section */
.proof-section { background: var(--white); padding-top: 100px; padding-bottom: 112px; }
.proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.proof-intro h2 { max-width: 450px; font-size: clamp(2rem, 3.6vw, 3.2rem); }
.proof-intro > p:last-child { margin: 24px 0 0; max-width: 430px; }
.proof-list { border-top: 1px solid var(--border); }
.proof-row { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--border); }
.proof-index { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.proof-row h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: -.03em; }
.proof-row p { margin: 0; color: var(--text-soft); font-size: 13px; line-height: 1.7; }

/* Pricing */
.pricing-section { background: var(--bg-soft); }
.pricing-trial-note { margin: -22px auto 42px; color: var(--accent-dark); font-size: 13px; font-weight: 700; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 495px; padding: 29px 23px 22px; border: 1px solid var(--border); border-radius: 15px; background: var(--white); }
.price-card-top { flex: 1; }
.price-card.free-plan { background: transparent; border-color: var(--accent-line); }
.price-card.popular-plan { border-color: var(--accent); box-shadow: 0 14px 40px rgba(106, 66, 197, .12); }
.price-card.lifetime-plan { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--white); }
.plan-label { margin: 0; color: var(--accent-dark); font-size: 15px; font-weight: 800; }
.lifetime-plan .plan-label, .lifetime-plan .plan-description, .lifetime-plan .price, .lifetime-plan .plan-list li { color: var(--white); }
.plan-description { min-height: 47px; margin: 10px 0 0; color: var(--text-soft); font-size: 12px; line-height: 1.55; }
.price { margin: 29px 0 0; color: var(--text); font-size: 39px; font-weight: 780; letter-spacing: -.08em; line-height: 1; white-space: nowrap; }
.price small { margin-left: 4px; color: var(--text-faint); font-size: 12px; font-weight: 500; letter-spacing: 0; }
.price-savings { display: inline-block; margin-left: 8px; padding: 5px 7px; border: 1px solid var(--accent-line); border-radius: 999px; color: var(--accent-dark); font-size: 10px; font-weight: 800; letter-spacing: 0; line-height: 1; vertical-align: middle; white-space: nowrap; }
.lifetime-plan .price small { color: rgba(255,255,255,.58); }
.plan-list { display: grid; gap: 12px; margin: 29px 0 20px; padding: 0; list-style: none; }
.plan-list li { position: relative; padding-left: 21px; color: var(--text-soft); font-size: 12px; line-height: 1.45; }
.plan-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.lifetime-plan .plan-list li::before { color: #d4c2f4; }
.popular-badge { position: absolute; top: -12px; right: 18px; padding: 5px 10px; border-radius: 999px; background: var(--accent); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .03em; }
.checkout-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 22px 0 0; color: var(--text-faint); font-size: 11px; text-align: center; }
.checkout-note > span:first-child { color: var(--accent); font-weight: 900; }
.checkout-status { min-height: 19px; margin: 18px 0 0; color: var(--accent-dark); font-size: 12px; text-align: center; }
.checkout-status.is-error { color: #a13b52; }

/* FAQ */
.faq-section { padding-top: 110px; padding-bottom: 110px; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.faq-heading h2 { max-width: 370px; font-size: clamp(2rem, 3.4vw, 3rem); }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 23px 0; color: var(--text); font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--accent); font-size: 22px; font-weight: 400; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 650px; margin: -7px 32px 23px 0; color: var(--text-soft); font-size: 13px; line-height: 1.7; }

/* Final CTA and footer */
.final-cta { position: relative; overflow: hidden; background: var(--accent); color: var(--white); text-align: center; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; pointer-events: none; }
.final-cta::before { width: 420px; height: 420px; top: -300px; left: -90px; }
.final-cta::after { width: 520px; height: 520px; right: -210px; bottom: -410px; }
.final-cta-inner { position: relative; z-index: 1; padding-top: 104px; padding-bottom: 108px; }
.final-cta .eyebrow { color: #d9cdf4; }
.final-cta h2 { color: var(--white); }
.final-cta p:not(.eyebrow) { max-width: 500px; margin: 20px auto 29px; color: rgba(255,255,255,.76); font-size: 16px; }
.site-footer { background: var(--accent-deep); color: rgba(255,255,255,.62); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; min-height: 92px; }
.footer-brand { color: var(--white); }
.footer-links { display: flex; gap: 23px; }
.footer-links a { color: rgba(255,255,255,.62); font-size: 12px; }
.footer-inner > p { margin: 0; font-size: 11px; text-align: right; }

/* Responsive */
@media (max-width: 1050px) {
  .container { width: min(var(--container), calc(100% - 44px)); }
  .header-inner { gap: 22px; }
  .site-nav { gap: 18px; }
  .hero-grid { gap: 42px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 7vw, 5.5rem); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card { min-height: 450px; }
  .proof-grid, .faq-grid { gap: 60px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 36px, 560px); }
  .site-header { position: relative; }
  .header-inner { min-height: 66px; }
  .site-nav { position: absolute; top: 66px; left: 18px; right: 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; border: 1px solid var(--border); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-soft); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 11px 12px; border-radius: 8px; }
  .site-nav a:hover { background: var(--bg-soft); }
  .header-actions { margin-left: auto; gap: 9px; }
  .header-signin { display: none; }
  .language-control { display: none; }
  .mobile-menu { display: block; }
  .hero { padding: 62px 0 76px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy h1 { max-width: 500px; font-size: clamp(3.2rem, 15vw, 5.1rem); }
  .hero-description { font-size: 15px; }
  .hero-stage { min-height: 470px; }
  .hero-purple-field { inset: 10px 0 0; border-radius: 150px 0 0 0; }
  .browser-window { top: 90px; left: 25px; right: 15px; }
  .browser-content { height: 220px; padding: 25px 25px; }
  .visual-float-top { right: 10px; }
  .visual-float-bottom { left: 12px; bottom: 76px; }
  .section { padding: 82px 0; }
  .section-heading.centered { margin-bottom: 42px; }
  .section-heading h2, .split-copy h2, .proof-intro h2, .faq-heading h2, .final-cta h2 { font-size: 2.35rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item { min-height: 232px; padding: 23px 18px; }
  .feature-item:nth-child(2) { border-right: 0; }
  .feature-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .feature-item:first-child { padding-left: 0; }
  .feature-item:last-child { padding-right: 0; }
  .feature-item p { min-height: 92px; font-size: 12px; }
  .split-section { padding-top: 72px; padding-bottom: 72px; }
  .split-grid, .proof-grid, .faq-grid { grid-template-columns: 1fr; gap: 54px; }
  .split-reverse .split-copy, .split-reverse .split-visual { order: initial; }
  .split-visual { min-height: 380px; }
  .proof-intro > p:last-child { margin-left: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
  .price-card-top { min-height: 0; }
  .plan-list { margin-bottom: 30px; }
  .faq-list summary { font-size: 14px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; gap: 14px; padding: 28px 0; }
  .footer-inner > p { text-align: left; }
}

@media (max-width: 430px) {
  .container { width: calc(100% - 28px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-actions .btn { width: 100%; }
  .hero-stage { min-height: 410px; }
  .hero-purple-field { border-radius: 110px 0 0 0; }
  .browser-window { top: 78px; left: 15px; right: 9px; }
  .browser-tabs { gap: 2px; padding-left: 5px; }
  .browser-tab { padding: 0 7px; font-size: 8px; }
  .browser-content { height: 190px; padding: 20px 18px; }
  .content-columns span { height: 58px; }
  .save-status { right: 10px; bottom: 10px; font-size: 8px; }
  .visual-float { padding: 8px 10px; font-size: 8px; }
  .visual-float-top { top: 48px; }
  .visual-float-bottom { bottom: 51px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item, .feature-item:first-child, .feature-item:last-child { min-height: 0; padding: 23px 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: 0; }
  .feature-item p { min-height: 0; }
  .snapshot-card-front { width: 82%; }
  .snapshot-card-mid, .snapshot-card-back { width: 76%; }
  .grid-visual { padding: 18px; }
  .price { font-size: 35px; }
  .footer-links { flex-wrap: wrap; gap: 13px; }
}

/* Account center */
.login-page { background: var(--bg-soft); }
.account-container { width: min(100% - 36px, 660px); margin: 0 auto; padding: 64px 0; }
.account-home { color: var(--accent-dark); font-weight: 800; text-decoration: none; }
.account-card { margin-top: 22px; padding: 30px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-soft); }
.account-card h1 { margin: 0 0 8px; font-size: 28px; color: var(--ink); }
.account-card h2 { margin: 24px 0 10px; font-size: 17px; color: var(--ink); }
.account-card p { color: var(--text-soft); font-size: 14px; line-height: 1.6; }
.account-card label { display: grid; gap: 7px; margin: 16px 0; color: var(--ink); font-size: 13px; font-weight: 700; }
.account-card input { min-height: 44px; padding: 0 12px; border: 1px solid var(--border); border-radius: 10px; font: inherit; }
.account-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.account-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 22px 0; }
.account-details div { padding: 15px; border: 1px solid var(--border); border-radius: 12px; }
.account-details dt { color: var(--text-soft); font-size: 12px; }
.account-details dd { margin: 6px 0 0; color: var(--ink); font-weight: 700; overflow-wrap: anywhere; }
.account-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.account-message { min-height: 20px; }
.trial-panel { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 18px 0; padding: 15px; border: 1px solid var(--accent-line); border-radius: 12px; background: var(--accent-soft); }
.trial-panel p { margin: 0; color: var(--accent-dark); font-weight: 700; }
@media (max-width: 520px) { .account-container { padding: 30px 0; } .account-card { padding: 22px; } .account-heading { flex-direction: column; } .account-details { grid-template-columns: 1fr; } .trial-panel { align-items: flex-start; flex-direction: column; } }

/* Legal pages */
.legal-page { min-height: 100vh; background: var(--bg-soft); }
.legal-container { width: min(100% - 36px, 900px); margin: 0 auto; padding: 42px 0 70px; }
.legal-card { margin-top: 18px; padding: clamp(24px, 5vw, 58px); border: 1px solid var(--border); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-soft); }
.legal-card h1 { margin: 0 0 8px; color: var(--ink); font-size: clamp(32px, 5vw, 48px); line-height: 1.05; }
.legal-card h2 { margin: 34px 0 10px; color: var(--ink); font-size: 21px; }
.legal-card h3 { margin: 24px 0 8px; color: var(--ink); font-size: 16px; }
.legal-card p, .legal-card li { color: var(--text-soft); font-size: 15px; line-height: 1.75; }
.legal-card ul { margin: 10px 0 18px; padding-left: 23px; }
.legal-card a { color: var(--accent-dark); }
.legal-meta { margin: 0 0 28px; color: var(--text-soft); font-size: 13px; }
.legal-draft-notice { margin-bottom: 30px; padding: 14px 16px; border: 1px solid #e5c986; border-radius: 10px; background: #fff9e8; color: #765810; font-size: 13px; line-height: 1.55; }