/* === Normalize === */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* === Variables === */

:root {
  /* ---------------- Colors ---------------- */
  /* Brand */
  --color-brand-primary: #A1E716;
  --color-brand-primary-dark: #6AA600;
  --color-brand-primary-darker: #558D00;

  /* Base & BG */
  --color-base-white: #FFFFFF;
  --color-bg-surface: #ECF8D9;
  --color-bg-dark: #060606;
  --color-bg-grey: #B3B3B3;

  /* Text */
  --color-text-default: #FFFFFF;
  --color-text-muted: #B3B3B3;
  --color-text-dark: #060606;
  --color-text-surface: #ECF8D9;

  /* States */
  --color-error: #EF473A;

  /* ---------------- Breakpoints ---------------- */
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;

  /* ---------------- Typography ---------------- */
  /* Font sizes (REM) — desktop defaults */
  --fs-body: 1.25rem;
  /* 20px */
  --fs-button: 1.25rem;
  /* 20px */
  --fs-small: 0.875rem;
  /* 14px */
  --fs-tags: 0.875rem;
  /* 14px */
  --fs-menu-header: 1rem;
  /* 16px */
  --fs-menu-footer: 0.875rem;
  /* 14px */
  --fs-link: 1.125rem;
  /* 18px */
  --fs-hero: 1.5rem;
  /* 24px */
  --fs-subheader: 1.25rem;
  /* 20px */
  --fs-h1: 5rem;
  /* 48px */
  --fs-h2: 3rem;
  /* 40px */
  --fs-h3: 2rem;
  /* 32px */

  /* Line-heights */
  --lh-headings: 1.2;
  /* 120% for all headings */
  --lh-body: 1.6;
  /* 160% for text */
  --lh-tight: 1;
  /* 100% for buttons, header menu, tags */

  /* ---------------- Radius ---------------- */
  --radius-0: 0rem;
  /* 0px */
  --radius-4: 0.25rem;
  /* 4px */
  --radius-8: 0.5rem;
  /* 8px */
  --radius-12: 0.75rem;
  /* 12px */
  --radius-16: 1rem;
  /* 16px */
  --radius-24: 1.5rem;
  /* 24px */
  --radius-32: 2rem;
  /* 32px */
  --radius-40: 2.5rem;
  /* 40px */
  --radius-48: 3rem;
  /* 48px */

  /* ---------------- Border widths ---------------- */
  --border-1: 1px;
  --border-2: 2px;

  /* ---------------- Spacing scale (REM) ---------------- */
  --space-4: 0.25rem;
  /* 4px */
  --space-8: 0.5rem;
  /* 8px */
  --space-12: 0.75rem;
  /* 12px */
  --space-16: 1rem;
  /* 16px */
  --space-24: 1.5rem;
  /* 24px */
  --space-32: 2rem;
  /* 32px */
  --space-40: 2.5rem;
  /* 40px */
  --space-48: 3rem;
  /* 48px */
  --space-64: 4rem;
  /* 64px */
  --space-96: 6rem;
  /* 96px */
  --space-128: 8rem;
  /* 128px */

  /* ---------------- Gap aliases (REM) ---------------- */
  --gap-4: var(--space-4);
  --gap-8: var(--space-8);
  --gap-12: var(--space-12);
  --gap-16: var(--space-16);
  --gap-24: var(--space-24);
  --gap-32: var(--space-32);
  --gap-48: var(--space-48);
  --gap-64: var(--space-64);
  --gap-96: var(--space-96);
  --gap-128: var(--space-128);

  /* ---------------- Button tokens ---------------- */
  /* Colors */
  --btn-primary-bg-default: var(--color-brand-primary);
  --btn-primary-bg-hover: var(--color-brand-primary-dark);
  --btn-primary-bg-active: var(--color-brand-primary-darker);
  --btn-primary-text: var(--color-text-dark);

  --btn-inverse-bg-default: var(--color-base-white);
  --btn-inverse-bg-hover: var(--color-bg-surface);
  --btn-inverse-bg-active: #E0F0C0;
  --btn-inverse-text: var(--color-text-dark);

  --btn-secondary-text: var(--color-brand-primary);
  --btn-secondary-border: var(--color-brand-primary);
  --btn-secondary-bg-hover: var(--color-brand-primary);

  /* Layout (REM) — desktop */
  --btn-space-x-sm: 1rem;
  /* 16px */
  --btn-space-x-md: 1.5rem;
  /* 24px */
  --btn-space-x-lg: 2rem;
  /* 32px */
  --btn-space-y-sm: 0.75rem;
  /* 12px */
  --btn-space-y-md: 1rem;
  /* 16px */
  --btn-space-y-lg: 1.5rem;
  /* 24px */
  --btn-gap-icon: 0.5rem;
  /* 8px */
  --btn-gap-loading-offset: 0.5rem;
  /* 8px */
  --btn-gap-icon-hover: 0.75rem;
  /* 12px */
  --btn-icon-x: 2rem;
  /* 32px */
  --btn-icon-y: 2rem;
  /* 32px */

  /* ---------------- Effects (shadows, focus) ---------------- */
  /* Effect styles */
  --shadow-s: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
  --shadow-s-dark: 0 4px 12px 0 rgba(161, 231, 22, 0.75);
  --shadow-m: 0 8px 24px 0 rgba(0, 0, 0, 0.18);
  --shadow-primary: 0 0 3px 3px rgba(161, 231, 22, 0.32);

  --focus-ring-color: #A1E716;
  --focus-ring-opacity: 0.32;
  --overlay-backdrop: rgba(6, 6, 6, 0.6);

  /* ---------------- State opacities ---------------- */
  --opacity-disabled: 0.4;
}

/* ---------------- Mobile overrides (≤ md) ---------------- */
@media (max-width: 768px) {
  :root {
    /* Typography (REM) - mobile */
    --fs-body: 1rem;
    /* 16px */
    --fs-button: 1.125rem;
    /* 18px */
    --fs-small: 0.75rem;
    /* 12px */
    --fs-tags: 0.75rem;
    /* 12px */
    --fs-menu-header: 0.875rem;
    /* 14px */
    --fs-menu-footer: 0.75rem;
    /* 12px */
    --fs-link: 1rem;
    /* 16px */
    --fs-hero: 1.25rem;
    /* 20px */
    --fs-subheader: 1rem;
    /* 16px */
    --fs-h1: 3.75rem;
    /* 36px */
    --fs-h2: 2rem;
    /* 32px */
    --fs-h3: 1.5rem;
    /* 24px */

    /* Spacing tweak */
    --space-128: 5rem;
    /* 80px */

    /* Button layout (REM) - mobile */
    --btn-space-x-sm: 0.75rem;
    /* 12px */
    --btn-space-x-md: 1rem;
    /* 16px */
    --btn-space-x-lg: 1.5rem;
    /* 24px */
    --btn-space-y-sm: 0.5rem;
    /* 8px */
    --btn-space-y-md: 0.75rem;
    /* 12px */
    --btn-space-y-lg: 0.75rem;
    /* 12px */
    --btn-icon-x: 1.5rem;
    /* 24px */
    --btn-icon-y: 1.5rem;
    /* 24px */
  }
}


/* === Utilities === */
/* Typography */

/* Base font */
html,
body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 100%;
  color: var(--color-text-default);
  background: var(--color-bg-dark);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings & buttons */
h1,
h2,
h3,
h4,
h5,
h6,
.button {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: var(--lh-headings);
  font-weight: 600;
}

p {
  font-size: var(--fs-body);
  margin-bottom: var(--space-16);
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding-left: 1.2em;
}

li {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* --- Layout container --- */
.container {
  width: min(100% - 4rem, 72rem);
  margin-inline: auto;
  padding-inline: 2rem;
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 2rem, 72rem);
    padding-inline: 1rem;
  }
}

/* === Button === */

/* ---------- Base ---------- */
.button {
  /* layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap-icon, 0.5rem);
  padding: var(--space-16) var(--space-32);

  /* shape */
  border-radius: var(--radius-48);
  border: none;
  background: transparent;

  /* typography */
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: var(--fs-button);
  line-height: var(--lh-tight);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-align: center;
  color: inherit;

  /* behavior */
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, opacity .15s ease, box-shadow .15s ease;
}

/* Icon element inside button */
.button__icon {
  width: var(--btn-icon-x, 2rem);
  height: var(--btn-icon-y, 2rem);
  flex: 0 0 auto;
  display: inline-block;
}

/* Focus ring */
.button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-bg-surface);
}

/* Disabled */
.button[disabled],
.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: var(--opacity-disabled);
  cursor: not-allowed;
  pointer-events: none;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}

/* ---------- Variants ---------- */

.button--primary {
  background: var(--btn-primary-bg-default);
  color: var(--btn-primary-text);
  transform: scale(1);
  transition:
    background-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.button--primary .button__icon {
  transition: transform .2s ease, filter .2s ease;
}

.button--primary:hover {
  background: var(--btn-primary-bg-hover);
  color: var(--color-base-white);
  transform: scale(1.03);
}

.button--primary:hover .button__icon {
  transform: rotate(-45deg);
  filter: brightness(0) invert(1);
}

.button--primary:active {
  background: var(--btn-primary-bg-active);
}

.button--secondary {
  background: transparent;
  color: var(--btn-secondary-text);
  border: var(--border-2) solid var(--btn-secondary-border);
}

.button--secondary:hover {
  background: var(--btn-secondary-bg-hover);
  color: var(--color-text-dark);
}

.button--secondary:active {
  background: var(--btn-primary-bg-active);
  color: var(--color-text-dark);
}

.button--inverse {
  background: var(--btn-inverse-bg-default);
  color: var(--btn-inverse-text);
  transition:
    background-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.button--inverse .button__icon {
  transition: transform .2s ease, filter .2s ease;
}

.button--inverse:hover {
  background: var(--btn-inverse-bg-hover);
  color: var(--btn-inverse-text);
  transform: scale(1.03);
}

/* surface */
.button--inverse:active {
  background: var(--btn-inverse-bg-active);
}

/* #E0F0C0 */

.button--inverse:hover .button__icon {
  transform: rotate(-45deg);
}

.button--tertiary {
  background: transparent;
  color: var(--color-brand-primary-darker);
  padding: 0;
  border-radius: 0;
  border-bottom: var(--border-2) solid transparent;
}

.button--tertiary:hover,
.button--tertiary:focus-visible {
  border-bottom-color: var(--color-brand-primary-darker);
  color: var(--color-brand-primary-darker);
}

.button--sm {
  padding: var(--btn-space-y-sm) var(--btn-space-x-sm);
}

.button--md {
  padding: var(--btn-space-y-md) var(--btn-space-x-md);
}

.button--lg {
  padding: var(--btn-space-y-lg) var(--btn-space-x-lg);
}

.button__icon--right {
  margin-left: var(--btn-gap-icon);
}

.button__icon--left {
  margin-right: var(--btn-gap-icon);
}

@media (max-width: 768px) {
  .button {
    font-size: var(--fs-button);
  }

  .button {
    padding: var(--space-16);
  }
}

/* === Section === */

.section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-48);
  padding: var(--space-128) var(--space-32);
}
.section__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (max-width: 1024px) {
  .section__inner {
    padding-block: var(--space-64);
    gap: var(--space-40);
  }
}

@media (max-width: 768px) {
  .section__inner {
    padding-block: var(--space-48);
    padding-left: var(--space-16);
    padding-right: var(--space-16);
  }
}

.section__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-16);
  align-self: stretch;
  z-index: 99;
}

.section__label {
  position: absolute;
  z-index: 1;
  right: 0;
  top: -6rem;
  color: var(--color-text-muted);
  opacity: .08;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 10rem;
  font-weight: 600;
  line-height: 0.71;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .section__label {
    top: -4rem;
    left: 0;
    right: auto;
    font-size: 7.5rem;
  }
}

@media (max-width: 768px) {
  .section__label {
    top: -3rem;
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  .section__label {
    top: -2.5rem;
    font-size: 3.8rem;
  }
}

@media (max-width: 360px) {
  .section__label {
    font-size: 3.2rem;
  }
}

.section__title {
  color: var(--color-bg-surface);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-headings);
  text-transform: capitalize;
  margin: 0;
}

.section__subtitle {
  color: var(--color-text-default);
  font-size: var(--fs-hero);
  font-style: italic;
  font-weight: 500;
  line-height: var(--lh-body);
  margin: 0;
}

.section__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
  align-self: stretch;
}

.section__cta p {
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
}

.email {
  color: var(--color-text-default);
  font-size: var(--fs-body);
}

/* === Header === */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg-dark);
  color: var(--color-text-default);
  transition: box-shadow 0.2s ease;
}

.header--scrolled {
  box-shadow: var(--shadow-primary);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.header__logo img {
  display: block;
  height: auto;
  max-height: 5rem;
  transition: max-height .2s ease;
}

.header--scrolled .header__logo img {
  max-height: 4rem;
  width: auto;
}

.header__nav {
  display: block;
}

.header__list {
  display: flex;
  align-items: center;
  gap: var(--gap-16);
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__link {
  display: inline-block;
  padding-bottom: var(--space-4);
  border-bottom: var(--border-2) solid transparent;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--fs-menu-header);
  line-height: var(--lh-tight);
  color: var(--color-text-default);
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, opacity .2s ease;
}

.header__link:hover,
.header__link:focus-visible {
  color: var(--color-brand-primary);
  border-bottom-color: var(--color-brand-primary);
  outline: none;
}

.header__hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 18px;
  width: 24px;
  background: transparent;
  border: 0;
  padding: 0;
}

.hamburger__line {
  width: 100%;
  height: 3px;
  background-color: var(--color-base-white);
  border-radius: 4px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}

@media (max-width: 1200px) {
  .header__logo img {
    max-height: 4.5rem;
    width: auto;
  }
}

@media (max-width: 1200px) {
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    display: none;
    position: fixed;
    inset: 96px 0 0 0;
    background: var(--color-bg-dark);
    padding: 1rem 2rem;
  }

  .header__logo img {
    max-height: 4rem;
  }

  .header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-24);
  }

  .header.is-open .header__nav {
    display: block;
  }

  .header.is-open .header__hamburger .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.is-open .header__hamburger .hamburger__line:nth-child(2) {
    opacity: 0;
  }

  .header.is-open .header__hamburger .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .header__inner {
    padding: 1rem;
  }

  .header__nav {
    padding: 1rem;
    inset: 72px 0 0 0;
  }

  .header__logo img {
    max-height: 2.5rem;
  }

  .header--scrolled .header__logo img {
    max-height: 2.5rem;
  }
}

/* === Hero === */

.hero {
  color: var(--color-text-default);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--gap-48);
  padding-block: var(--space-96) var(--space-128);
}

.hero__content {
  width: 41.25rem;
  max-width: 100%;
}

.hero__title {
  color: var(--color-bg-surface);
  font-size: var(--fs-h1);
  line-height: var(--lh-headings);
  margin: 0 0 var(--space-24) 0;
}

.hero__text {
  margin: 0 0 var(--space-12) 0;
  font-size: var(--fs-hero);
  font-weight: 500;
  line-height: var(--lh-body);
}

.hero__text:last-child {
  margin-bottom: 0;
}

.hero__actions {
  margin-top: var(--space-48);
  display: flex;
  gap: var(--space-32);
}

.hero__media {
  display: flex;
  justify-content: flex-end;
}

.hero__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

@media (max-width: 1200px) {
  .hero__content {
    width: 30rem;
  }
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__content {
    width: 100%;
  }

  .hero__media {
    justify-content: center;
  }

  .hero__media img {
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .hero__media img {
    max-width: 320px;
  }
}

@media (max-width: 560px) {
  .hero__media img {
    max-width: 320px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .button {
    max-width: 280px;
  }
}

@media (max-width: 360px) {
  .hero__media img {
    max-width: 240px;
  }
}

/* === Focus === */
.focus__item {
  margin-bottom: var(--space-32);
}
.focus__item h3 {
  margin-bottom: var(--space-8);
  font-size: var(--fs-h3);
  line-height: var(--lh-headings);
  color: var(--color-text-default);
}

/* === Watch === */

.watch-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: var(--space-48);
  flex-wrap: wrap;
}
.watch-list__link {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-8);
  text-decoration: none;
  border-bottom: var(--border-1) solid transparent;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: var(--fs-button);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: .3px;
  color: var(--btn-secondary-text);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.watch-list__icon {
  width: 32px;
  height: 32px;
  transition: transform .2s ease, filter .2s ease
}

.watch-list__link:hover {
  color: var(--btn-primary-bg-hover);
  border-bottom-color: var(--btn-primary-bg-hover);
}

.watch-list__link:hover .watch-list__icon {
  transform: translateX(2px) rotate(-45deg);
  filter: brightness(0.7);
}

@media (max-width: 768px) {
  .watch-list {
    gap: var(--space-24);
    flex-direction: column;
  }
}

/* === CTA === */

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-48);

  padding: var(--space-96) var(--space-32);
  border-top: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);

  max-width: 1120px;
}

.cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
  align-self: stretch;
  text-align: center;
}

.cta__title {
  margin: 0;
  color: var(--color-text-default);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: var(--lh-body);
}

.cta__subtitle {
  margin: 0;
  font-style: italic;
}

@media (max-width: 1024px) {
  .cta__inner {
    padding-block: var(--space-64);
  }
}

@media (max-width: 768px) {
  .cta__inner {
    padding-block: var(--space-48);
    padding-left: var(--space-16);
    padding-right: var(--space-16);
  }
}

/* === Footer === */

.footer {
  display: flex;
  padding: 0;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: var(--color-bg-dark);
  color: var(--color-text-default);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.footer__inner {
  display: flex;
  padding: var(--space-48) 0;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-32);
  align-self: stretch;
}

.footer__left {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  flex: 1 0 0;
  min-width: 0;
}

.footer__copy {
  opacity: .9;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.footer-link {
  color: var(--color-text-default);
  text-decoration: none;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  transition: all .3s;
}

.footer-link:hover {
  color: var(--color-brand-primary-darker);
  text-decoration: underline;
}

.footer__right {
  display: flex;
  gap: var(--space-4);
  flex: 0 0 auto;
}
.footer__right .footer-link {
  font-weight: 700;
  color: var(--color-brand-primary);
}
.footer__label {
  white-space: nowrap;
  opacity: .9;
}

@media (max-width: 1120px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-24);
    padding: var(--space-32) 0;
  }

  .footer__left {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer__right {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer__inner {
    padding: var(--space-24) 0;
  }
}

/* === Legal === */
.legal h1.section__title {
  font-size: var(--fs-h1);
}
.legal h2.section__title {
  margin-top: var(--space-24);
  margin-bottom: var(--space-16);
  font-size: var(--fs-h3);
}
.legal ul {
  margin-bottom: var(--space-16);
}