:root {
  --ink: #07111f;
  --ink-soft: #0d1d31;
  --navy: #0a2540;
  --blue: #075bb8;
  --blue-bright: #0d8ee8;
  --cyan: #00d8ff;
  --mint: #00c896;
  --mint-dark: #009f79;
  --white: #ffffff;
  --surface: #f6f9fc;
  --surface-blue: #eef7ff;
  --text: #34445a;
  --muted: #6d7b90;
  --border: #dce6f1;
  --danger: #e65462;
  --warning: #f3a73b;
  --success: #16b584;
  --shadow-sm: 0 8px 24px rgba(7, 34, 67, .08);
  --shadow-md: 0 22px 64px rgba(7, 34, 67, .14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; min-width: 320px; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.12; letter-spacing: -.035em; }
p { margin-bottom: 1.1rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: 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; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; padding: 10px 16px; border-radius: 8px; background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 80px; display: flex; align-items: center; border-bottom: 1px solid transparent; transition: .25s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.92); border-color: rgba(7,34,67,.08); box-shadow: 0 8px 30px rgba(7,34,67,.06); backdrop-filter: blur(18px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-size: 20px; font-weight: 650; letter-spacing: -.035em; }
.brand img { border-radius: 11px; box-shadow: 0 8px 20px rgba(0,118,225,.19); }
.brand strong { color: var(--blue); font-weight: 750; }
.main-nav { display: flex; align-items: center; gap: 25px; font-size: 13px; font-weight: 700; letter-spacing: .025em; text-transform: uppercase; color: #1f3046; }
.main-nav > a:not(.button) { position: relative; padding: 12px 0; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 6px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transition: right .2s ease; }
.main-nav > a:not(.button):hover::after, .main-nav > a:not(.button):focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 11px; background: var(--white); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle > span:not(.sr-only) { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px; background: linear-gradient(135deg, var(--blue), #0b7ddd); color: var(--white); font-size: 15px; font-weight: 750; letter-spacing: -.01em; cursor: pointer; box-shadow: 0 12px 26px rgba(7,91,184,.2); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover:not(:disabled), .button:focus-visible:not(:disabled) { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(7,91,184,.28); }
.button:focus-visible { outline: 3px solid rgba(0,216,255,.3); outline-offset: 3px; }
.button:disabled { opacity: .52; cursor: not-allowed; box-shadow: none; }
.button-sm { min-height: 43px; padding-inline: 17px; border-radius: 9px; font-size: 12px; }
.button-ghost { background: rgba(255,255,255,.85); border-color: rgba(7,91,184,.18); color: var(--ink); box-shadow: none; }
.button-ghost:hover:not(:disabled) { background: var(--white); box-shadow: var(--shadow-sm); }
.button-outline { background: transparent; color: var(--blue); border-color: #b8d3ec; box-shadow: none; }
.button-outline:hover:not(:disabled) { background: var(--surface-blue); box-shadow: none; }
.button-light { background: var(--white); color: var(--ink); box-shadow: 0 14px 32px rgba(0,0,0,.15); }
.button-light:hover:not(:disabled) { box-shadow: 0 18px 38px rgba(0,0,0,.22); }
.button-full { width: 100%; }
.play-icon { width: 28px; height: 28px; display: grid; place-items: center; padding-left: 2px; border-radius: 50%; color: var(--blue); background: var(--surface-blue); font-size: 10px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-weight: 750; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.hero { position: relative; min-height: 790px; overflow: hidden; padding: 154px 0 110px; background: linear-gradient(120deg, #f5fbff 0%, #edf9ff 48%, #f5fffb 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: radial-gradient(circle at 1px 1px, #2c78b8 1px, transparent 0); background-size: 34px 34px; mask-image: linear-gradient(to right, #000, transparent 56%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-orb-one { width: 520px; height: 520px; right: -80px; top: 80px; background: rgba(0,216,255,.11); }
.hero-orb-two { width: 360px; height: 360px; right: 290px; bottom: -170px; background: rgba(0,200,150,.13); }
.hero-grid { position: relative; display: grid; grid-template-columns: .96fr 1.04fr; align-items: center; gap: 66px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--blue); font-size: 12px; line-height: 1.3; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { padding: 9px 13px; border: 1px solid rgba(7,91,184,.13); border-radius: 999px; background: rgba(255,255,255,.72); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(0,200,150,.12); }
.hero h1 { max-width: 660px; margin-bottom: 24px; font-size: clamp(42px, 4.15vw, 64px); font-weight: 760; }
.hero h1 span { color: var(--blue); }
.hero-copy > p { max-width: 610px; margin-bottom: 31px; font-size: 20px; line-height: 1.55; color: #4d5f75; }
.hero-copy > p strong { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 27px; color: #5c6e82; font-size: 12px; font-weight: 700; }
.hero-proof span::first-letter { color: var(--mint); }
.hero-wave { position: absolute; inset: auto 0 -1px; height: 72px; background: var(--white); clip-path: polygon(0 72%, 10% 57%, 21% 69%, 32% 46%, 44% 64%, 57% 48%, 70% 67%, 84% 48%, 100% 62%, 100% 100%, 0 100%); }

.product-stage { position: relative; min-height: 540px; display: grid; place-items: center; perspective: 1000px; }
.stage-glow { position: absolute; width: 450px; height: 450px; border-radius: 46% 54% 62% 38%; background: linear-gradient(145deg, rgba(0,216,255,.4), rgba(0,200,150,.25)); filter: blur(.3px); transform: rotate(18deg); }
.dashboard-card { position: relative; z-index: 2; width: min(100%, 590px); overflow: hidden; border: 1px solid rgba(255,255,255,.9); border-radius: 24px; background: #fff; box-shadow: 0 42px 85px rgba(0,71,135,.22); transform: rotateY(-4deg) rotateX(2deg) rotateZ(1.5deg); }
.dash-topbar { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; color: #dce9f8; background: var(--ink-soft); }
.dash-brand { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 750; }
.dash-brand img { border-radius: 7px; }
.dash-period { padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; font-size: 9px; color: #aab9cc; }
.dash-content { padding: 22px; background: #f7faff; }
.dash-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.dash-heading small { color: #8090a4; font-size: 9px; }
.dash-heading h2 { margin: 2px 0 0; font-size: 18px; }
.live-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; background: #e9fbf6; color: #168c6c; font-size: 8px; font-weight: 750; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-grid article { padding: 13px; border: 1px solid #e4ebf3; border-radius: 12px; background: white; box-shadow: 0 5px 14px rgba(7,34,67,.04); }
.metric-grid span, .metric-grid small { display: block; font-size: 8px; color: #8796a8; }
.metric-grid strong { display: block; margin: 5px 0; color: var(--ink); font-size: 15px; }
.metric-grid .up { color: var(--success); }.metric-grid .down { color: var(--blue); }
.recommendation-panel { margin-top: 12px; padding: 15px; border: 1px solid #e4ebf3; border-radius: 14px; background: white; }
.panel-title { display: flex; justify-content: space-between; padding-bottom: 10px; color: var(--ink); font-size: 10px; font-weight: 750; }
.panel-title b { padding: 3px 7px; border-radius: 5px; background: var(--surface-blue); color: var(--blue); font-size: 8px; }
.recommendation { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 9px; padding: 9px 0; border-top: 1px solid #eef2f7; }
.recommendation i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; font-size: 10px; font-style: normal; font-weight: 800; }
.recommendation div { display: grid; }
.recommendation strong { font-size: 9px; color: var(--ink); }.recommendation small { font-size: 7px; color: #8796a8; }.recommendation > span { font-size: 10px; font-weight: 800; }
.recommendation.success i { background: #e9fbf6; color: var(--success); }.recommendation.success > span { color: var(--success); }
.recommendation.warning i { background: #fff6e7; color: #d98e1d; }.recommendation.warning > span { color: #d98e1d; }
.recommendation.danger i { background: #fff0f2; color: var(--danger); }.recommendation.danger > span { color: var(--danger); }
.optimize-toast { position: absolute; z-index: 3; right: -8px; bottom: 58px; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1px solid rgba(0,200,150,.2); border-radius: 13px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-md); animation: float 4s ease-in-out infinite; }
.optimize-toast > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--mint); font-weight: 900; }
.optimize-toast div { display: grid; }.optimize-toast strong { font-size: 10px; color: var(--ink); }.optimize-toast small { font-size: 8px; color: var(--muted); }
@keyframes float { 50% { transform: translateY(-9px); } }

.section { padding: 110px 0; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 95px; }
.section-copy h2, .section-heading h2, .faq-intro h2, .amazon-section h2 { margin-bottom: 24px; font-size: clamp(34px, 3.2vw, 50px); }
.section-copy h2 span, .section-heading h2 span { color: var(--blue); }
.section-copy > p { color: #607087; font-size: 17px; line-height: 1.78; }
.insight-visual { position: relative; padding: 38px; border-radius: var(--radius-lg); background: linear-gradient(145deg, #eaf7ff, #ecfff8); }
.mini-window { overflow: hidden; border: 1px solid #dce8f3; border-radius: 20px; background: white; box-shadow: var(--shadow-md); }
.window-bar { display: flex; align-items: center; gap: 6px; padding: 14px 18px; border-bottom: 1px solid #e7edf4; color: var(--muted); font-size: 10px; }
.window-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #d6dfe9; }.window-bar > span:first-child { background: #ff6b75; }.window-bar > span:nth-child(2) { background: #ffc65b; }.window-bar > span:nth-child(3) { background: #32cf9e; }.window-bar b { margin-left: auto; }
.window-body { display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 28px; padding: 30px; }
.score-ring { width: 126px; height: 126px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: radial-gradient(circle, white 58%, transparent 60%), conic-gradient(var(--mint) 0 86%, #e8eef5 86%); }
.score-ring strong { color: var(--ink); font-size: 34px; line-height: 1; }.score-ring span { color: var(--muted); font-size: 9px; }
.window-stats { display: grid; gap: 15px; }.window-stats div { display: flex; justify-content: space-between; gap: 15px; padding-bottom: 11px; border-bottom: 1px solid #edf1f5; font-size: 11px; }.window-stats span { color: var(--muted); }.window-stats strong { color: var(--ink); }
.window-action { display: grid; gap: 5px; padding: 18px 22px; background: var(--ink-soft); color: #d4e3f3; }.window-action span { color: var(--cyan); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }.window-action strong { font-size: 11px; line-height: 1.5; }

.performance-section { color: #dbe9f7; background: var(--ink); }
.performance-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 90px; }
.light-copy h2 { color: white; }.light-copy > p { color: #9fb1c6; }
.performance-card { padding: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; background: linear-gradient(150deg, #11243a, #0b1727); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.chart-head { display: flex; align-items: flex-start; justify-content: space-between; }.chart-head div { display: grid; }.chart-head span { color: #8fa5bc; font-size: 11px; }.chart-head strong { color: white; font-size: 29px; }.chart-head b { padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; font-size: 9px; font-weight: 600; }
.bars { height: 240px; display: flex; align-items: end; gap: 14px; margin-top: 28px; padding: 0 5px; border-bottom: 1px solid rgba(255,255,255,.1); background: repeating-linear-gradient(to top, rgba(255,255,255,.05), rgba(255,255,255,.05) 1px, transparent 1px, transparent 60px); }
.bars i { flex: 1; height: var(--h); min-height: 12px; border-radius: 5px 5px 0 0; background: linear-gradient(to top, var(--blue), var(--cyan)); box-shadow: 0 0 18px rgba(0,216,255,.1); }
.bars .bar-1 { --h: 32%; }.bars .bar-2 { --h: 42%; }.bars .bar-3 { --h: 38%; }.bars .bar-4 { --h: 52%; }.bars .bar-5 { --h: 49%; }
.bars .bar-6 { --h: 68%; }.bars .bar-7 { --h: 61%; }.bars .bar-8 { --h: 78%; }.bars .bar-9 { --h: 73%; }.bars .bar-10 { --h: 91%; }
.chart-labels { display: flex; justify-content: space-between; margin-top: 13px; color: #70849a; font-size: 8px; }
.check-list { display: grid; gap: 14px; margin: 26px 0 0; padding: 0; list-style: none; color: #d6e3f0; font-weight: 650; }.check-list li { display: flex; align-items: center; gap: 11px; }.check-list span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: rgba(0,200,150,.13); color: var(--mint); font-size: 11px; }

.functions-section { background: var(--surface); }
.section-heading { max-width: 780px; margin-bottom: 52px; }.section-heading.centered { margin-inline: auto; text-align: center; }.section-heading p { color: var(--muted); font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { position: relative; min-height: 260px; padding: 28px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: 0 8px 24px rgba(7,34,67,.035); transition: transform .25s, box-shadow .25s, border-color .25s; }
.feature-card:hover { transform: translateY(-5px); border-color: #bdd9ed; box-shadow: var(--shadow-sm); }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 13px; background: var(--surface-blue); color: var(--blue); font-size: 19px; font-weight: 850; }
.feature-card h3 { margin-bottom: 12px; font-size: 20px; }.feature-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }.feature-card.feature-primary { color: #d9eafb; border-color: transparent; background: linear-gradient(145deg, #0b2a48, #07111f); }.feature-primary h3 { color: white; }.feature-primary p { color: #9eb4c9; }.feature-primary .feature-icon { background: rgba(0,216,255,.12); color: var(--cyan); }.feature-tag { position: absolute; top: 26px; right: 26px; padding: 5px 8px; border-radius: 999px; background: rgba(0,200,150,.13); color: var(--mint); font-size: 8px; font-weight: 800; text-transform: uppercase; }

.video-section { background: white; }
.video-grid { display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: 95px; }
.steps-list { display: grid; gap: 16px; margin: 30px 0 0; padding: 0; list-style: none; }.steps-list li { display: flex; align-items: center; gap: 14px; }.steps-list li > b { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; background: var(--surface-blue); color: var(--blue); }.steps-list span { display: grid; }.steps-list strong { color: var(--ink); }.steps-list small { color: var(--muted); }
.video-placeholder { position: relative; aspect-ratio: 16/9; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 25px; background: radial-gradient(circle at 70% 30%, rgba(0,216,255,.18), transparent 34%), linear-gradient(145deg, #102942, #07111f); box-shadow: var(--shadow-md); }
.video-placeholder::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.14) 1px, transparent 0); background-size: 24px 24px; mask-image: linear-gradient(135deg, #000, transparent 72%); }
.video-top { position: absolute; z-index: 1; inset: 20px 22px auto; display: flex; justify-content: space-between; color: #d9e7f5; font-size: 11px; font-weight: 700; }.video-top small { padding: 4px 8px; border-radius: 999px; background: rgba(0,200,150,.14); color: var(--mint); }
.video-placeholder button { position: relative; z-index: 1; width: 80px; height: 80px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.1); color: white; backdrop-filter: blur(8px); }.video-placeholder button span { font-size: 23px; margin-left: 5px; }.video-placeholder p { position: absolute; z-index: 1; bottom: 22%; margin: 0; color: #8da4ba; font-size: 11px; }

.amazon-section { padding: 92px 0; background: linear-gradient(100deg, #ebf8ff, #edfff9); }
.amazon-grid { display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 80px; }.amazon-grid > div:first-child > p { max-width: 720px; color: #607087; font-size: 17px; }.amazon-section .button { margin-top: 8px; }
.marketplace-card { min-height: 270px; display: grid; place-items: center; align-content: center; gap: 18px; border: 1px solid rgba(7,91,184,.12); border-radius: 26px; background: rgba(255,255,255,.85); box-shadow: var(--shadow-sm); }.marketplace-card > span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }.marketplace-card > small { color: var(--muted); }
.amazon-wordmark { position: relative; display: flex; align-items: baseline; gap: 9px; padding-bottom: 18px; color: #111820; line-height: 1; }.amazon-wordmark strong { font-size: 46px; letter-spacing: -.055em; }.amazon-wordmark b { font-size: 30px; font-weight: 500; }.amazon-wordmark i { position: absolute; left: 25px; bottom: 2px; width: 130px; height: 18px; border-bottom: 5px solid #ff9900; border-radius: 0 0 70% 60%; transform: rotate(2deg); }.amazon-wordmark i::after { content: ""; position: absolute; right: -3px; bottom: -6px; border-left: 10px solid #ff9900; border-top: 5px solid transparent; border-bottom: 5px solid transparent; transform: rotate(14deg); }

.trial-section { padding-bottom: 50px; }.trial-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; padding: 42px 48px; border-radius: 28px; background: linear-gradient(135deg, #075bb8, #063d79); color: #dcecff; box-shadow: 0 28px 70px rgba(7,91,184,.24); }.trial-card h2 { margin-bottom: 12px; color: white; font-size: 34px; }.trial-card p { margin: 0; color: #c2d8ec; }.trial-badge { width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(255,255,255,.09); }.trial-badge strong { color: white; font-size: 50px; line-height: 1; }.trial-badge span { color: var(--cyan); font-size: 12px; font-weight: 800; line-height: 1.1; text-transform: uppercase; }.trial-copy .section-kicker { margin-bottom: 8px; color: var(--cyan); }.notice { margin-top: 17px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(0,0,0,.12); color: #bfd3e6; font-size: 11px; }.notice strong { color: white; }

.pricing-section { background: white; }.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; gap: 17px; }.price-card { position: relative; display: flex; flex-direction: column; padding: 28px 23px; border: 1px solid var(--border); border-radius: 20px; background: white; box-shadow: 0 8px 26px rgba(7,34,67,.04); }.price-card.price-featured { border: 2px solid var(--blue); box-shadow: 0 18px 45px rgba(7,91,184,.16); transform: translateY(-10px); }.popular { position: absolute; top: -14px; left: 50%; padding: 6px 12px; transform: translateX(-50%); border-radius: 999px; background: var(--blue); color: white; font-size: 9px; font-weight: 800; white-space: nowrap; text-transform: uppercase; }.plan-label { color: var(--blue); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }.price-card h3 { min-height: 40px; margin: 7px 0 20px; font-size: 16px; }.price { display: flex; align-items: flex-start; margin-bottom: 22px; color: var(--ink); }.price small { margin: 9px 5px 0 0; font-size: 13px; }.price strong { font-size: 47px; line-height: 1; letter-spacing: -.06em; }.price span { align-self: end; margin: 0 0 4px 7px; color: var(--muted); font-size: 11px; }.price-card ul { display: grid; gap: 11px; flex: 1; margin: 0 0 26px; padding: 19px 0 0; border-top: 1px solid #edf1f5; list-style: none; color: #56677b; font-size: 12px; }.price-card li::first-letter { color: var(--mint); }.price-card .button { min-height: 46px; font-size: 13px; }.pricing-note { margin: 25px 0 0; text-align: center; color: var(--muted); font-size: 12px; }

.faq-section { background: var(--surface); }.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 85px; }.faq-intro { position: sticky; top: 115px; }.faq-intro p { color: var(--muted); }.accordion { display: grid; gap: 12px; }.accordion article { overflow: hidden; border: 1px solid var(--border); border-radius: 14px; background: white; }.accordion button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 750; cursor: pointer; }.accordion button i { width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 8px; background: var(--surface-blue); color: var(--blue); font-style: normal; transition: transform .2s; }.accordion article > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }.accordion article > div > p { min-height: 0; overflow: hidden; margin: 0; padding: 0 22px; color: var(--muted); font-size: 14px; transition: padding .3s; }.accordion article.is-open > div { grid-template-rows: 1fr; }.accordion article.is-open > div > p { padding: 0 22px 21px; }.accordion article.is-open button i { transform: rotate(45deg); }

.final-cta { padding: 85px 0; background: var(--ink); }.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 70px; }.final-cta-inner > div { max-width: 750px; }.final-cta span { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }.final-cta h2 { margin: 7px 0 12px; color: white; font-size: clamp(33px, 3.3vw, 48px); }.final-cta p { margin: 0; color: #99aec3; }.final-cta .button span { color: inherit; font-size: inherit; letter-spacing: 0; }
.site-footer { padding: 72px 0 26px; color: #91a3b6; background: #050c15; }.footer-grid { display: grid; grid-template-columns: 1.7fr .7fr .8fr 1fr; gap: 55px; }.footer-brand { color: white; }.footer-grid > div:first-child p { max-width: 330px; margin-top: 18px; font-size: 13px; }.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 10px; }.footer-grid h3 { margin-bottom: 8px; color: white; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }.footer-grid a:not(.brand):not(.button) { font-size: 13px; }.footer-grid a:not(.brand):not(.button):hover { color: white; }.footer-bottom { display: flex; justify-content: space-between; gap: 40px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }.footer-bottom span:last-child { max-width: 650px; text-align: right; }

/* Autenticação */
.auth-page { min-height: 100vh; background: var(--surface); }.auth-shell { min-height: 100vh; display: grid; grid-template-columns: minmax(400px, .92fr) minmax(480px, 1.08fr); }.auth-brand-panel { position: relative; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 46px clamp(38px, 5vw, 82px); color: #a8bdd1; background: radial-gradient(circle at 72% 28%, rgba(0,216,255,.16), transparent 27%), radial-gradient(circle at 15% 85%, rgba(0,200,150,.1), transparent 31%), var(--ink); }.auth-brand-panel::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .14; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 30px 30px; mask-image: linear-gradient(135deg, black, transparent 70%); }.auth-brand-panel > * { position: relative; z-index: 1; }.brand-light { color: white; }.auth-brand-panel > div:nth-child(2) { max-width: 580px; }.auth-brand-panel h1 { margin: 14px 0 20px; color: white; font-size: clamp(39px, 4vw, 59px); }.auth-brand-panel p { max-width: 560px; font-size: 17px; }.auth-brand-panel .eyebrow { color: var(--cyan); border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.05); }.auth-mini-card, .selected-plan-card { display: grid; width: min(100%, 480px); gap: 4px; padding: 19px 21px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }.auth-mini-card span, .selected-plan-card span { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.auth-mini-card strong, .selected-plan-card strong { color: white; font-size: 17px; }.auth-mini-card small, .selected-plan-card small { color: #8198ae; }.auth-benefits { display: grid; gap: 13px; padding: 0; list-style: none; color: #ceddec; font-weight: 650; }
.auth-form-panel { display: grid; place-items: center; padding: 50px 30px; background: white; }.auth-form-wrap { width: min(100%, 430px); }.register-wrap { width: min(100%, 560px); }.back-link { display: inline-flex; margin-bottom: 48px; color: var(--muted); font-size: 13px; font-weight: 650; }.back-link:hover { color: var(--blue); }.auth-heading > span { color: var(--blue); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }.auth-heading h1 { margin: 7px 0 10px; font-size: 38px; }.auth-heading p { margin-bottom: 30px; color: var(--muted); }.form { display: grid; gap: 18px; }.form label { display: grid; gap: 7px; }.form label > span { color: var(--ink); font-size: 12px; font-weight: 750; }.form input:not([type="checkbox"]) { width: 100%; min-height: 51px; padding: 0 14px; border: 1px solid var(--border); border-radius: 11px; outline: none; color: var(--ink); background: white; transition: border .2s, box-shadow .2s; }.form input::placeholder { color: #9aa8b6; }.form input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(7,91,184,.09); }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.terms-check { display: grid !important; grid-template-columns: 18px 1fr; align-items: start; gap: 10px !important; }.terms-check input { width: 17px; height: 17px; margin: 3px 0 0; accent-color: var(--blue); }.terms-check span { color: var(--muted) !important; font-weight: 500 !important; }.terms-check a, .auth-switch a { color: var(--blue); font-weight: 750; }.auth-switch { margin: 23px 0 0; text-align: center; color: var(--muted); font-size: 13px; }.form-alert { margin-bottom: 18px; padding: 13px 15px; border: 1px solid #f2c9ce; border-radius: 11px; background: #fff5f6; color: #a83e49; font-size: 13px; }.form-alert.success { border-color: #bde9dc; background: #effbf7; color: #14795d; }.form-alert .license-result { display: grid; gap: 7px; margin-top: 10px; padding: 13px; border: 1px dashed #78cdb5; border-radius: 9px; background: white; }.form-alert .license-result strong { color: var(--ink); font-size: 15px; letter-spacing: .04em; word-break: break-all; }

/* Painel */
.panel-page { min-height: 100vh; background: #f3f7fb; }.panel-header { height: 74px; display: flex; align-items: center; border-bottom: 1px solid var(--border); background: white; }.panel-header-inner { display: flex; align-items: center; justify-content: space-between; }.panel-user { display: flex; align-items: center; gap: 16px; color: var(--ink); font-size: 13px; font-weight: 650; }.panel-user button { border: 0; background: transparent; color: var(--muted); cursor: pointer; }.panel-user button:hover { color: var(--danger); }.panel-main { padding: 52px 0 90px; }.panel-welcome { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 35px; }.panel-welcome > div > span, .panel-card-head > div > span { color: var(--blue); font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }.panel-welcome h1 { margin: 5px 0 7px; font-size: 41px; }.panel-welcome p { margin: 0; color: var(--muted); }.panel-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; margin-bottom: 18px; }.panel-stat-grid article, .panel-card { border: 1px solid var(--border); border-radius: 17px; background: white; box-shadow: 0 7px 20px rgba(7,34,67,.035); }.panel-stat-grid article { display: grid; gap: 5px; padding: 23px; }.panel-stat-grid span { color: var(--muted); font-size: 10px; font-weight: 700; }.panel-stat-grid strong { color: var(--ink); font-size: 25px; }.panel-stat-grid small { color: #8190a2; font-size: 9px; }.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }.panel-card { padding: 26px; }.panel-card-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 23px; }.panel-card-head h2 { margin: 5px 0 0; font-size: 21px; }.panel-card-head > b { padding: 6px 9px; border-radius: 999px; background: #edfaf6; color: var(--success); font-size: 9px; text-transform: uppercase; }.panel-card-head .coming-badge { color: #b1761c; background: #fff6e7; }.license-key-display { display: grid; gap: 5px; padding: 18px; border: 1px solid #d7e8f7; border-radius: 12px; background: var(--surface-blue); }.license-key-display span, .license-meta span { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }.license-key-display strong { color: var(--ink); font-size: 20px; letter-spacing: .06em; }.license-key-display small { color: var(--muted); font-size: 9px; }.license-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 13px; }.license-meta div { display: grid; gap: 3px; }.license-meta strong { color: var(--ink); font-size: 12px; }.panel-card > p { color: var(--muted); font-size: 13px; }.panel-hint { display: block; margin-top: 13px; color: var(--muted); font-size: 9px; }.analyses-card { margin-top: 0; }.analysis-list { display: grid; gap: 9px; }.analysis-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; padding: 14px 15px; border: 1px solid #e7edf3; border-radius: 11px; }.analysis-item > div { display: grid; }.analysis-item strong { color: var(--ink); font-size: 12px; }.analysis-item small { color: var(--muted); font-size: 9px; }.analysis-item > span { color: var(--blue); font-size: 10px; font-weight: 750; }.empty-state { margin: 0; padding: 22px; border: 1px dashed var(--border); border-radius: 11px; color: var(--muted); text-align: center; font-size: 12px; }.panel-alert { margin-bottom: 18px; padding: 13px; border-radius: 11px; background: #fff3f4; color: #a33b47; font-size: 12px; }

/* Documento legal */
.legal-page { background: var(--surface); }.legal-header { padding: 20px 0; border-bottom: 1px solid var(--border); background: white; }.legal-header .container { display: flex; align-items: center; justify-content: space-between; }.legal-header .back-link { margin: 0; }.legal-main { padding: 65px 0 85px; }.legal-document { width: min(calc(100% - 40px), 900px); padding: 55px 64px; border: 1px solid var(--border); border-radius: 22px; background: white; box-shadow: var(--shadow-sm); }.legal-document > header { margin-bottom: 45px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }.legal-document > header > span { color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }.legal-document h1 { margin: 8px 0; font-size: 46px; }.legal-document > header p { color: var(--muted); font-size: 12px; }.legal-document section { margin-top: 36px; }.legal-document h2 { margin-bottom: 14px; font-size: 21px; }.legal-document p, .legal-document li { color: #586a7f; font-size: 14px; line-height: 1.8; }.legal-document ul { padding-left: 22px; }.legal-footer { padding: 24px 0; color: #91a3b6; background: var(--ink); font-size: 11px; }

@media (max-width: 1080px) {
  .main-nav { gap: 16px; font-size: 11px; }
  .hero-grid { gap: 35px; }.hero h1 { font-size: 47px; }.product-stage { transform: scale(.94); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }.price-card.price-featured { transform: none; }
  .auth-shell { grid-template-columns: .9fr 1.1fr; }.auth-brand-panel { padding-inline: 42px; }
}

@media (max-width: 900px) {
  .site-header { height: 70px; }.menu-toggle { display: flex; z-index: 102; }.main-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 4px; padding: 85px 30px 35px; opacity: 0; visibility: hidden; transform: translateY(-12px); background: rgba(255,255,255,.98); font-size: 14px; transition: .22s ease; }.main-nav.is-open { opacity: 1; visibility: visible; transform: none; }.main-nav > a:not(.button) { padding: 13px 4px; text-align: center; }.main-nav .button { margin-top: 10px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 125px; }.hero-grid, .split-layout, .performance-grid, .video-grid, .amazon-grid { grid-template-columns: 1fr; }.hero-grid { text-align: center; }.hero-copy { display: grid; justify-items: center; }.hero h1 { font-size: clamp(40px, 8vw, 57px); }.hero-actions, .hero-proof { justify-content: center; }.product-stage { margin-top: 15px; transform: none; }.split-layout, .performance-grid, .video-grid, .amazon-grid { gap: 55px; }.feature-grid { grid-template-columns: repeat(2, 1fr); }.trial-card { grid-template-columns: auto 1fr; }.trial-card > .button { grid-column: 1 / -1; }.faq-grid { grid-template-columns: 1fr; gap: 35px; }.faq-intro { position: static; }.final-cta-inner { align-items: flex-start; flex-direction: column; gap: 28px; }.footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }.footer-grid > div:last-child { grid-column: 1 / -1; }
  .auth-shell { grid-template-columns: 1fr; }.auth-brand-panel { min-height: 430px; gap: 45px; }.auth-brand-panel h1 { font-size: 42px; }.auth-form-panel { padding-block: 65px; }
  .panel-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }.section { padding: 78px 0; }
  .hero { min-height: auto; padding: 112px 0 72px; }.hero h1 { font-size: 38px; }.hero-copy > p { font-size: 17px; }.hero-actions { width: 100%; }.hero-actions .button { width: 100%; }.hero-proof { display: grid; gap: 8px; }.product-stage { min-height: 390px; margin: 25px -25px 0; transform: scale(.89); }.dashboard-card { transform: none; }.stage-glow { width: 330px; height: 330px; }.optimize-toast { right: 10px; bottom: 16px; }.metric-grid { grid-template-columns: repeat(3, 1fr); }.metric-grid article { padding: 9px; }.metric-grid strong { font-size: 12px; }
  .section-copy h2, .section-heading h2, .faq-intro h2, .amazon-section h2 { font-size: 34px; }.insight-visual { padding: 17px; }.window-body { grid-template-columns: 1fr; }.score-ring { margin: auto; }.performance-card { padding: 19px; }.bars { height: 190px; gap: 7px; }.feature-grid, .pricing-grid { grid-template-columns: 1fr; }.feature-card { min-height: 230px; }.video-placeholder { border-radius: 18px; }.amazon-grid { text-align: center; }.amazon-grid > div:first-child { display: grid; justify-items: center; }.amazon-wordmark strong { font-size: 38px; }.amazon-wordmark b { font-size: 25px; }
  .trial-card { grid-template-columns: 1fr; padding: 30px 24px; text-align: center; }.trial-badge { margin: auto; }.trial-card .button { width: 100%; }.price-card { padding: 26px; }.accordion button { padding: 18px; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }.footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; gap: 10px; }.footer-bottom span:last-child { text-align: left; }
  .auth-brand-panel { min-height: 400px; padding: 32px 24px; }.auth-brand-panel h1 { font-size: 34px; }.auth-mini-card, .selected-plan-card { display: none; }.auth-form-panel { padding: 45px 20px; }.back-link { margin-bottom: 35px; }.auth-heading h1 { font-size: 32px; }.form-row { grid-template-columns: 1fr; }
  .panel-header .brand span { display: none; }.panel-main { padding-top: 36px; }.panel-welcome { align-items: flex-start; flex-direction: column; }.panel-welcome .button { width: 100%; }.panel-stat-grid, .panel-grid { grid-template-columns: 1fr; }.panel-stat-grid article { padding: 20px; }.panel-user > span { display: none; }.legal-header .brand span { display: none; }.legal-main { padding: 28px 0 55px; }.legal-document { padding: 32px 21px; }.legal-document h1 { font-size: 35px; }
}

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