:root {
  --ink: #121a1e;
  --muted: #6d777b;
  --paper: #f7f5f0;
  --white: #fff;
  --orange: #ff5c35;
  --orange-dark: #e74622;
  --aqua: #b9f0e7;
  --line: #dfe2df;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "DM Sans", "Noto Sans SC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.noise { position: fixed; inset: 0; opacity: .035; pointer-events: none; z-index: 99; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }

.site-header { height: 76px; padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(18,26,30,.08); background: rgba(247,245,240,.88); backdrop-filter: blur(14px); position: fixed; top: 0; width: 100%; z-index: 50; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 19px; letter-spacing: -.5px; }
.brand-mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: var(--ink); }
.brand-mark svg { width: 27px; fill: var(--orange); }
.desktop-nav { display: flex; gap: clamp(22px, 3vw, 46px); font-size: 14px; font-weight: 600; }
.desktop-nav a { transition: color .2s; }
.desktop-nav a:hover { color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 600; }
.lang-switcher { position: relative; }
.lang-button { border: 0; background: transparent; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.lang-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.lang-button .chevron { width: 11px; stroke-width: 2.4; transition: transform .2s; }
.lang-switcher.open .lang-button .chevron { transform: rotate(180deg); }
.lang-menu { position: absolute; top: calc(100% + 14px); right: 0; z-index: 60; min-width: 190px; margin: 0; padding: 8px; list-style: none; border: 1px solid var(--line); border-radius: 10px; background: white; box-shadow: 0 20px 45px rgba(18,26,30,.14); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .18s, transform .18s, visibility .18s; }
.lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li { padding: 10px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .15s, color .15s; }
.lang-menu li:hover { background: #f4f1ea; }
.lang-menu li[aria-selected="true"] { color: var(--orange); background: #fff0eb; }
.mobile-lang { display: flex; gap: 10px; }
.mobile-lang button { flex: 1; padding: 10px 0; border: 1px solid var(--line); border-radius: 6px; background: transparent; font-size: 12px; font-weight: 700; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.mobile-lang button[aria-pressed="true"] { border-color: var(--orange); background: var(--orange); color: white; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 14px; border: 0; border-radius: 5px; padding: 16px 24px; background: var(--ink); color: white; font-size: 14px; font-weight: 700; transition: transform .25s, box-shadow .25s, background .25s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(18,26,30,.16); }
.button-small { padding: 11px 20px; background: var(--orange); }
.button-small:hover, .button-primary:hover { background: var(--orange-dark); }
.menu-button { display: none; padding: 5px; border: 0; background: none; }
.menu-button span { display: block; width: 23px; height: 2px; margin: 5px 0; background: var(--ink); }
.mobile-menu { display: none; }

.hero { position: relative; min-height: 830px; padding: 150px 7vw 90px; display: grid; grid-template-columns: 48% 52%; align-items: center; overflow: hidden; }
.hero-copy { position: relative; z-index: 3; max-width: 690px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.eyebrow span:first-child { width: 32px; height: 2px; background: var(--orange); }
h1 { margin: 24px 0 28px; font-size: clamp(58px, 6.3vw, 104px); line-height: .95; letter-spacing: -6px; font-weight: 900; }
h1 em, h2 em { color: var(--orange); font-family: var(--serif); font-weight: 400; }
.hero-description { max-width: 580px; color: var(--muted); font-size: 18px; line-height: 1.8; }
.hero-cta { margin: 37px 0 44px; display: flex; align-items: center; gap: 28px; }
.button-primary { min-width: 185px; padding: 18px 24px; background: var(--orange); }
.watch-link { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.play { width: 34px; height: 34px; display: grid; place-items: center; padding-left: 2px; border: 1px solid #bdc2bf; border-radius: 50%; font-size: 10px; }
.hero-proof { display: flex; align-items: center; gap: 17px; }
.hero-proof > div:not(.avatars):not(.proof-line) { display: flex; flex-direction: column; gap: 3px; }
.hero-proof strong { font-size: 14px; }
.hero-proof small { color: var(--muted); font-size: 11px; }
.avatars { display: flex; }
.avatars span { width: 36px; height: 36px; margin-left: -8px; display: grid; place-items: center; color: white; border: 2px solid var(--paper); border-radius: 50%; background: var(--avatar); font-size: 11px; font-weight: 800; }
.avatars span:first-child { margin-left: 0; }
.proof-line { width: 1px; height: 35px; background: var(--line); }
.stars { margin-left: 4px; color: var(--orange); font-size: 9px; letter-spacing: 0; }

.hero-visual { position: relative; height: 610px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 540px; height: 540px; top: 110px; right: -100px; background: var(--aqua); }
.orb-two { width: 210px; height: 210px; bottom: -50px; left: 44%; background: #ffdfc6; opacity: .65; }
.phone { position: absolute; width: 268px; height: 550px; padding: 8px; border: 3px solid #121819; border-radius: 37px; background: #111718; box-shadow: 0 35px 60px rgba(18,26,30,.2); overflow: hidden; }
.phone-front { z-index: 3; left: 28%; top: 8px; transform: rotate(3deg); }
.phone-back { z-index: 1; left: 5%; top: 70px; transform: rotate(-10deg); opacity: .82; }
.phone-speaker { position: absolute; z-index: 5; top: 13px; left: 50%; width: 70px; height: 19px; transform: translateX(-50%); border-radius: 12px; background: #111718; }
.phone-screen { position: relative; height: 100%; border-radius: 28px; overflow: hidden; color: white; background: #263e40; }
.front-screen { background: linear-gradient(#8bbdbf 0 40%, #657d5e 40% 54%, #b67447 54%); }
.douyin-top { position: relative; z-index: 3; padding: 24px 38px 0; display: flex; justify-content: space-between; font-size: 9px; }
.douyin-top strong { border-bottom: 2px solid white; padding-bottom: 4px; }
.video-scene { position: absolute; inset: 0; overflow: hidden; }
.sun { position: absolute; top: 100px; right: 35px; width: 60px; height: 60px; border-radius: 50%; background: #fdd791; box-shadow: 0 0 35px #fdd791; }
.mountain { position: absolute; bottom: 200px; width: 0; height: 0; border-style: solid; }
.mountain-one { left: -60px; border-width: 0 180px 200px; border-color: transparent transparent #49685c; }
.mountain-two { right: -90px; border-width: 0 200px 245px; border-color: transparent transparent #304f4d; }
.traveler { position: absolute; bottom: 175px; left: 128px; font-size: 55px; color: #182b2a; transform: rotate(180deg); }
.video-info { position: absolute; z-index: 3; left: 15px; right: 55px; bottom: 44px; text-shadow: 0 2px 5px #000; font-size: 9px; }
.video-info strong { font-size: 12px; }
.video-info p { margin: 8px 0; line-height: 1.4; }
.video-actions, .side-icons { position: absolute; z-index: 4; right: 10px; bottom: 65px; display: flex; flex-direction: column; gap: 14px; text-align: center; }
.video-actions span, .side-icons span { font-size: 19px; text-shadow: 0 2px 4px #000; }
.video-actions small, .side-icons small { display: block; margin-top: 2px; font-size: 7px; }
.back-screen { background: linear-gradient(145deg, #3c5354, #132222 70%); }
.creator-mini { margin: 20px; font-size: 10px; }
.video-caption { position: absolute; bottom: 35px; left: 18px; font-size: 10px; line-height: 1.7; }
.float-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 13px; border: 1px solid rgba(18,26,30,.08); border-radius: 10px; background: rgba(255,255,255,.94); box-shadow: 0 15px 40px rgba(18,26,30,.14); backdrop-filter: blur(8px); }
.float-card small { display: block; color: var(--muted); font-size: 9px; }
.float-card strong { display: block; margin-top: 4px; font-size: 17px; }
.earnings-card { right: 1%; top: 75px; padding: 15px 18px; }
.float-icon { width: 36px; height: 36px; display: grid; place-items: center; color: white; border-radius: 50%; background: var(--orange); font-weight: 800; font-size: 15px; letter-spacing: -0.5px; }
.up { position: absolute; right: 12px; top: 12px; color: #2a9a70; font-size: 8px; }
.live-card { right: -2%; bottom: 90px; padding: 15px 18px; }
.live-dot { align-self: flex-start; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px #ffe4dc; }
.live-card svg { width: 80px; height: 30px; fill: none; stroke: var(--orange); stroke-width: 2; }
.market-tag { position: absolute; z-index: 5; left: -1%; bottom: 85px; display: flex; gap: 9px; align-items: center; padding: 10px 15px; border-radius: 9px; background: var(--ink); color: white; box-shadow: 0 12px 30px rgba(18,26,30,.22); }
.market-tag > span { font-size: 23px; }
.market-tag small, .market-tag strong { display: block; font-size: 8px; }
.market-tag small { color: #aeb7b8; margin-bottom: 2px; }
.scroll-cue { position: absolute; bottom: 32px; left: 7vw; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 9px; letter-spacing: 2px; writing-mode: vertical-rl; }
.scroll-cue span:first-child { width: 1px; height: 35px; background: var(--ink); }

.trust-strip { padding: 28px 7vw; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 6vw; background: #eeece6; }
.trust-strip p { color: var(--muted); font-size: 11px; }
.trust-items { flex: 1; display: flex; justify-content: space-between; color: #445054; font-size: 12px; font-weight: 700; }
.trust-items b { margin-right: 8px; font-size: 16px; }

.section { padding: 120px 7vw; }
.section-heading { max-width: 670px; }
.section-heading h2, .dashboard-copy h2 { margin: 18px 0 20px; font-size: clamp(42px, 4.5vw, 68px); line-height: 1.08; letter-spacing: -3px; }
.section-heading p, .dashboard-copy > p { color: var(--muted); line-height: 1.8; }
.process { background: white; }
.steps { margin-top: 70px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 28px; }
.step-card { min-height: 300px; padding: 34px; position: relative; border-top: 1px solid var(--ink); background: #f7f6f2; transition: transform .3s, box-shadow .3s; }
.step-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(18,26,30,.08); }
.step-number { position: absolute; right: 28px; top: 24px; color: #c8cbc7; font-family: var(--serif); font-size: 36px; font-style: italic; }
.step-icon { width: 55px; height: 55px; margin-bottom: 60px; display: grid; place-items: center; border-radius: 50%; background: #ffddd1; color: var(--orange); font-size: 24px; }
.step-card h3 { margin: 0 0 14px; font-size: 20px; }
.step-card p { color: var(--muted); font-size: 13px; line-height: 1.8; }
.step-arrow { color: #a5aaa8; font-size: 25px; }

.ai-editing { display: grid; grid-template-columns: 44% 52%; align-items: center; gap: 4%; background: white; }
.ai-editing-copy ul { padding: 0; margin: 30px 0 34px; list-style: none; }
.ai-feature-list li { display: flex; align-items: center; margin: 14px 0; color: var(--ink); font-size: 14px; font-weight: 600; }
.ai-feature-list li span:first-child { display: inline-grid; place-items: center; width: 26px; height: 26px; margin-right: 12px; border-radius: 50%; background: #fff0eb; color: var(--orange); font-size: 12px; }
.ai-editing-visual { display: flex; justify-content: center; }
.ai-timeline-card { width: 100%; max-width: 460px; padding: 26px; border-radius: 16px; background: #14201f; color: white; box-shadow: 0 35px 70px rgba(18,26,30,.22); }
.ai-timeline-top { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 700; }
.ai-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 20px; background: rgba(255,92,53,.16); color: var(--orange); }
.ai-progress-label { color: #9aa7a6; }
.ai-progress-bar { height: 5px; margin: 14px 0 22px; border-radius: 3px; background: rgba(255,255,255,.1); overflow: hidden; }
.ai-progress-fill { width: 92%; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--orange), #ff9466); }
.ai-timeline-track { display: flex; gap: 6px; height: 46px; }
.ai-clip-marker { flex: 1; display: flex; align-items: center; justify-content: center; border-radius: 6px; background: rgba(255,255,255,.06); border: 1px dashed rgba(255,146,102,.4); color: #ffb99c; font-size: 9px; text-align: center; padding: 4px; }
.ai-timeline-thumbs { display: flex; gap: 6px; margin: 10px 0 22px; }
.ai-thumb { flex: 1; height: 34px; border-radius: 5px; background: linear-gradient(160deg, #35504c, #1c2b29); }
.ai-thumb.active { outline: 2px solid var(--orange); outline-offset: 2px; }
.ai-output-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.ai-output-item small { display: block; margin-bottom: 6px; color: #8b9695; font-size: 9px; }
.ai-output-item strong { display: block; font-size: 12px; font-weight: 700; line-height: 1.5; }

.dashboard-section { display: grid; grid-template-columns: 58% 35%; align-items: center; gap: 7%; background: #172124; color: white; overflow: hidden; }
.dashboard-shell { min-width: 720px; border-radius: 13px; background: #f7f7f5; color: var(--ink); box-shadow: 0 35px 70px rgba(0,0,0,.3); overflow: hidden; }
.dashboard-top { height: 55px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e6e8e5; background: white; }
.dashboard-brand { color: var(--orange); font-weight: 900; }
.dashboard-brand span { color: var(--ink); font-size: 10px; }
.dashboard-search { width: 250px; padding: 9px 12px; border-radius: 5px; background: #f2f3f1; color: #9ba09e; font-size: 8px; }
.dashboard-user { font-size: 10px; }
.dashboard-user span { display: inline-grid; place-items: center; width: 27px; height: 27px; margin-left: 8px; border-radius: 50%; background: var(--orange); color: white; }
.dashboard-body { display: grid; grid-template-columns: 130px 1fr; min-height: 450px; }
.dashboard-nav { padding: 35px 18px; display: flex; flex-direction: column; gap: 25px; border-right: 1px solid #e6e8e5; color: #858c8c; font-size: 9px; }
.dashboard-nav strong { margin: -9px -10px 0; padding: 10px; border-radius: 4px; background: #fff0eb; color: var(--orange); }
.dashboard-content { padding: 28px; }
.dash-welcome { display: flex; justify-content: space-between; align-items: center; }
.dash-welcome small { color: #7d8585; font-size: 8px; }
.dash-welcome h3 { margin: 3px 0 0; font-size: 17px; }
.dash-welcome button { border: 0; padding: 9px 14px; border-radius: 4px; background: var(--orange); color: white; font-size: 8px; }
.metrics { margin: 22px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metrics > div { padding: 16px; border: 1px solid #e4e6e3; border-radius: 7px; background: white; }
.metrics small, .metrics strong { display: block; }
.metrics small { color: #89908f; font-size: 8px; }
.metrics strong { margin: 8px 0; font-size: 21px; }
.metrics span { color: #23966c; font-size: 7px; }
.chart-card { padding: 18px; border: 1px solid #e4e6e3; border-radius: 7px; background: white; }
.chart-card > div { display: flex; justify-content: space-between; font-size: 10px; }
.chart-card small { color: #818989; }
.chart-card svg { width: 100%; height: 170px; margin-top: 12px; }
.chart-card .grid { stroke: #eceeeb; stroke-width: 1; }
.chart-card .area { fill: url(#chartFill); }
.chart-card .line { fill: none; stroke: var(--orange); stroke-width: 3; }
.dashboard-copy ul { padding: 0; margin-top: 34px; list-style: none; }
.dashboard-copy li { margin: 18px 0; color: #d3d7d5; font-size: 13px; }
.dashboard-copy li span:first-child { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 10px; border-radius: 50%; background: rgba(255,92,53,.18); color: var(--orange); }

.estimator { background: #f4f1ea; }
.estimator-card { max-width: 760px; margin: 60px auto 0; padding: 44px; border-radius: 16px; background: white; box-shadow: 0 25px 60px rgba(18,26,30,.08); }
.estimator-control-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; font-size: 13px; font-weight: 700; color: var(--muted); }
.estimator-control-head strong { font-size: 22px; color: var(--ink); }
.estimator-slider { width: 100%; height: 6px; margin: 6px 0; border-radius: 3px; -webkit-appearance: none; -moz-appearance: none; appearance: none; background: linear-gradient(90deg, var(--orange) 0%, var(--orange) var(--fill, 10%), #e6e3da var(--fill, 10%), #e6e3da 100%); cursor: pointer; }
.estimator-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; border: 4px solid white; background: var(--orange); box-shadow: 0 4px 12px rgba(255,92,53,.45); cursor: pointer; }
.estimator-slider::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; border: 4px solid white; background: var(--orange); box-shadow: 0 4px 12px rgba(255,92,53,.45); cursor: pointer; }
.estimator-slider::-moz-range-track { height: 6px; border-radius: 3px; background: transparent; }
.estimator-scale { display: flex; justify-content: space-between; margin-top: 8px; color: #9aa19e; font-size: 10px; }
.estimator-result { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 34px 0 20px; }
.estimator-result-item { padding: 20px; border-radius: 10px; background: #f7f6f2; text-align: center; }
.estimator-result-item small { display: block; margin-bottom: 8px; color: var(--muted); font-size: 11px; font-weight: 700; }
.estimator-result-item strong { font-size: 26px; color: var(--orange); }
.estimator-note { color: #9aa19e; font-size: 10px; text-align: center; }

.centered { margin: 0 auto; text-align: center; }
.accounts { background: #f4f1ea; }
.account-grid { max-width: 1200px; margin: 65px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.account-card { position: relative; border: 1px solid #dedfdc; background: white; transition: transform .3s, box-shadow .3s; }
.account-card:hover { transform: translateY(-7px); box-shadow: 0 20px 40px rgba(18,26,30,.09); }
.account-card.featured { border: 2px solid var(--orange); }
.popular { position: absolute; z-index: 2; top: 0; right: 20px; padding: 7px 12px; background: var(--orange); color: white; font-size: 9px; font-weight: 700; }
.account-cover { height: 180px; display: flex; align-items: end; padding: 18px; background-size: cover; }
.account-cover span { padding: 6px 10px; background: rgba(18,26,30,.8); color: white; font-size: 9px; }
.cover-travel { background: linear-gradient(135deg, rgba(31,65,71,.1), rgba(20,30,30,.65)), linear-gradient(20deg, #cd9e69 0 38%, #5a7770 39% 55%, #98b7b7 56%); }
.cover-life { background: radial-gradient(circle at 40% 50%, #e6b163 0 10%, transparent 11%), linear-gradient(125deg, rgba(20,30,30,.05), rgba(20,30,30,.5)), linear-gradient(25deg, #8f5e42 0 40%, #c69b76 41%); }
.cover-tech { background: radial-gradient(circle at 65% 43%, #fa724f 0 2%, transparent 3%), linear-gradient(125deg, rgba(20,30,30,.1), rgba(20,30,30,.65)), linear-gradient(30deg, #212e37 0 45%, #5c7880 46%); }
.account-content { padding: 28px; }
.account-content > small { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: 1px; }
.account-content h3 { margin: 7px 0 10px; font-size: 23px; }
.account-content p { min-height: 42px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.account-stats { margin: 22px 0; padding: 18px 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #e4e5e2; border-bottom: 1px solid #e4e5e2; }
.account-stats span { color: var(--muted); font-size: 9px; }
.account-stats span + span { padding-left: 15px; border-left: 1px solid #e4e5e2; }
.account-stats b { display: block; margin-bottom: 4px; color: var(--ink); font-size: 13px; }
.account-content > a { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; }
.account-content > a b { color: var(--orange); }
.compliance-note { margin: 30px auto 0; max-width: 700px; color: #8b9291; text-align: center; font-size: 10px; }

.quote-section { padding: 125px 14vw; position: relative; text-align: center; background: var(--orange); color: white; overflow: hidden; }
.quote-mark { position: absolute; top: -100px; left: 4vw; font-family: var(--serif); font-size: 400px; color: rgba(255,255,255,.1); }
blockquote { position: relative; margin: 0 auto 45px; max-width: 1000px; font-size: clamp(27px, 3vw, 44px); line-height: 1.45; font-weight: 600; letter-spacing: -1.5px; }
blockquote em { font-family: var(--serif); font-weight: 400; }
.quote-author { display: flex; justify-content: center; align-items: center; gap: 13px; text-align: left; }
.quote-author > span { width: 43px; height: 43px; display: grid; place-items: center; border: 2px solid white; border-radius: 50%; background: #253537; font-size: 11px; }
.quote-author strong, .quote-author small { display: block; }
.quote-author strong { font-size: 12px; }
.quote-author small { margin-top: 3px; color: #ffe0d6; font-size: 9px; }

.faq { display: grid; grid-template-columns: 35% 60%; gap: 5%; background: white; }
.faq-list details { border-top: 1px solid #dfe2df; }
.faq-list details:last-child { border-bottom: 1px solid #dfe2df; }
.faq-list summary { padding: 24px 5px; display: flex; justify-content: space-between; cursor: pointer; font-size: 15px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span:last-child { color: var(--orange); font-size: 20px; transition: transform .2s; }
.faq-list details[open] summary span:last-child { transform: rotate(45deg); }
.faq-list p { max-width: 700px; margin: -8px 35px 24px 5px; color: var(--muted); font-size: 13px; line-height: 1.8; }

.cta-section { min-height: 520px; padding: 90px 11vw; position: relative; display: grid; grid-template-columns: 50% 50%; align-items: center; background: #122023; color: white; overflow: hidden; }
.cta-copy { position: relative; z-index: 2; }
.cta-copy > span { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: 2px; }
.cta-copy h2 { margin: 17px 0; font-size: clamp(45px, 5vw, 76px); line-height: 1.05; letter-spacing: -4px; }
.cta-copy p { color: #aeb8b8; }
.button-light { margin: 24px 0 15px; background: white; color: var(--ink); }
.cta-copy > small { display: block; color: #839091; font-size: 9px; }
.cta-orb { position: absolute; right: -8%; bottom: -75%; width: 720px; height: 720px; border: 1px solid rgba(185,240,231,.14); border-radius: 50%; box-shadow: 0 0 100px rgba(185,240,231,.08); }
.cta-visual { position: relative; height: 360px; display: grid; place-items: center; }
.globe { width: 220px; height: 220px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ff936f, var(--orange) 48%, #bb341a); box-shadow: 0 0 80px rgba(255,92,53,.25); font-size: 100px; font-weight: 900; transform: rotate(-10deg); }
.orbit { position: absolute; width: 370px; height: 140px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; transform: rotate(-20deg); }
.orbit::after { content: ""; position: absolute; top: 18px; right: 50px; width: 9px; height: 9px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 15px var(--aqua); }
.orbit-two { transform: rotate(42deg); }
.orbit-two::after { top: 110px; right: 80px; background: white; }

footer { padding: 70px 7vw 25px; background: #0b1315; color: white; }
.footer-main { padding-bottom: 60px; display: grid; grid-template-columns: 40% 60%; }
.footer-brand p { max-width: 280px; margin-top: 20px; color: #849092; font-size: 12px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); }
.footer-links div { display: flex; flex-direction: column; gap: 14px; }
.footer-links strong { margin-bottom: 8px; font-size: 11px; }
.footer-links a { color: #8e999a; font-size: 11px; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; border-top: 1px solid #243033; color: #697577; font-size: 9px; }

.reveal { opacity: 0; transform: translateY(24px) var(--tilt, ); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: var(--tilt, none); }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 50% 50%; padding-left: 5vw; padding-right: 5vw; }
  h1 { font-size: 65px; letter-spacing: -4px; }
  .hero-visual { transform: scale(.85); transform-origin: left center; width: 118%; }
  .dashboard-section { grid-template-columns: 1fr; }
  .dashboard-shell { min-width: 0; width: 90%; }
  .dashboard-copy { max-width: 650px; }
  .ai-editing { grid-template-columns: 1fr; gap: 50px; }
  .ai-editing-visual { order: -1; }
}

@media (max-width: 760px) {
  .reveal { opacity: 1; transform: var(--tilt, none); transition: none; }
  .site-header { height: 66px; padding: 0 20px; }
  .header-actions .lang-switcher, .login-link, .button-small { display: none; }
  .mobile-menu .mobile-lang { margin: 2px 0 4px; }
  .menu-button { display: block; cursor: pointer; }
  .mobile-menu { position: fixed; z-index: 49; inset: 66px 0 auto; padding: 28px 20px; display: flex; flex-direction: column; gap: 22px; background: var(--paper); border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .3s; }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a:not(.button) { font-size: 18px; font-weight: 700; }
  .hero { min-height: auto; padding: 120px 20px 60px; display: block; }
  .eyebrow { font-size: 10px; letter-spacing: 1.2px; }
  h1 { margin-top: 20px; font-size: 57px; letter-spacing: -4px; }
  .hero-description { font-size: 15px; }
  .hero-cta { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-proof { flex-wrap: wrap; }
  .hero-visual { width: 113%; height: 500px; margin-top: 35px; transform: scale(.72); transform-origin: left top; }
  .phone-front { left: 27%; }
  .earnings-card { right: 1%; }
  .live-card { right: -4%; }
  .scroll-cue { display: none; }
  .orb-one { top: 650px; width: 420px; height: 420px; }
  .trust-strip { padding: 25px 20px; display: block; }
  .trust-strip p { text-align: center; }
  .trust-items { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 25px; font-size: 10px; }
  .section { padding: 80px 20px; }
  .section-heading h2, .dashboard-copy h2 { font-size: 42px; letter-spacing: -2px; }
  .steps { grid-template-columns: 1fr; margin-top: 45px; }
  .step-arrow { display: none; }
  .step-card { min-height: 270px; }
  .dashboard-section { padding-left: 0; padding-right: 0; }
  .dashboard-shell { width: 720px; --tilt: translateX(-24%) scale(.7); transform-origin: center top; margin-bottom: -120px; }
  .dashboard-copy { padding: 0 20px; }
  .ai-timeline-card { max-width: 100%; }
  .estimator-card { margin: 45px 20px 0; padding: 28px 22px; }
  .estimator-result { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
  .quote-section { padding: 90px 20px; }
  blockquote { font-size: 27px; }
  .faq { grid-template-columns: 1fr; }
  .cta-section { min-height: 670px; padding: 75px 20px; grid-template-columns: 1fr; }
  .cta-copy h2 { font-size: 48px; }
  .cta-visual { height: 270px; transform: scale(.7); }
  .footer-main { grid-template-columns: 1fr; gap: 45px; }
  .footer-links { gap: 18px; }
  .footer-bottom { gap: 15px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: var(--tilt, none); transition: none; }
}
