:root {
  --header-bg: #202124;
  --text: #202124;
  --muted: #5f6368;
  --surface: #ffffff;
  --border: #dadce0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

.site-header--inline {
  position: static;
  width: auto;
  margin: 0 0 6px;
}

.site-header__inner {
  max-width: 1920px;
  min-height: 112px;
  margin: 0 auto;
  padding: 24px 56px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-header__inner--inline {
  max-width: none;
  min-height: auto;
  margin: 0;
  padding: 0;
}

.site-header__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: block;
}

.site-header__title {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.site-header__title--inline {
  color: var(--text);
}

.hero {
  height: 567px;
  background-image: url("assets/hero.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-nav {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.page-nav__inner {
  width: min(100%, 944px);
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  gap: 36px;
}

.page-nav__link {
  position: relative;
  padding: 18px 0 16px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-decoration: none;
  transition: color 120ms ease;
}

.page-nav__link:hover {
  color: var(--text);
}

.page-nav__link--active {
  color: var(--text);
}

.page-nav__link--active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--text);
}

.content {
  padding: 16px 0 16px;
}

.home-panel {
  width: min(100%, 944px);
  margin: 0 auto;
  padding: 0 64px;
}

.home-panel__inner {
  min-height: 280px;
}

.home-panel h1 {
  margin: 0 0 24px;
  font-size: clamp(54px, 6.6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.home-copy {
  max-width: 760px;
  margin: 0 0 28px;
}

.home-copy h2 {
  margin: 26px 0 12px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.home-copy p,
.home-copy li {
  font-size: 20px;
  line-height: 1.65;
}

.home-copy p {
  margin: 0 0 16px;
}

.home-copy ul {
  margin: 0 0 20px 22px;
  padding-left: 18px;
}

.home-copy li + li {
  margin-top: 6px;
}

.store-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  padding: 14px 20px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.store-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.store-cta__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-cta__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.store-cta__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0 32px;
}

.video-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  min-height: 100px;
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s ease;
}

.video-card:hover {
  background: #eef0f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.video-card__tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #d93025; /* YouTube red */
  margin-bottom: 4px;
}

.video-card__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.video-card--short {
  border-left: 4px solid #d93025;
}

.policy {
  width: min(100%, 944px);
  margin: 0 auto;
  padding: 0 64px;
}

.policy h1 {
  margin: 0 0 18px;
  font-size: clamp(21px, 2.8vw, 29px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.policy__subtitle {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.policy section + section {
  margin-top: 20px;
}

.policy h2 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.policy h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.policy p,
.policy li {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.policy p {
  margin: 0 0 4px;
}

.policy ul {
  margin: 0 0 8px 18px;
  padding-left: 32px;
}

.policy strong {
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.site-footer__inner {
  width: min(100%, 944px);
  margin: 0 auto;
  padding: 20px 64px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 15px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.info-badge {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 36px;
  height: 36px;
  border: 2px solid #5f6368;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  color: #5f6368;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 960px) {
  .site-header__inner {
    min-height: 60px;
    padding: 5px 6px;
    gap: 18px;
  }

  .site-header__logo {
    width: 44px;
    height: 44px;
  }

  .site-header__title {
    font-size: clamp(28px, 6vw, 42px);
  }

  .hero {
    height: min(62vw, 420px);
  }

  .content {
    padding: 9px 0 8px;
  }

  .page-nav__inner,
  .home-panel,
  .policy {
    padding: 0 24px;
  }

  .page-nav__inner {
    gap: 24px;
  }

  .page-nav__link {
    padding: 16px 0 14px;
    font-size: 15px;
  }

  .home-copy h2 {
    font-size: 22px;
  }

  .home-copy p,
  .home-copy li {
    font-size: 14px;
  }

  .store-cta {
    gap: 12px;
    padding: 12px 16px;
  }

  .store-cta__icon {
    width: 24px;
    height: 24px;
  }

  .store-cta__text {
    font-size: 16px;
  }

  .policy__subtitle {
    margin-bottom: 56px;
    font-size: clamp(11px, 1.7vw, 14px);
  }

  .policy h2 {
    font-size: clamp(13px, 2.1vw, 16px);
  }

  .policy h3 {
    font-size: clamp(10px, 1.75vw, 12px);
  }

  .policy p,
  .policy li {
    font-size: clamp(12px, 1.3vw, 14px);
    line-height: 1.3;
  }

  .site-footer__inner {
    padding: 18px 24px 30px;
  }
}

/* Cookie Overlay & Modal Styles */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner {
  width: min(90%, 500px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  padding: 40px;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.cookie-banner__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.cookie-banner__text a {
  color: var(--muted);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  width: 100%;
}

.cookie-btn {
  flex: 1;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  transition: all 0.2s ease;
}

.cookie-btn--primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 32px 24px;
  }
  
  .cookie-banner__actions {
    flex-direction: column;
  }
}

.policy {
}

.cookie-banner__text proletarian {
  color: var(--muted);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  transition: all 0.2s ease;
}

.cookie-btn--primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.cookie-btn:hover {
  opacity: 0.8;
}

@media (max-width: 960px) {
  .cookie-banner__inner {
    flex-direction: column;
    padding: 0 24px;
    align-items: flex-start;
    gap: 16px;
  }
  
  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}