:root {
  --ink: #080914;
  --ink-2: #0d1020;
  --ink-3: #14182b;
  --text: #12131c;
  --muted: #666979;
  --muted-dark: #a8acbb;
  --surface: #ffffff;
  --surface-soft: #f4f5f9;
  --line: #e3e5ec;
  --blue: #2369ff;
  --purple: #5634ff;
  --pink: #ec3f9a;
  --green: #28d67b;
  --gradient: linear-gradient(108deg, #2369ff 0%, #5634ff 47%, #ec3f9a 100%);
  --gradient-text: linear-gradient(100deg, #4777ff 4%, #6f3bff 49%, #f23b93 98%);
  --container: 1240px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 12px 36px rgba(16, 18, 39, .08);
  --shadow-md: 0 26px 75px rgba(15, 17, 36, .14);
  --shadow-dark: 0 35px 100px rgba(0, 0, 0, .46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; overflow-x: hidden; background: #fff; color: var(--text); font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 17px; line-height: 1.58; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 200; top: 12px; left: 12px; transform: translateY(-160%); padding: 12px 18px; border-radius: 10px; color: #fff; background: #111; font-weight: 800; transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.announcement { position: relative; z-index: 60; min-height: 40px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 24px; color: #fff; background: var(--gradient); font-size: 13px; text-align: center; }
.announcement__pulse { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,.13); }
.announcement__link { margin-left: 4px; padding: 0; border: 0; color: #fff; background: none; font-size: inherit; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

.site-header { position: absolute; z-index: 50; top: 40px; left: 0; width: 100%; color: #fff; }
.nav-shell { min-height: 96px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.brand { display: inline-flex; width: max-content; align-items: center; gap: 12px; }
.brand__mark { width: 48px; height: 43px; flex: 0 0 auto; }
.brand__copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand__copy strong { font-size: 23px; letter-spacing: -.035em; }
.brand__copy small { margin-top: 5px; color: rgba(255,255,255,.57); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.desktop-nav a { position: relative; color: rgba(255,255,255,.76); font-size: 14px; font-weight: 700; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; transform: scaleX(0); transform-origin: right; border-radius: 2px; background: var(--gradient); transition: transform .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: #fff; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.menu-toggle { display: none; justify-self: end; width: 48px; height: 48px; padding: 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.06); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: #fff; transition: transform .25s ease, opacity .25s ease; }
.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); }
.mobile-menu { position: absolute; top: 88px; left: 32px; right: 32px; padding: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(9,10,20,.97); box-shadow: var(--shadow-dark); backdrop-filter: blur(18px); }
.mobile-menu nav { display: grid; gap: 4px; margin-bottom: 16px; }
.mobile-menu nav a { padding: 12px 10px; border-radius: 10px; color: rgba(255,255,255,.8); font-weight: 700; }
.mobile-menu nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.mobile-menu .button { width: 100%; margin-top: 10px; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 22px; border: 1px solid transparent; border-radius: 13px; font-size: 15px; font-weight: 850; line-height: 1; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid rgba(97,75,255,.34); outline-offset: 3px; }
.button--compact { min-height: 44px; padding: 10px 16px; border-radius: 12px; font-size: 13px; }
.button--large { min-height: 57px; padding-inline: 27px; font-size: 16px; }
.button--gradient { color: #fff; background: var(--gradient); box-shadow: 0 13px 32px rgba(89, 52, 255, .28); }
.button--gradient:hover { box-shadow: 0 17px 42px rgba(89, 52, 255, .4); }
.button--ghost { color: #fff; border-color: rgba(255,255,255,.23); background: rgba(255,255,255,.045); }
.button--ghost:hover { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.09); }
.button--light { color: #11131c; border-color: #fff; background: #fff; box-shadow: 0 13px 35px rgba(0,0,0,.16); }
.button--outline-dark { color: #151722; border-color: #cfd2dc; background: #fff; }
.button--outline-dark:hover { border-color: #6b54ff; }
.button--outline-light { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.05); }
.button--full { width: 100%; }

.hero { position: relative; min-height: 1160px; overflow: hidden; padding: 160px 0 110px; color: #fff; background: linear-gradient(180deg, #060711 0%, #090a16 64%, #0b0d19 100%); }
.hero__grid { position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to bottom, black, transparent 75%); }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero__orb--one { top: 70px; left: 50%; width: 780px; height: 600px; transform: translateX(-50%); background: radial-gradient(circle, rgba(83,52,255,.27), rgba(83,52,255,0) 68%); }
.hero__orb--two { right: -170px; top: 410px; width: 530px; height: 530px; background: radial-gradient(circle, rgba(236,63,154,.14), rgba(236,63,154,0) 68%); }
.hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #5b42ff; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span:empty { width: 7px; height: 7px; border-radius: 50%; background: var(--gradient); box-shadow: 0 0 0 5px rgba(90,59,255,.1); }
.eyebrow--dark { color: #beb8ff; }
.eyebrow--dark > span:not(:empty) { padding: 5px 9px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #fff; background: rgba(255,255,255,.08); font-size: 10px; }
.hero h1 { max-width: 1080px; margin: 22px auto 26px; font-size: clamp(62px, 7vw, 104px); line-height: .92; letter-spacing: -.066em; font-weight: 900; }
.gradient-text { color: transparent; background: var(--gradient-text); background-clip: text; -webkit-background-clip: text; }
.hero__lead { max-width: 810px; margin: 0 auto; color: rgba(255,255,255,.68); font-size: clamp(18px, 1.8vw, 22px); line-height: 1.55; }
.hero__checks { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 24px; margin-top: 28px; color: rgba(255,255,255,.83); font-size: 14px; font-weight: 700; }
.hero__checks span { display: inline-flex; align-items: center; gap: 8px; }
.hero__checks i { width: 21px; height: 21px; display: inline-grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #3b7cff, #6a37ff); font-size: 12px; font-style: normal; }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 35px; }
.platforms { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-top: 30px; }
.platforms__label { margin-right: 5px; color: rgba(255,255,255,.43); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.platform-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.045); font-size: 12px; font-weight: 750; }
.platform-pill svg { width: 16px; height: 16px; fill: currentColor; stroke: currentColor; stroke-width: 1.5; }
.hero-shot-wrap { position: relative; z-index: 2; margin-top: 68px; }
.hero-shot-glow { position: absolute; z-index: -1; inset: -60px 10% 0; border-radius: 50%; background: radial-gradient(ellipse, rgba(86,52,255,.42), rgba(236,63,154,.11) 42%, transparent 72%); filter: blur(25px); }
.app-window { overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 22px; background: #0a0c16; box-shadow: var(--shadow-dark); }
.app-window--hero { transform: perspective(1700px) rotateX(2.3deg); transform-origin: center top; }
.window-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid rgba(255,255,255,.08); background: #111522; }
.window-dot { width: 9px; height: 9px; border-radius: 50%; }
.window-dot--red { background: #ff5f57; }.window-dot--yellow { background: #ffbd2e; }.window-dot--green { background: #28c840; }
.window-url { margin: 0 auto; padding: 5px 80px; border: 1px solid rgba(255,255,255,.06); border-radius: 8px; color: rgba(255,255,255,.33); background: rgba(255,255,255,.035); font-size: 10px; }
.app-window img { width: 100%; height: auto; }
.hero-float { position: absolute; display: inline-flex; align-items: center; gap: 9px; padding: 11px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: #fff; background: rgba(17,20,35,.91); box-shadow: 0 18px 46px rgba(0,0,0,.32); backdrop-filter: blur(12px); font-size: 12px; font-weight: 800; }
.hero-float--live { top: 80px; right: -22px; }
.hero-float--live span { width: 9px; height: 9px; border-radius: 50%; background: #39df80; box-shadow: 0 0 0 6px rgba(57,223,128,.12); }
.hero-float--audio { left: -24px; bottom: 58px; }
.hero-float--audio svg { width: 54px; height: 20px; fill: none; stroke: url(#logoGradient); stroke: #6a47ff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.trust-bar { color: #fff; background: #0b0d19; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.trust-bar__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.45); font-size: 12px; font-weight: 900; letter-spacing: .13em; }
.trust-bar__inner i { width: 5px; height: 5px; border-radius: 50%; background: #5c3aff; }

.section { padding: 120px 0; }
.section--soft { background: var(--surface-soft); }
.section-heading { margin-bottom: 52px; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: end; gap: 70px; }
.section-heading--center { max-width: 810px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2 { margin: 14px 0 0; font-size: clamp(44px, 5vw, 68px); line-height: .98; letter-spacing: -.055em; font-weight: 900; }
.section-heading p { max-width: 580px; margin: 16px 0 0; color: var(--muted); font-size: 17px; }
.section-heading--split > p { margin: 0 0 4px; }

.feature-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.feature-card { position: relative; min-height: 292px; grid-column: span 2; overflow: hidden; padding: 27px; border: 1px solid #e2e4eb; border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-card--featured { grid-column: span 3; background: linear-gradient(145deg, #fff 0%, #f5f1ff 100%); }
.feature-card:nth-child(2) { grid-column: span 3; }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: var(--gradient); box-shadow: 0 12px 28px rgba(83,54,255,.22); }
.feature-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-number { position: absolute; top: 26px; right: 26px; color: #b8bac5; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.feature-card h3 { margin: 28px 0 10px; font-size: 23px; letter-spacing: -.035em; }
.feature-card p { max-width: 390px; margin: 0; color: var(--muted); font-size: 15px; }
.mini-status { width: fit-content; display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; padding: 8px 11px; border: 1px solid #e1e3ea; border-radius: 9px; color: #5f6370; background: #fff; font-size: 11px; font-weight: 800; }
.mini-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(40,214,123,.12); }

.studio-section { background: #fff; }
.studio-section .section-heading { margin-bottom: 68px; }
.product-story { border: 1px solid #e1e3ea; border-radius: 28px; background: #f7f8fb; box-shadow: var(--shadow-sm); }
.product-story--wide { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 42px; padding: 46px; }
.product-story__copy h3 { margin: 12px 0 15px; font-size: clamp(34px, 3.6vw, 50px); line-height: 1.02; letter-spacing: -.05em; }
.product-story__copy p { margin: 0; color: var(--muted); }
.story-index { color: #5b3dff; font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #3f4350; font-size: 14px; font-weight: 750; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #5a3cff; font-size: 10px; }
.image-panel { overflow: hidden; border: 1px solid #20263a; border-radius: 19px; background: #0a0d17; box-shadow: 0 25px 55px rgba(12,14,30,.25); }
.image-panel img { width: 100%; height: 100%; object-fit: cover; }
.image-panel--landscape { aspect-ratio: 2.62/1; }
.product-story-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; margin-top: 18px; }
.product-story--card { min-height: 620px; display: flex; flex-direction: column; overflow: hidden; padding: 38px 38px 0; }
.product-story--card .product-story__copy { max-width: 560px; }
.product-story--card .product-story__copy h3 { font-size: clamp(32px, 3.2vw, 46px); }
.product-story--card .image-panel { margin-top: auto; border-radius: 18px 18px 0 0; border-bottom: 0; }
.image-panel--playlist { height: 310px; margin-inline: -8px; }
.image-panel--portrait { width: 60%; height: 390px; margin-inline: auto; }
.product-story--dark { color: #fff; border-color: #171a2b; background: radial-gradient(circle at 85% 15%, rgba(84,51,255,.24), transparent 42%), #0b0d19; }
.product-story--dark .product-story__copy p { color: rgba(255,255,255,.6); }
.product-story--dark .story-index { color: #b7adff; }
.studio-capabilities { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.studio-capabilities span { display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border: 1px solid #e0e2e9; border-radius: 999px; color: #575b68; background: #fff; font-size: 12px; font-weight: 800; }
.studio-capabilities i { color: #5637ff; font-style: normal; }

.interface-showcase { position: relative; overflow: hidden; color: #fff; background: #080a13; }
.interface-showcase::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(rgba(255,255,255,.5) .6px, transparent .6px); background-size: 24px 24px; mask-image: linear-gradient(90deg, black, transparent 60%); }
.interface-showcase__grid { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 76px; }
.interface-showcase__copy h2 { margin: 16px 0 22px; font-size: clamp(46px, 5.4vw, 72px); line-height: .96; letter-spacing: -.06em; }
.interface-showcase__copy > p { max-width: 520px; color: rgba(255,255,255,.62); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 34px 0; }
.metric-row div { padding: 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.04); }
.metric-row strong { display: block; color: #fff; font-size: 25px; line-height: 1; }
.metric-row span { display: block; margin-top: 7px; color: rgba(255,255,255,.45); font-size: 10px; line-height: 1.35; }
.interface-showcase__visual { position: relative; min-width: 0; }
.showcase-glow { position: absolute; inset: 10% -10% -15%; border-radius: 50%; background: radial-gradient(circle, rgba(86,52,255,.36), rgba(236,63,154,.12) 45%, transparent 72%); filter: blur(20px); }
.app-window--showcase { position: relative; transform: rotate(1.7deg); }
.showcase-jingles { position: absolute; right: -38px; bottom: -55px; width: 270px; overflow: hidden; padding: 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(14,16,29,.94); box-shadow: var(--shadow-dark); }
.showcase-jingles > span { display: block; margin: 0 0 8px; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.showcase-jingles img { border-radius: 10px; }

.pricing-section { background: var(--surface-soft); }
.pricing-heading { margin-bottom: 58px; }
.pricing-heading p { margin-inline: auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 32px; border: 1px solid #dfe1e9; border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.price-card--pro { transform: translateY(-14px); border-color: #6244ff; box-shadow: 0 26px 75px rgba(83,52,255,.17); }
.price-card--trial { color: #fff; border-color: #181b2d; background: linear-gradient(155deg, #14172a 0%, #090b15 100%); }
.pro-ribbon { position: absolute; top: 15px; right: 15px; padding: 7px 10px; border-radius: 999px; color: #fff; background: var(--gradient); font-size: 9px; font-weight: 900; letter-spacing: .09em; }
.plan-tag { color: #6548ff; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.price-card--trial .plan-tag { color: #b9afff; }
.price-card h3 { margin: 12px 0 17px; font-size: 27px; letter-spacing: -.04em; }
.price { min-height: 59px; display: flex; align-items: baseline; gap: 8px; }
.price strong { font-size: 50px; line-height: 1; letter-spacing: -.055em; }
.price span { color: var(--muted); font-size: 14px; font-weight: 750; }
.price-card--trial .price span { color: rgba(255,255,255,.5); }
.price-card__top p { min-height: 54px; margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.price-card--trial .price-card__top p { color: rgba(255,255,255,.58); }
.plan-list { display: grid; gap: 11px; padding: 24px 0; margin: 25px 0; border-top: 1px solid #e9eaf0; border-bottom: 1px solid #e9eaf0; list-style: none; }
.price-card--trial .plan-list { border-color: rgba(255,255,255,.1); }
.plan-list li { position: relative; padding-left: 25px; color: #464a58; font-size: 13px; font-weight: 720; }
.price-card--trial .plan-list li { color: rgba(255,255,255,.72); }
.plan-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #5c3dff; font-size: 9px; }
.price-card .button { margin-top: auto; }

.reviews-section { background: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { min-height: 330px; display: flex; flex-direction: column; padding: 31px; border: 1px solid #e0e2e9; border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.review-card--accent { color: #fff; border-color: transparent; background: radial-gradient(circle at 90% 0, rgba(238,63,154,.27), transparent 40%), #0d0f1b; }
.stars { color: #6444ff; font-size: 16px; letter-spacing: .14em; }
.review-card--accent .stars { color: #f052a1; }
.review-card blockquote { margin: 28px 0 34px; font-size: 21px; line-height: 1.46; letter-spacing: -.025em; font-weight: 750; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-author > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--gradient); font-size: 12px; font-weight: 900; }
.review-author div { display: flex; flex-direction: column; }
.review-author strong { font-size: 14px; }
.review-author small { color: var(--muted); font-size: 12px; }
.review-card--accent .review-author small { color: rgba(255,255,255,.48); }

.radioway-section { padding-top: 40px; background: #fff; }
.radioway-card { display: grid; grid-template-columns: .42fr 1fr; gap: 68px; overflow: hidden; padding: 58px; border-radius: 30px; color: #fff; background: radial-gradient(circle at 12% 12%, rgba(92,54,255,.25), transparent 33%), radial-gradient(circle at 100% 50%, rgba(236,63,154,.13), transparent 33%), #090b14; box-shadow: var(--shadow-dark); }
.radioway-brand { align-self: stretch; display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 350px; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: rgba(255,255,255,.035); }
.radioway-brand svg { width: 104px; height: auto; }
.radioway-brand span { margin-top: 16px; font-size: 33px; font-weight: 900; letter-spacing: -.05em; }
.radioway-copy h2 { max-width: 650px; margin: 15px 0 20px; font-size: clamp(43px, 4.7vw, 65px); line-height: .98; letter-spacing: -.055em; }
.radioway-copy > p { max-width: 680px; color: rgba(255,255,255,.62); }
.radioway-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin: 30px 0; }
.radioway-points span { display: flex; align-items: center; gap: 9px; padding: 13px; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.035); font-size: 11px; font-weight: 750; }
.radioway-points i { color: #957fff; font-size: 10px; font-style: normal; font-weight: 900; }

.cta-section { padding: 120px 0; background: var(--surface-soft); }
.cta-card { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 42px; overflow: hidden; padding: 56px; border-radius: 32px; color: #fff; background: #080a14; box-shadow: var(--shadow-dark); }
.cta-card__orb { position: absolute; left: -80px; bottom: -140px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(86,52,255,.36), transparent 67%); }
.cta-card__copy { position: relative; z-index: 2; }
.cta-card__copy h2 { margin: 15px 0 18px; font-size: clamp(45px, 5.4vw, 68px); line-height: .95; letter-spacing: -.06em; }
.cta-card__copy p { max-width: 520px; color: rgba(255,255,255,.62); }
.cta-card__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cta-card__visual { position: relative; z-index: 1; overflow: hidden; margin: 0 -110px 0 0; border: 1px solid rgba(255,255,255,.13); border-radius: 20px 0 0 20px; box-shadow: var(--shadow-dark); transform: rotate(-2deg); }
.cta-card__visual img { width: 100%; min-height: 330px; object-fit: cover; object-position: center; }

.site-footer { padding: 76px 0 26px; color: #fff; background: #070811; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .65fr .65fr .8fr 1fr; gap: 42px; }
.footer-brand p { max-width: 280px; margin: 22px 0 16px; color: rgba(255,255,255,.5); font-size: 13px; }
.footer-brand > a:last-child { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 700; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column h3 { margin: 4px 0 10px; font-size: 14px; }
.footer-column a { color: rgba(255,255,255,.5); font-size: 12px; transition: color .2s ease; }
.footer-column a:hover { color: #fff; }
.footer-cta { padding: 22px; border: 1px solid rgba(113,74,255,.55); border-radius: 18px; background: rgba(255,255,255,.035); }
.footer-cta strong { display: block; font-size: 18px; letter-spacing: -.02em; }
.footer-cta > span { display: block; margin: 8px 0 19px; color: rgba(255,255,255,.47); font-size: 11px; }
.footer-bottom { min-height: 70px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.35); font-size: 11px; }

.modal { position: fixed; z-index: 200; inset: 0; display: none; place-items: center; padding: 24px; }
.modal.is-open { display: grid; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(3,4,10,.78); backdrop-filter: blur(13px); }
.modal__dialog { position: relative; z-index: 1; width: min(100%, 720px); max-height: min(850px, calc(100vh - 48px)); overflow: auto; padding: 40px; border: 1px solid #e0e2e9; border-radius: 25px; background: #fff; box-shadow: 0 35px 120px rgba(0,0,0,.45); }
.modal__close { position: absolute; top: 14px; right: 14px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #e1e3e9; border-radius: 12px; color: #5a5d69; background: #f7f7fa; font-size: 24px; cursor: pointer; }
.modal__icon { width: 55px; height: 55px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 16px; color: #fff; background: var(--gradient); }
.modal__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.modal__tag { color: #6043ff; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.modal h2 { margin: 10px 0 8px; font-size: 36px; line-height: 1.05; letter-spacing: -.045em; }
.modal p { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid__wide { grid-column: 1 / -1; }
.trial-form label { display: grid; gap: 7px; color: #393c48; font-size: 12px; font-weight: 800; }
.trial-form input[type="text"], .trial-form input[type="email"], .trial-form input[type="tel"], .trial-form input[type="url"] { width: 100%; height: 48px; padding: 0 13px; border: 1px solid #dfe1e8; border-radius: 11px; color: #151722; background: #fafafd; outline: none; }
.trial-form input:focus { border-color: #6548ff; box-shadow: 0 0 0 4px rgba(101,72,255,.1); }
.consent { grid-template-columns: auto 1fr !important; align-items: flex-start; gap: 10px !important; margin-top: 18px; color: #666a77 !important; font-weight: 600 !important; line-height: 1.4; }
.consent input { margin-top: 2px; accent-color: #5c3dff; }
.form-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }
.trial-success { padding: 28px 10px 12px; text-align: center; }
.success-check { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #28d67b, #17ad61); font-size: 30px; font-weight: 900; }
.trial-success p { max-width: 480px; margin: 0 auto 25px; }

@media (max-width: 1120px) {
  .desktop-nav { gap: 18px; }
  .nav-actions .button--ghost { display: none; }
  .hero { min-height: 1030px; }
  .product-story--wide { grid-template-columns: 1fr; }
  .interface-showcase__grid { grid-template-columns: .8fr 1.2fr; gap: 45px; }
  .radioway-card { grid-template-columns: .35fr 1fr; gap: 42px; }
  .radioway-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3,.7fr); }
  .footer-cta { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 20px; }
  .footer-cta > span { margin: 0; }
}

@media (max-width: 920px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding-top: 150px; }
  .hero h1 { font-size: clamp(58px, 10vw, 82px); }
  .hero-float { display: none; }
  .trust-bar__inner { overflow: auto; justify-content: flex-start; white-space: nowrap; scrollbar-width: none; }
  .section { padding: 96px 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 20px; }
  .section-heading--split > p { max-width: 680px; }
  .feature-card, .feature-card--featured, .feature-card:nth-child(2) { grid-column: span 3; }
  .product-story-grid { grid-template-columns: 1fr; }
  .product-story--card { min-height: 590px; }
  .interface-showcase__grid { grid-template-columns: 1fr; }
  .interface-showcase__copy { text-align: center; }
  .interface-showcase__copy .eyebrow { justify-content: center; }
  .interface-showcase__copy > p { margin-inline: auto; }
  .metric-row { max-width: 650px; margin-inline: auto; margin-bottom: 30px; }
  .showcase-jingles { right: 10px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .price-card--pro { transform: none; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 260px; }
  .radioway-card { grid-template-columns: 1fr; padding: 42px; }
  .radioway-brand { min-height: 220px; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-card__visual { margin: 10px -90px -70px 10%; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-column:nth-of-type(4) { grid-column: 2; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .announcement { min-height: 48px; padding-inline: 14px; font-size: 11px; }
  .announcement__link { display: none; }
  .site-header { top: 48px; }
  .nav-shell { min-height: 78px; }
  .brand__mark { width: 42px; }
  .brand__copy strong { font-size: 20px; }
  .mobile-menu { top: 72px; left: 16px; right: 16px; }
  .hero { padding: 132px 0 72px; }
  .hero h1 { margin-top: 18px; font-size: clamp(48px, 14vw, 67px); line-height: .94; }
  .hero__lead { font-size: 17px; }
  .hero__checks { display: grid; justify-content: stretch; text-align: left; }
  .hero__actions { display: grid; width: 100%; }
  .hero__actions .button { width: 100%; }
  .platforms__label { width: 100%; margin-bottom: 4px; }
  .hero-shot-wrap { width: calc(100% - 16px); margin-top: 46px; }
  .app-window { border-radius: 15px; }
  .window-bar { height: 31px; }
  .window-url { padding-inline: 25px; font-size: 8px; }
  .trust-bar__inner { min-height: 67px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2 { font-size: clamp(38px, 11vw, 51px); }
  .section-heading p { font-size: 16px; }
  .feature-grid { display: grid; grid-template-columns: 1fr; }
  .feature-card, .feature-card--featured, .feature-card:nth-child(2) { min-height: 260px; grid-column: auto; }
  .product-story--wide { padding: 26px; }
  .product-story__copy h3 { font-size: 36px; }
  .product-story--card { min-height: 510px; padding: 28px 24px 0; }
  .image-panel--playlist { height: 250px; }
  .image-panel--portrait { width: 88%; height: 320px; }
  .studio-capabilities { justify-content: flex-start; }
  .interface-showcase__copy h2 { font-size: 47px; }
  .metric-row { grid-template-columns: 1fr; }
  .metric-row div { text-align: left; }
  .app-window--showcase { transform: none; }
  .showcase-jingles { position: relative; right: auto; bottom: auto; width: 82%; margin: -12px auto 0; }
  .price-card { padding: 26px; }
  .price strong { font-size: 44px; }
  .review-card { padding: 26px; }
  .review-card blockquote { font-size: 19px; }
  .radioway-card { width: calc(100% - 22px); padding: 28px; border-radius: 25px; }
  .radioway-brand { min-height: 180px; }
  .radioway-copy h2 { font-size: 43px; }
  .cta-section { padding: 80px 0; }
  .cta-card { width: calc(100% - 22px); padding: 32px 26px; border-radius: 25px; }
  .cta-card__copy h2 { font-size: 45px; }
  .cta-card__actions { display: grid; }
  .cta-card__actions .button { width: 100%; }
  .cta-card__visual { margin: 10px -50px -50px 4%; }
  .cta-card__visual img { min-height: 210px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:nth-of-type(4) { grid-column: auto; }
  .footer-cta { display: block; }
  .footer-cta > span { margin: 8px 0 18px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: flex-end; }
  .modal { padding: 12px; }
  .modal__dialog { padding: 28px 20px; border-radius: 20px; }
  .modal h2 { padding-right: 30px; font-size: 31px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__wide { grid-column: auto; }
  .form-actions { display: grid; }
  .form-actions .button { width: 100%; }
}

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


/* ===== Finitions intégration Radioway ===== */
.site-header {
  pointer-events: none;
}

.site-header .nav-shell,
.site-header .mobile-menu {
  pointer-events: auto;
}

.nav-shell {
  padding-inline: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: rgba(7,8,17,.42);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.nav-radioway-link {
  color: rgba(255,255,255,.72);
}

.hero-editor-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 22px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.045);
  font-size: 13px;
  font-weight: 720;
  backdrop-filter: blur(12px);
}

.hero-editor-note span {
  color: #fff;
  font-weight: 900;
}

.hero__actions .button--gradient,
.announcement__link,
.footer-cta .button {
  position: relative;
  overflow: hidden;
}

.hero__actions .button--gradient::after,
.footer-cta .button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transition: transform .6s ease;
}

.hero__actions .button--gradient:hover::after,
.footer-cta .button:hover::after {
  transform: translateX(120%);
}

.product-story,
.feature-card,
.price-card,
.review-card {
  will-change: transform;
}

.radioway-card {
  border: 1px solid rgba(255,255,255,.09);
}

.modal__dialog {
  box-shadow: 0 40px 110px rgba(0,0,0,.52), 0 0 80px rgba(86,52,255,.16);
}

@media (max-width: 1180px) {
  .nav-radioway-link {
    display: none;
  }
}

.trial-form-message {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: #d21c67;
  font-size: .88rem;
  font-weight: 700;
}

.anti-spam-field {
  position: fixed !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

button[aria-busy="true"] {
  cursor: wait;
}

@media (max-width: 720px) {
  .nav-shell {
    width: min(calc(100% - 32px), var(--container));
    padding-inline: 14px;
  }

  .hero-editor-note {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
    text-align: left;
  }
}


/* ===== Vitrine RadioDeck renforcée ===== */
.showcase-summary {
  position: relative;
  overflow: hidden;
  padding: 50px 0 104px;
  color: #fff;
  background: radial-gradient(circle at 50% 0, rgba(86,52,255,.20), transparent 38%), #0b0d19;
}

.showcase-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.showcase-summary__intro,
.showcase-summary__grid {
  position: relative;
  z-index: 1;
}

.showcase-summary__intro {
  max-width: 860px;
  margin-bottom: 28px;
  text-align: center;
}

.showcase-summary__intro .eyebrow {
  justify-content: center;
}

.showcase-summary__intro h2 {
  margin: 13px 0 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.showcase-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.showcase-summary article {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 25px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}

.showcase-summary article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 14px 32px rgba(86,52,255,.27);
  font-size: 12px;
  font-weight: 950;
}

.showcase-summary h3 {
  margin: 28px 0 12px;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.showcase-summary p {
  margin: 0;
  color: rgba(255,255,255,.60);
  font-size: 14px;
}

.pricing-note {
  max-width: 760px;
  margin: 26px auto 0;
  padding: 15px 18px;
  border: 1px solid rgba(86,52,255,.16);
  border-radius: 16px;
  color: #555969;
  background: rgba(255,255,255,.70);
  box-shadow: 0 14px 38px rgba(16,18,39,.06);
  text-align: center;
  font-size: 14px;
  font-weight: 760;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 54px;
  align-items: start;
}

.faq-copy h2 {
  margin: 15px 0 16px;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: .98;
  letter-spacing: -.055em;
}

.faq-copy p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid #e0e2e9;
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-list details[open] {
  border-color: rgba(86,52,255,.30);
  box-shadow: 0 20px 55px rgba(86,52,255,.09);
}

.faq-list summary {
  position: relative;
  padding: 21px 56px 21px 23px;
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.025em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: var(--gradient);
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -3px 0 0;
  padding: 0 23px 22px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .showcase-summary {
    padding: 42px 0 86px;
  }

  .showcase-summary__grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .showcase-summary article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .showcase-summary__intro {
    text-align: left;
  }

  .showcase-summary__intro .eyebrow {
    justify-content: flex-start;
  }

  .showcase-summary article {
    padding: 24px;
    border-radius: 21px;
  }

  .faq-list summary {
    padding: 19px 52px 19px 19px;
    font-size: 16px;
  }

  .faq-list p {
    padding-inline: 19px;
  }
}


/* ===== Traitement premium des captures écran ===== */
.screenshot-frame {
  position: relative;
  isolation: isolate;
}

.screenshot-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 32%, transparent 72%, rgba(236,63,154,.10)),
    radial-gradient(circle at 14% 8%, rgba(35,105,255,.18), transparent 28%);
  mix-blend-mode: screen;
  opacity: .65;
}

.screenshot-frame::after {
  content: attr(data-caption);
  position: absolute;
  z-index: 4;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(7,8,17,.62);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.app-window.screenshot-frame,
.image-panel.screenshot-frame,
.cta-card__visual.screenshot-frame {
  border-color: rgba(255,255,255,.16);
  box-shadow:
    0 30px 85px rgba(6,8,18,.34),
    0 0 0 1px rgba(91,61,255,.10),
    0 0 70px rgba(86,52,255,.12);
}

.image-panel.screenshot-frame {
  transform: translateZ(0);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
    #090b16;
}

.image-panel.screenshot-frame img,
.app-window.screenshot-frame img,
.cta-card__visual.screenshot-frame img,
.showcase-jingles.screenshot-frame img {
  position: relative;
  z-index: 1;
  filter: saturate(1.08) contrast(1.04);
}

.app-window--hero.screenshot-frame::after {
  top: 62px;
  bottom: auto;
  left: 22px;
}

.app-window--hero .window-bar,
.app-window--showcase .window-bar {
  background: linear-gradient(180deg, rgba(24,28,46,.98), rgba(12,15,28,.98));
}

.image-panel--landscape {
  border-radius: 24px;
}

.image-panel--landscape img {
  object-position: center center;
}

.image-panel--playlist img {
  object-position: center top;
}

.image-panel--portrait {
  border-radius: 24px 24px 0 0;
}

.image-panel--portrait img {
  object-position: center top;
}

.showcase-jingles.screenshot-frame {
  border-color: rgba(255,255,255,.18);
  background: rgba(12,14,27,.96);
}

.showcase-jingles.screenshot-frame::after {
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  font-size: 9px;
}

.showcase-jingles > span {
  position: relative;
  z-index: 3;
}

.cta-card__visual.screenshot-frame::after {
  left: 18px;
  bottom: 18px;
}

.product-story--wide .image-panel.screenshot-frame {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transform-origin: center;
}

.product-story--card .image-panel.screenshot-frame {
  box-shadow:
    0 -18px 60px rgba(12,14,30,.12),
    0 0 46px rgba(86,52,255,.10);
}

@media (max-width: 920px) {
  .product-story--wide .image-panel.screenshot-frame {
    transform: none;
  }
}

@media (max-width: 640px) {
  .screenshot-frame::after {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 7px 10px;
    font-size: 9px;
  }

  .app-window--hero.screenshot-frame::after {
    top: 45px;
    bottom: auto;
    left: 13px;
  }
}
