:root {
  color-scheme: dark;
  --bg: #090b0d;
  --panel: #12161a;
  --line: rgba(255,255,255,.12);
  --text: #f7f8f8;
  --muted: #9da7ad;
  --accent: #29c5b6;
  --warm: #ffb84d;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--bg); font: 16px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", sans-serif; }
a { color: inherit; text-decoration: none; }
.nav { position: fixed; z-index: 20; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; min-height: 68px; padding: 10px clamp(20px, 5vw, 72px); background: rgba(9,11,13,.82); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; gap: 11px; font-size: 18px; font-weight: 800; }
.brand img { width: 38px; height: 38px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 22px; color: #d9dfe2; font-size: 14px; }
.nav-cta, .primary { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 9px 18px; color: #06110f; background: var(--accent); border-radius: 7px; font-weight: 800; }
.hero { position: relative; min-height: min(860px, 92vh); display: flex; align-items: end; overflow: hidden; background: #0b0d0f; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; opacity: .6; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(0deg, #090b0d 0%, rgba(9,11,13,.52) 52%, rgba(9,11,13,.2) 100%); }
.hero-copy { position: relative; width: min(1180px, 100%); margin: 0 auto; padding: 150px 28px 86px; }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: 13px; font-weight: 850; letter-spacing: 0; }
h1 { max-width: 780px; margin: 0; font-size: clamp(56px, 10vw, 112px); line-height: .94; letter-spacing: 0; }
.lead { max-width: 670px; margin: 24px 0 0; color: #d5dadd; font-size: clamp(18px, 2.2vw, 25px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.secondary { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 9px 18px; background: rgba(255,255,255,.1); border: 1px solid var(--line); border-radius: 7px; font-weight: 750; }
.section { padding: 88px 28px; border-top: 1px solid var(--line); }
.section-inner { width: min(1180px, 100%); margin: 0 auto; }
.section h2 { max-width: 720px; margin: 0 0 18px; font-size: clamp(34px, 5vw, 60px); line-height: 1.05; letter-spacing: 0; }
.section-intro { max-width: 720px; margin: 0 0 38px; color: var(--muted); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature { min-height: 220px; padding: 30px; background: var(--panel); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature strong { display: block; margin-bottom: 12px; font-size: 21px; }
.feature p { margin: 0; color: var(--muted); }
.pro-band { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.pro-facts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pro-facts div { display: flex; justify-content: space-between; gap: 20px; padding: 19px 22px; background: #0e1215; }
.pro-facts span { color: var(--muted); }
.legal { width: min(860px, 100%); margin: 0 auto; padding: 120px 28px 90px; }
.legal h1 { font-size: clamp(44px, 7vw, 72px); }
.legal h2 { margin: 40px 0 10px; font-size: 24px; }
.purchase-panel { margin-top: 48px; padding: 28px; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; }
.purchase-panel h2 { margin: 0; font-size: clamp(24px, 4vw, 36px); line-height: 1.2; }
.purchase-note { margin: 12px 0 22px; color: var(--muted); }
.purchase-form { display: grid; gap: 10px; max-width: 560px; }
.purchase-form label:not(.consent) { color: #d9dfe2; font-size: 14px; font-weight: 700; }
.purchase-form input[type=email] { width: 100%; min-height: 46px; padding: 10px 13px; color: var(--text); background: #0b0f12; border: 1px solid var(--line); border-radius: 7px; font: inherit; }
.consent { display: flex; align-items: flex-start; gap: 9px; margin: 4px 0 8px; color: var(--muted); font-size: 13px; }
.consent input { margin-top: 5px; accent-color: var(--accent); }
.consent a { color: var(--accent); text-decoration: underline; }
.purchase-message { min-height: 24px; margin: 0; color: var(--warm); font-size: 14px; }
.legal p, .legal li { color: #c6ced2; }
footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding: 38px max(28px, calc((100vw - 1180px) / 2)); color: var(--muted); border-top: 1px solid var(--line); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 780px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { min-height: 780px; }
  .hero-copy { padding-bottom: 62px; }
  .feature-grid, .pro-band { grid-template-columns: 1fr; }
  .section { padding: 68px 20px; }
}

/* Homepage follows the same visual language as Tubo while keeping RovePlayer content. */
.home-page { background: radial-gradient(circle at 80% 5%, rgba(41,197,182,.12), transparent 28rem), #07080d; }
.home-page .site-header { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: auto; padding: 18px 28px; background: rgba(7,8,13,.78); border-bottom: 1px solid var(--line); backdrop-filter: blur(24px); }
.home-page .nav-links { gap: 25px; }
.home-page main { overflow: hidden; }
.tubo-hero { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; max-width: 1200px; min-height: 760px; margin: auto; padding: 70px 40px 90px; }
.tubo-hero .hero-copy { width: auto; margin: 0; padding: 0; }
.tubo-hero h1 { margin: 0 0 26px; font-size: clamp(54px, 7vw, 92px); line-height: .98; letter-spacing: -.055em; }
.tubo-hero h1 span, .home-pro-copy h2 span { color: #ffd348; }
.tubo-hero .lead { max-width: 620px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 28px 0; }
.store-button { display: flex; flex-direction: column; justify-content: center; min-height: 58px; padding: 9px 20px; color: #131313; background: #ffd348; border-radius: 14px; line-height: 1.3; }
.store-button small { font-size: 11px; font-weight: 700; }
.text-link { color: var(--muted); font-weight: 700; }
.platforms { display: flex; flex-wrap: wrap; gap: 8px; }
.platforms span { padding: 6px 11px; color: #c7c9d2; background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 999px; font-size: 12px; }
.hero-visual { position: relative; display: grid; place-items: center; min-height: 640px; }
.glow { position: absolute; width: 420px; height: 420px; background: var(--accent); border-radius: 50%; filter: blur(130px); opacity: .25; }
.phone-frame { position: relative; width: min(330px, 74vw); height: 675px; padding: 9px; overflow: hidden; background: #020204; border: 1px solid rgba(255,255,255,.24); border-radius: 48px; box-shadow: 0 45px 100px rgba(0,0,0,.55); transform: rotate(3deg); }
.phone-frame::before { content: ""; position: absolute; z-index: 2; top: 17px; left: 50%; width: 100px; height: 27px; transform: translateX(-50%); background: #000; border-radius: 20px; }
.phone-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 40px; }
.app-preview-stack { isolation: isolate; }
.app-preview-stack .phone-frame { position: absolute; }
.app-preview-stack .home-phone { z-index: 2; left: 5%; }
.app-preview-stack .detail-phone { z-index: 1; right: 0; width: min(248px, 56vw); height: 508px; transform: rotate(9deg) translateY(62px); opacity: .92; }
.app-preview-stack .detail-phone::before { width: 76px; height: 21px; top: 13px; }
.app-preview-stack .detail-phone img { border-radius: 32px; }
.home-pro-showcase { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 58px; max-width: 1120px; margin: 28px auto 40px; padding: 58px 54px; background: radial-gradient(circle at 78% 35%, rgba(255,211,72,.12), transparent 20rem), linear-gradient(135deg, #103a37, #11181a 64%, #11131b); border: 1px solid rgba(41,197,182,.42); border-radius: 32px; box-shadow: 0 32px 90px rgba(0,0,0,.36); }
.home-pro-copy h2 { margin: 0 0 18px; font-size: clamp(42px, 5vw, 66px); line-height: 1.02; letter-spacing: -.05em; }
.home-pro-copy > p:not(.eyebrow) { max-width: 650px; color: #cbd5d5; font-size: 17px; }
.home-pro-pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 30px; }
.home-pro-pills span { padding: 7px 12px; color: #fff1b2; background: rgba(255,211,72,.11); border: 1px solid rgba(255,211,72,.23); border-radius: 999px; font-size: 12px; font-weight: 750; }
.home-pro-button { display: inline-flex; padding: 13px 21px; color: #111; background: #ffd348; border-radius: 15px; font-weight: 850; }
.home-pro-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; width: min(300px, 100%); aspect-ratio: 1; margin-inline: auto; color: #171117; background: radial-gradient(circle at 35% 25%, #fff1a2, #ffd348 44%, #ed9b2f); border-radius: 50%; box-shadow: 0 28px 70px rgba(255,211,72,.2), inset 0 0 0 10px rgba(255,255,255,.18); transform: rotate(5deg); }
.home-pro-badge img { width: 66px; height: 66px; margin-bottom: 12px; border: 4px solid #171117; border-radius: 18px; }
.home-pro-badge strong { font-size: 46px; line-height: .95; letter-spacing: .09em; }
.home-pro-badge span { margin-top: 7px; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.home-pro-badge small { margin-top: 15px; font-size: 13px; font-weight: 800; }
.home-page .section { max-width: 1200px; margin: auto; padding: 100px 40px; border-top: 0; }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading h2, .support-card h2 { margin: 0 0 16px; font-size: clamp(36px, 5vw, 58px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading > p:last-child, .support-card p { color: var(--muted); }
.home-page .feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; border: 0; }
.feature-card { min-height: 250px; padding: 28px; background: linear-gradient(145deg, #181b25, #11131b); border: 1px solid var(--line); border-radius: 24px; }
.feature-card.accent-card { background: linear-gradient(145deg, #103530, #11191a); border-color: rgba(41,197,182,.35); }
.feature-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 42px; color: #ffd348; background: rgba(255,255,255,.07); border-radius: 13px; font-size: 22px; }
.feature-card h3 { margin: 0 0 8px; font-size: 21px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }
.support-card { display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 1120px; margin: 50px auto 120px; padding: 56px; background: linear-gradient(130deg, #10302e, #151720); border: 1px solid rgba(41,197,182,.28); border-radius: 30px; }
.mail-button { flex: 0 0 auto; padding: 14px 20px; color: #07110f; background: var(--accent); border-radius: 14px; font-weight: 800; }
@media (max-width: 800px) {
  .home-page .nav-links a:not(:nth-child(2)) { display: none; }
  .tubo-hero { grid-template-columns: 1fr; gap: 16px; min-height: auto; padding: 70px 22px; }
  .hero-visual { min-height: 600px; }
  .app-preview-stack .home-phone { left: 2%; }
  .app-preview-stack .detail-phone { right: 2%; width: min(210px, 48vw); height: 430px; transform: rotate(8deg) translateY(76px); }
  .home-pro-showcase { grid-template-columns: 1fr; margin-inline: 18px; padding: 38px 26px; }
  .home-page .feature-grid { grid-template-columns: 1fr; }
  .home-page .section { padding: 74px 20px; }
  .support-card { align-items: flex-start; flex-direction: column; margin: 30px 18px 80px; padding: 34px 26px; }
}
