:root {
  --bg: #fff8f3;
  --ink: #111827;
  --muted: #64748b;
  --line: rgba(17, 24, 39, 0.12);
  --red: #e92b2b;
  --red-dark: #bd1f1f;
  --cream: #fffdf8;
  --dark: #0d1117;
  --green: #13b981;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 248, 243, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 19px;
}

nav {
  display: flex;
  gap: 24px;
  color: #475569;
  font-size: 14px;
}

nav a,
.site-footer a {
  text-decoration: none;
}

.top-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.language-shell {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 8px 6px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.language-shell select {
  max-width: 160px;
  border: 0;
  border-radius: 999px;
  padding: 7px 24px 7px 8px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

.nav-cta,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta,
.primary-cta {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 24px rgba(233, 43, 43, 0.22);
}

.secondary-cta {
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px) clamp(56px, 7vw, 84px);
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.98;
}

.lede {
  margin: 24px 0 0;
  max-width: 620px;
  color: #334155;
  font-size: 21px;
  line-height: 1.45;
}

.cta-row,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.trust-row {
  gap: 10px;
  color: #475569;
  font-size: 14px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.68);
}

.hero-visual {
  min-width: 0;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #0b0f15;
  box-shadow: 0 36px 70px rgba(15, 23, 42, 0.28);
}

.browser-top {
  display: grid;
  grid-template-columns: 12px 12px 12px 1fr;
  gap: 8px;
  align-items: center;
  padding: 14px 16px;
  background: #151a23;
}

.browser-top span {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: #ef4444;
}

.browser-top span:nth-child(2) {
  background: #f59e0b;
}

.browser-top span:nth-child(3) {
  background: #22c55e;
}

.address {
  justify-self: end;
  width: min(420px, 100%);
  border-radius: 999px;
  padding: 9px 14px;
  background: #0d1117;
  color: #94a3b8;
  font-size: 13px;
}

.browser-body {
  display: grid;
  grid-template-columns: 168px 1fr 150px;
  gap: 18px;
  min-height: 410px;
  padding: 20px;
}

.yt-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

.yt-logo {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  font-weight: 800;
}

.yt-logo span {
  width: 24px;
  height: 16px;
  border-radius: 5px;
  background: var(--red);
}

.nav-item {
  position: relative;
  width: 136px;
  margin-bottom: 8px;
  border-radius: 9px;
  padding: 10px 12px;
  color: #cbd5e1;
}

.nav-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-item.struck {
  color: rgba(255, 255, 255, 0.28);
}

.nav-item.struck::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 18px;
  top: 50%;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
  transform: rotate(-8deg);
}

.watch-panel {
  position: relative;
}

.unshort-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(19, 185, 129, 0.12);
  color: #6ee7b7;
  font-weight: 800;
  font-size: 13px;
}

.video-player {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(233, 43, 43, 0.32), transparent 52%),
    linear-gradient(180deg, #1f2937, #05070a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.play {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: #fff;
  position: relative;
}

.play::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 23px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid var(--red);
}

.video-meta {
  margin-top: 18px;
}

.title-line,
.small-line,
.clean-side div {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.title-line {
  width: 78%;
  height: 18px;
}

.small-line {
  width: 44%;
  height: 12px;
  margin-top: 10px;
}

.clean-side {
  display: grid;
  align-content: start;
  gap: 12px;
}

.clean-side div {
  height: 72px;
  opacity: 0.34;
}

.positioning,
.grid-section,
.privacy-band,
.faq {
  padding: 72px clamp(20px, 5vw, 72px);
}

.positioning {
  background: var(--dark);
  color: white;
}

.positioning p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 900;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

article,
details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  padding: 24px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-weight: 900;
}

h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

article p,
details p,
.privacy-band p {
  margin: 0;
  color: #475569;
}

.privacy-band {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 34px;
  align-items: start;
  background: #fff;
}

.privacy-band p:last-child {
  font-size: 21px;
}

.faq {
  max-width: 980px;
  margin: 0 auto;
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 20px;
}

details p {
  margin-top: 12px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  border-top: 1px solid var(--line);
  color: #64748b;
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
}

:dir(rtl) .nav-item.struck::after {
  transform: rotate(8deg);
}

:dir(rtl) .play::after {
  left: 24px;
  transform: scaleX(-1);
}

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .hero,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .browser-body {
    grid-template-columns: 120px 1fr;
  }

  .clean-side {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
  }

  .top-actions {
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 14px 16px;
    gap: 12px;
  }

  .nav-cta {
    display: none;
  }

  .language-shell span {
    display: none;
  }

  .language-shell select {
    max-width: 128px;
  }

  h1 {
    font-size: 48px;
  }

  .lede,
  .privacy-band p:last-child {
    font-size: 18px;
  }

  .browser-body {
    grid-template-columns: 1fr;
    min-height: 320px;
  }

  .yt-sidebar {
    display: none;
  }
}
