:root {
  --bg: #0b0912;
  --bg-soft: #12101b;
  --light-bg: #f7f4ef;
  --surface: #171420;
  --surface-2: #201b2b;
  --text: #f8f5ff;
  --muted: #aaa3b8;
  --purple: #9b5cff;
  --purple-bright: #b97aff;
  --orange: #ff7448;
  --pink: #ff4f89;
  --lime: #c8f45a;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --container: 1180px;
  --body-font: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --heading-font: var(--body-font);
  --body-size: 16px;
  --hero-title-size: 86px;
  --section-title-size: 62px;
  --card-title-size: 23px;
  --nav-font-size: 14px;
  --section-space: 112px;
  --header-padding: 18px;
  --header-logo-width: 220px;
  --header-width: 1180px;
  --header-gap: 32px;
  --header-bg: #0b0912;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--body-font); font-size: var(--body-size); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.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; top: -100px; left: 20px; z-index: 1000; background: #fff; color: #111; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }
.section { padding: var(--section-space) 0; }
h1, h2, h3, .brand { font-family: var(--heading-font); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; padding: var(--header-padding) 0; transition: background .25s, padding .25s, border-color .25s; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { padding: 12px 0; background: color-mix(in srgb, var(--header-bg) 90%, transparent); border-color: var(--line); backdrop-filter: blur(18px); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.site-header .header-inner { width: min(calc(100% - 40px), var(--header-width)); }
.header-position-static { position: absolute; }
.header-style-solid { background: var(--header-bg); border-color: var(--line); }
.header-style-glass { background: color-mix(in srgb, var(--header-bg) 78%, transparent); border-color: var(--line); backdrop-filter: blur(18px); }
.header-layout-centered .header-inner { flex-direction: column; justify-content: center; gap: 13px; }
.header-layout-centered .site-nav { justify-content: center; }
.header-layout-reversed .brand-header { order: 3; }
.header-layout-reversed .site-nav { order: 1; }
.header-layout-reversed .menu-toggle { order: 2; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; font-size: 23px; letter-spacing: -.7px; }
.brand img { display: block; max-width: var(--header-logo-width); max-height: 56px; width: auto; height: auto; }
.brand-footer img { max-width: 220px; max-height: 60px; }
.custom-brand .custom-logo-link { display: inline-flex; align-items: center; }
.brand-mark { width: 31px; height: 31px; display: inline-grid; place-items: center; border-radius: 9px; background: linear-gradient(135deg, var(--purple), var(--orange)); transform: rotate(-5deg); box-shadow: 0 8px 25px rgba(155, 92, 255, .35); }
.brand-mark > span, .brand-mark > i { width: 12px; height: 15px; display: block; background: #fff; clip-path: polygon(0 0, 100% 50%, 0 100%); transform: translateX(1px); }
.brand-dot { color: var(--orange); }
.site-nav { display: flex; align-items: center; gap: var(--header-gap); color: #d8d3e1; font-size: var(--nav-font-size); font-weight: 650; }
.site-nav > a:not(.button) { transition: color .2s; }
.site-nav > a:not(.button):hover { color: #fff; }
.language-switcher { display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 0 8px 0 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; background: rgba(255,255,255,.055); color: #ded8e7; }
.language-switcher > span { color: var(--purple-bright); font-size: 15px; }
.language-switcher select { max-width: 82px; padding: 0 20px 0 0; border: 0; outline: 0; background: transparent; color: inherit; font: 750 11px/1 var(--body-font); cursor: pointer; }
.language-switcher select:focus-visible { outline: 2px solid var(--purple); outline-offset: 4px; border-radius: 3px; }
.language-switcher option { background: var(--surface); color: var(--text); }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 13px; min-height: 54px; padding: 0 24px; border-radius: 13px; background: linear-gradient(135deg, var(--purple), #7d3ee4); color: #fff; font-weight: 800; font-size: 15px; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 14px 35px rgba(131, 65, 225, .28); transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(131,65,225,.4); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 13px; border-radius: 10px; }
.header-button-outline { color: var(--purple-bright); background: transparent; border-color: var(--purple); box-shadow: none; }
.header-button-pill { border-radius: 999px; }
.menu-toggle { display: none; width: 44px; height: 42px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 0; place-content: center; gap: 6px; }
.menu-toggle span:not(.sr-only) { display: block; width: 19px; height: 2px; background: #fff; transition: transform .2s; }
.menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero { min-height: 920px; position: relative; overflow: hidden; padding: 160px 0 0; background: radial-gradient(circle at 70% 40%, rgba(94,43,155,.15), transparent 32%), linear-gradient(180deg, #0b0912 0%, #0d0a14 100%); }
.maratonou-header-hidden .hero { padding-top: 80px; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .14; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero-glow { position: absolute; width: 470px; height: 470px; filter: blur(110px); border-radius: 50%; opacity: .17; }
.hero-glow-one { background: var(--purple); right: -100px; top: 130px; }
.hero-glow-two { background: var(--orange); left: -250px; bottom: 70px; opacity: .1; }
.hero-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; min-height: 650px; gap: 30px; }
.hero-copy { position: relative; z-index: 3; padding-bottom: 50px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2.2px; font-size: 11px; line-height: 1; font-weight: 850; color: var(--purple-bright); }
.eyebrow > span { width: 29px; height: 2px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 660px; margin-bottom: 25px; font-size: clamp(48px, 6.1vw, var(--hero-title-size)); line-height: .98; letter-spacing: -5px; font-weight: 900; }
h1 em, h2 em { display: inline; font-style: normal; color: var(--orange); }
.hero-lead { max-width: 555px; margin-bottom: 32px; color: #b9b2c6; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 27px; }
.button-waitlist { background: linear-gradient(135deg, var(--purple), #c15ff0); box-shadow: 0 16px 38px rgba(155,92,255,.34); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #e7e1ee; font-size: 14px; font-weight: 700; }
.play-icon { display: grid; place-content: center; width: 38px; height: 38px; padding-left: 2px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; font-size: 10px; }
.stars { color: #ffc75a; letter-spacing: 1px; font-size: 12px; }

.hero-visual { position: relative; height: 670px; display: grid; place-items: center; }
.uploaded-app-image { position: relative; z-index: 4; width: min(100%, 510px); display: grid; place-items: center; }
.uploaded-app-image img { display: block; max-width: 100%; max-height: 620px; width: auto; height: auto; object-fit: contain; filter: drop-shadow(0 35px 55px rgba(0,0,0,.4)); }
.hero-visual.has-uploaded-visual::before { content: ""; position: absolute; width: 480px; height: 480px; border: 1px solid rgba(155,92,255,.2); border-radius: 50%; box-shadow: 0 0 110px rgba(155,92,255,.14); }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.orbit-one { width: 545px; height: 545px; }
.orbit-two { width: 420px; height: 420px; border-color: rgba(155,92,255,.2); }
.phone { position: relative; z-index: 3; width: 280px; height: 575px; padding: 8px; border: 1px solid rgba(255,255,255,.27); border-radius: 43px; background: #07060a; box-shadow: var(--shadow), inset 0 0 0 2px rgba(255,255,255,.04); }
.phone-main { transform: rotate(4deg); }
.phone-speaker { position: absolute; top: 14px; left: 50%; z-index: 5; width: 75px; height: 21px; transform: translateX(-50%); background: #050407; border-radius: 20px; }
.phone-screen { height: 100%; overflow: hidden; position: relative; padding: 34px 16px 17px; border-radius: 35px; background: #111019; }
.app-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.app-top div { display: grid; line-height: 1.2; }
.app-top small, .app-feature small { color: #9b95a5; font-size: 8px; }
.app-top strong { font-size: 15px; }
.app-avatar { display: grid; place-content: center; width: 27px; height: 27px; background: linear-gradient(135deg,var(--purple),var(--orange)); border-radius: 50%; font-weight: 800; font-size: 11px; }
.app-feature { position: relative; padding: 12px; border-radius: 16px; background: #1a1722; }
.app-badge { position: absolute; right: 10px; top: 11px; z-index: 2; padding: 3px 6px; border-radius: 5px; background: var(--orange); font-size: 6px; font-weight: 900; letter-spacing: .7px; }
.poster-art { position: relative; height: 172px; margin-bottom: 10px; overflow: hidden; display: grid; place-content: center; text-align: center; border-radius: 11px; background: radial-gradient(circle at 62% 30%, #ffcf73 0 8%, transparent 9%), linear-gradient(165deg, #2a1854 0 40%, #7f325d 55%, #e1604d 100%); }
.poster-art::after { content: ""; position: absolute; left: -20%; right: -20%; bottom: -40px; height: 105px; background: #120e24; transform: rotate(-8deg); border-radius: 50% 50% 0 0; }
.poster-art i { position: absolute; inset: 40% 0 auto; height: 1px; background: rgba(255,255,255,.14); box-shadow: 0 12px rgba(255,255,255,.08), 0 24px rgba(255,255,255,.05); }
.poster-art b { position: relative; z-index: 2; font-size: 24px; line-height: .8; letter-spacing: 3px; text-shadow: 0 2px 10px #000; }
.app-feature > div:last-child { display: grid; gap: 3px; }
.app-feature > div:last-child strong { font-size: 13px; }
.progress { height: 3px; margin: 3px 0; border-radius: 4px; background: #332e3d; }
.progress span { display: block; width: 73%; height: 100%; border-radius: inherit; background: var(--purple); }
.app-section-title { display: flex; justify-content: space-between; margin: 16px 1px 8px; font-size: 9px; }
.app-section-title span { color: var(--purple-bright); font-size: 7px; }
.poster-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.mini-poster { height: 94px; display: grid; place-content: center; border-radius: 7px; font-size: 8px; font-weight: 900; letter-spacing: 1px; background: linear-gradient(150deg,#4b226e,#f3734d); }
.poster-b { background: radial-gradient(circle at center,#edaa50,transparent 30%),#1e294c; }
.poster-c { background: linear-gradient(#2b687b,#17142c); }
.app-nav { position: absolute; left: 0; right: 0; bottom: 0; height: 55px; display: grid; grid-template-columns: repeat(4,1fr); padding: 8px 10px 5px; background: rgba(17,16,25,.96); border-top: 1px solid rgba(255,255,255,.06); }
.app-nav span { display: grid; place-content: center; text-align: center; color: #736d7c; font-size: 14px; line-height: 1; }
.app-nav small { font-size: 6px; margin-top: 4px; }
.app-nav .active { color: var(--purple-bright); }
.floating-pill, .floating-card, .step-bubble { position: absolute; z-index: 8; background: rgba(30,26,39,.88); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 20px 45px rgba(0,0,0,.35); backdrop-filter: blur(14px); }
.floating-pill { top: 112px; right: 16px; padding: 10px 15px; border-radius: 12px; font-size: 10px; font-weight: 700; transform: rotate(2deg); }
.floating-pill span { display: inline-grid; place-content: center; width: 20px; height: 20px; margin-right: 8px; border-radius: 50%; background: var(--lime); color: #1f3010; }
.floating-card { bottom: 93px; left: 8px; display: flex; align-items: center; gap: 10px; min-width: 190px; padding: 10px; border-radius: 14px; transform: rotate(-4deg); }
.tiny-poster { width: 37px; height: 50px; display: grid; place-content: center; border-radius: 6px; background: linear-gradient(150deg,#e8814e,#6a2d7c); font-weight: 900; }
.floating-card > div:last-child { display: grid; line-height: 1.3; }
.floating-card small { color: var(--muted); font-size: 7px; }
.floating-card strong { font-size: 10px; }
.floating-card .stars { font-size: 7px; }
.hero-strip { position: relative; z-index: 4; min-height: 88px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: #827b8e; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; }
.hero-strip > div { display: flex; align-items: center; gap: 22px; color: #aaa3b5; }
.hero-strip b { font-size: 11px; letter-spacing: 2px; }
.hero-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }

.features { background: var(--light-bg); color: #16121d; }
.section-heading { max-width: 700px; margin-bottom: 50px; }
.section-heading h2, .steps h2, .faq h2 { margin-bottom: 18px; font-size: clamp(34px, 5vw, var(--section-title-size)); line-height: 1.05; letter-spacing: -3.4px; font-weight: 900; }
.section-heading h2 em, .steps h2 em, .faq h2 em { color: #8150d4; }
.section-heading > p, .steps-copy > p, .faq-heading > p { max-width: 530px; color: #6e6875; font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: 1.08fr .92fr .92fr; gap: 18px; }
.feature-card { min-height: 415px; position: relative; overflow: hidden; padding: 34px; border: 1px solid #ded9e3; border-radius: var(--radius); background: #fff; box-shadow: 0 15px 35px rgba(51,37,66,.05); }
.feature-card::after { content: ""; position: absolute; right: -80px; bottom: -100px; width: 220px; height: 220px; border-radius: 50%; background: rgba(155,92,255,.06); }
.feature-icon { width: 45px; height: 45px; display: grid; place-content: center; margin-bottom: 60px; border-radius: 13px; color: #fff; background: #8f56e6; font-size: 19px; font-weight: 900; }
.feature-icon img { width: 25px; height: 25px; display: block; object-fit: contain; }
.feature-card:nth-child(2) .feature-icon { background: var(--orange); }
.feature-card:nth-child(3) .feature-icon { background: #2c8070; }
.feature-number { position: absolute; top: 35px; right: 34px; color: #bcb7c1; font-size: 11px; font-weight: 800; letter-spacing: 1px; }
.feature-card h3 { max-width: 290px; margin-bottom: 13px; font-size: var(--card-title-size); line-height: 1.2; letter-spacing: -1px; }
.feature-card p { color: #736c78; font-size: 14px; line-height: 1.65; }
.taste-cloud { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 27px; }
.taste-cloud span { padding: 7px 12px; border-radius: 20px; background: #f0eafb; color: #7545bb; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; }
.taste-cloud span:nth-child(even) { background: #fff0e9; color: #d85c32; }
.check-list { display: grid; gap: 8px; margin-top: 24px; }
.check-list span { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 8px; padding: 9px; border-radius: 10px; background: #f7f4f9; font-size: 10px; font-weight: 700; }
.check-list i { width: 22px; height: 22px; display: grid; place-content: center; border-radius: 7px; background: #e8dcfa; color: #7a46c2; font-style: normal; }
.check-list b { color: #9a94a0; }
.rating-card { display: grid; grid-template-columns: 1fr auto; margin-top: 28px; padding: 14px; border-radius: 12px; background: #f7f4f9; }
.rating-card span { grid-column: 1/-1; color: #8d8792; font-size: 8px; text-transform: uppercase; letter-spacing: 1px; }
.rating-card strong { font-size: 20px; }
.rating-card strong i { color: #d5cfd9; font-style: normal; }
.rating-card small { align-self: center; font-size: 14px; font-weight: 800; }

.steps { overflow: hidden; background: var(--bg-soft); }
.steps-layout { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 90px; }
.steps-copy > p { color: var(--muted); }
.step-list { list-style: none; margin: 42px 0 0; padding: 0; }
.step-list li { display: grid; grid-template-columns: 48px 1fr; gap: 19px; padding: 22px 0; border-top: 1px solid var(--line); }
.step-list li:last-child { border-bottom: 1px solid var(--line); }
.step-list li > span { display: grid; place-content: center; width: 42px; height: 42px; border-radius: 50%; background: #211b2b; color: var(--purple-bright); font-size: 10px; font-weight: 900; }
.step-list strong { display: block; margin-bottom: 3px; font-size: 16px; }
.step-list p { margin: 0; color: #918a9d; font-size: 13px; }
.steps-visual { position: relative; min-height: 650px; display: grid; place-content: center; }
.steps-visual::before { content: ""; position: absolute; width: 510px; height: 510px; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid rgba(155,92,255,.18); box-shadow: 0 0 120px rgba(155,92,255,.1); }
.phone-side { width: 265px; height: 550px; transform: rotate(-4deg); }
.onboarding { padding: 48px 19px 20px; background: linear-gradient(180deg,#161222,#0f0d16); }
.mini-brand { display: flex; align-items: center; gap: 6px; margin-bottom: 50px; font-size: 12px; font-weight: 850; }
.mini-brand .brand-mark { width: 20px; height: 20px; border-radius: 6px; }
.mini-brand .brand-mark > i { width: 7px; height: 9px; }
.onboarding > small { color: var(--purple-bright); font-size: 7px; font-weight: 850; letter-spacing: 1px; }
.onboarding h3 { margin: 8px 0; font-size: 23px; line-height: 1.1; letter-spacing: -1px; }
.onboarding > p { color: #8f8997; font-size: 9px; }
.genre-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-top: 22px; }
.genre-grid span { height: 68px; display: grid; place-content: center; text-align: center; gap: 3px; border: 1px solid rgba(255,255,255,.08); border-radius: 11px; background: #1c1825; font-size: 17px; }
.genre-grid span:nth-child(1), .genre-grid span:nth-child(2), .genre-grid span:nth-child(5) { border-color: var(--purple); background: rgba(155,92,255,.15); }
.genre-grid b { font-size: 8px; }
.onboarding button { position: absolute; bottom: 22px; left: 19px; right: 19px; height: 42px; display: flex; justify-content: center; align-items: center; gap: 15px; color: #fff; border: 0; border-radius: 10px; background: var(--purple); font-size: 10px; font-weight: 800; }
.step-bubble { display: grid; padding: 13px 16px; border-radius: 14px; line-height: 1.2; }
.bubble-one { top: 135px; right: -10px; }
.bubble-one strong { font-size: 18px; color: var(--lime); }
.bubble-one span, .bubble-two strong { color: #a9a2b4; font-size: 8px; }
.bubble-two { left: -2px; bottom: 130px; transform: rotate(3deg); }
.bubble-two .stars { font-size: 9px; margin-bottom: 4px; }

.extra-block { overflow: hidden; background: var(--block-bg); color: var(--block-text); }
.extra-block-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.extra-block-image_left .extra-block-copy { order: 2; }
.extra-block-image_left .extra-block-visual { order: 1; }
.extra-block-centered .extra-block-inner { grid-template-columns: 1fr; max-width: 900px; text-align: center; }
.extra-block-centered .extra-block-copy { max-width: 720px; margin-inline: auto; }
.extra-block-centered .extra-block-copy .eyebrow { justify-content: center; }
.extra-block-copy .eyebrow { color: var(--block-accent); }
.extra-block-copy h2 { max-width: 700px; margin-bottom: 20px; color: var(--block-text); font-size: clamp(34px, 5vw, var(--section-title-size)); line-height: 1.05; letter-spacing: -3px; font-weight: 900; }
.extra-block-copy > p { max-width: 620px; margin-bottom: 28px; color: color-mix(in srgb, var(--block-text) 72%, transparent); font-size: 17px; }
.extra-block-copy .button { background: var(--block-accent); box-shadow: 0 14px 35px color-mix(in srgb, var(--block-accent) 30%, transparent); }
.extra-block-visual { min-height: 430px; display: grid; place-content: center; }
.extra-block-visual > img { display: block; max-width: 100%; max-height: 560px; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); filter: drop-shadow(0 30px 50px rgba(0,0,0,.35)); }
.extra-block-placeholder { position: relative; width: min(420px, 80vw); aspect-ratio: 1; display: grid; place-content: center; gap: 18px; text-align: center; border: 1px solid color-mix(in srgb, var(--block-text) 14%, transparent); border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--block-accent) 25%, transparent), transparent 64%); box-shadow: 0 0 0 55px color-mix(in srgb, var(--block-accent) 4%, transparent), 0 0 0 110px color-mix(in srgb, var(--block-accent) 2%, transparent); }
.extra-block-placeholder span { width: 72px; height: 72px; display: grid; place-content: center; margin-inline: auto; border-radius: 22px; background: var(--block-accent); color: #fff; font-size: 28px; }
.extra-block-placeholder b { color: var(--block-text); font-size: 25px; }

.community { background: var(--light-bg); color: #16121d; }
.centered { text-align: center; margin-inline: auto; }
.centered .eyebrow { justify-content: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testimonial-grid blockquote { position: relative; margin: 0; min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; padding: 31px; border-radius: 20px; border: 1px solid #dfd9e4; background: #fff; }
.quote-mark { color: #9a5be9; font-family: Georgia,serif; font-size: 54px; line-height: .7; }
.testimonial-grid blockquote > p { color: #4d4754; font-size: 15px; line-height: 1.7; }
.testimonial-grid footer { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 10px; padding-top: 19px; border-top: 1px solid #ece8ee; }
.testimonial-avatar { display: grid; place-content: center; width: 38px; height: 38px; border-radius: 50%; color: #fff; font-weight: 850; }
.testimonial-avatar.has-photo { overflow: hidden; }
.testimonial-avatar.has-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.avatar-purple { background: #8952db; }.avatar-orange { background: #e76f45; }.avatar-green { background: #398b7b; }
.testimonial-grid footer > div { display: grid; }
.testimonial-grid footer strong { font-size: 12px; }
.testimonial-grid footer small { color: #96909b; font-size: 8px; }
.testimonial-grid footer .stars { font-size: 8px; }

.faq { background: var(--light-bg); color: #16121d; padding-top: 35px; }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-list details { border-top: 1px solid #d9d3dc; }
.faq-list details:last-child { border-bottom: 1px solid #d9d3dc; }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 15px; padding: 22px 0; font-weight: 800; font-size: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #8d52db; font-size: 23px; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: -3px 38px 23px 0; color: #736d78; font-size: 14px; }

.download { padding: 30px 0 0; background: var(--light-bg); }
.download-card { min-height: 520px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr .75fr; align-items: center; padding: 70px 85px; border-radius: 28px 28px 0 0; background: linear-gradient(125deg,#7c3ddd 0%,#9f53e8 48%,#da5a8a 100%); box-shadow: 0 -20px 70px rgba(93,55,137,.16); }
.download-card::after { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px); background-size: 55px 55px; mask-image: linear-gradient(90deg,transparent,black); }
.download-rings { position: absolute; right: -110px; top: -140px; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 85px rgba(255,255,255,.025),0 0 0 170px rgba(255,255,255,.02); }
.download-copy { position: relative; z-index: 3; }
.eyebrow.light { color: #eadbff; }
.download-copy h2 { margin-bottom: 15px; font-size: clamp(48px,6vw,76px); line-height: .95; letter-spacing: -4px; }
.download-copy > p { max-width: 480px; color: #f0e9fa; font-size: 17px; }
.store-buttons { display: flex; gap: 12px; margin-top: 30px; }
.store-buttons a { min-width: 170px; display: flex; align-items: center; gap: 11px; padding: 10px 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: #121018; transition: transform .2s; }
.store-buttons a:hover { transform: translateY(-2px); }
.store-buttons a > span:last-child { display: grid; line-height: 1.15; }
.store-buttons small { color: #bbb6c1; font-size: 7px; }
.store-buttons strong { font-size: 14px; }
.store-icon { font-size: 21px; }
.download-visual { position: relative; z-index: 3; align-self: end; height: 450px; display: grid; place-content: end center; }
.download-visual.has-uploaded-visual { place-content: center; }
.download-visual .uploaded-app-image img { max-height: 430px; }
.phone-download { height: 470px; transform: rotate(7deg) translateY(40px); }
.splash { display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 48%,rgba(155,92,255,.23),transparent 36%),#0e0b15; }
.splash .brand-mark { width: 62px; height: 62px; border-radius: 18px; margin-bottom: 16px; }
.splash .brand-mark span { width: 22px; height: 28px; }
.splash > strong { font-size: 25px; }
.splash > small { margin-top: 7px; color: #aaa4b3; font-size: 9px; }

.site-footer { padding: 70px 0 25px; background: #09070e; }
.footer-grid { display: grid; grid-template-columns: 1.7fr .65fr .65fr; gap: 60px; padding-bottom: 50px; }
.brand-footer { margin-bottom: 15px; }
.footer-grid > div:first-child p { max-width: 300px; color: #87818e; font-size: 13px; }
.footer-links { display: grid; align-content: start; gap: 11px; color: #aba5b2; font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); color: #686270; font-size: 9px; text-transform: uppercase; letter-spacing: .7px; }
.footer-bottom p { margin: 0; }
.maratonou-preview-badge { position: fixed; z-index: 99999; left: 18px; bottom: 18px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: #181320; color: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.3); font: 700 11px/1.2 var(--body-font); letter-spacing: .2px; }
.default-content { min-height: 70vh; padding-top: 160px; padding-bottom: 80px; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.feature-grid [data-reveal]:nth-child(2), .testimonial-grid [data-reveal]:nth-child(2) { transition-delay: .1s; }
.feature-grid [data-reveal]:nth-child(3), .testimonial-grid [data-reveal]:nth-child(3) { transition-delay: .2s; }

@media (max-width: 1020px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { transform: scale(.88); margin-inline: -45px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-column: 1/-1; min-height: 340px; }
  .feature-large .feature-icon { margin-bottom: 38px; }
  .steps-layout { gap: 20px; }
  .faq-layout { gap: 50px; }
  .download-card { padding: 65px 55px; }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 82px 0; }
  .menu-toggle { display: grid; }
  .header-layout-centered .header-inner, .header-layout-reversed .header-inner { flex-direction: row; justify-content: space-between; gap: 0; }
  .header-layout-reversed .brand-header { order: 0; }
  .header-layout-reversed .menu-toggle { order: 0; }
  .site-nav { display: none; position: fixed; inset: 70px 15px auto; padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: rgba(19,16,27,.98); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav .language-switcher { width: 100%; justify-content: center; min-height: 42px; }
  .site-nav .language-switcher select { max-width: none; }
  .site-nav .button { width: 100%; }
  .hero { padding-top: 135px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { padding-bottom: 0; }
  .hero-copy .eyebrow, .hero-actions { justify-content: center; }
  h1 { margin-inline: auto; letter-spacing: -3.8px; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { margin: -25px auto -20px; transform: scale(.88); width: 100%; }
  .hero-strip { display: grid; justify-content: center; gap: 10px; padding: 22px 0; text-align: center; }
  .hero-strip > div { flex-wrap: wrap; justify-content: center; gap: 11px 16px; }
  .feature-grid, .steps-layout, .testimonial-grid, .faq-layout { grid-template-columns: 1fr; }
  .extra-block-inner { grid-template-columns: 1fr; gap: 35px; }
  .extra-block-image_left .extra-block-copy, .extra-block-image_left .extra-block-visual { order: initial; }
  .extra-block-visual { min-height: 340px; }
  .feature-large { grid-column: auto; }
  .feature-card { min-height: 360px; }
  .steps-layout { gap: 10px; }
  .steps-visual { min-height: 610px; }
  .community .section-heading { margin-bottom: 35px; }
  .faq-layout { gap: 30px; }
  .download-card { width: 100%; grid-template-columns: 1fr; padding: 65px 30px 0; text-align: center; border-radius: 0; }
  .download-copy .eyebrow, .store-buttons { justify-content: center; }
  .download-copy > p { margin-inline: auto; }
  .download-visual { height: 390px; }
  .phone-download { transform: rotate(4deg) translateY(85px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
}

@media (max-width: 520px) {
  h1 { font-size: 50px; letter-spacing: -3.2px; }
  .section-heading h2, .steps h2, .faq h2 { font-size: 41px; letter-spacing: -2.5px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-visual { height: 595px; transform: scale(.78); margin-top: -45px; margin-bottom: -65px; }
  .floating-pill { right: -35px; }
  .floating-card { left: -25px; }
  .feature-card { padding: 28px; }
  .steps-visual { transform: scale(.9); margin: -35px -20px; }
  .testimonial-grid blockquote { min-height: 270px; }
  .store-buttons { flex-direction: column; align-items: center; }
  .store-buttons a { width: 210px; }
  .footer-grid { gap: 35px; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
