@font-face {
  font-family: 'Drven Headline';
  src: url('assets/fonts/EurostileExtendedBlack.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --drven-dark-blue: #03253d;
  --drven-light-blue: #61c2e5;
  --drven-red: #d61721;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--drven-dark-blue);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(97, 194, 229, 0.22),
      transparent 28rem
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(214, 23, 33, 0.16),
      transparent 22rem
    ),
    linear-gradient(145deg, #03253d 0%, #041d31 54%, #021728 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.5;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      112deg,
      transparent 0 44%,
      rgba(97, 194, 229, 0.06) 44% 45.5%,
      transparent 45.5% 100%
    ),
    linear-gradient(
      112deg,
      transparent 0 53%,
      rgba(214, 23, 33, 0.06) 53% 54.5%,
      transparent 54.5% 100%
    );
}

.page-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4.5rem) 1.25rem;
}

.hero {
  min-height: calc(100vh - clamp(4rem, 8vw, 9rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.hero--simple {
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero--logo-only {
  gap: clamp(2rem, 5vw, 4rem);
}

.logo {
  width: min(78vw, 520px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.28));
}

h1,
h2,
p {
  margin: 0;
}

h1,
h2 {
  font-family:
    'Drven Headline', 'Eurostile Extended', 'Microgramma', 'Arial Black', Inter,
    ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  font-size: clamp(1.85rem, 5.2vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.intro {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-wrap: balance;
}

.video-card {
  width: min(100%, 900px);
  margin-top: clamp(0.75rem, 2vw, 1.5rem);
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero--simple .video-card {
  margin-top: 0;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.25);
}

.contact-card {
  width: min(100%, 720px);
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.contact-card--email-only {
  width: auto;
  min-width: min(100%, 320px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  color: #03253d;
  background: var(--drven-light-blue);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
  box-shadow: 0 18px 34px rgba(97, 194, 229, 0.22);
}

.email-button:hover,
.email-button:focus-visible {
  transform: translateY(-2px);
  background: #83d3ef;
  box-shadow: 0 22px 44px rgba(97, 194, 229, 0.28);
}

@media (max-width: 700px) {
  body {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
  }

  .page-shell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2.5svh, 1.25rem) 1rem;
  }

  .hero {
    width: 100%;
    min-height: auto;
    justify-content: center;
    gap: clamp(0.75rem, 2.2svh, 1.15rem);
  }

  .hero--simple,
  .hero--logo-only {
    gap: clamp(1rem, 3svh, 1.5rem);
  }

  .logo {
    width: min(76vw, 340px);
    max-height: 18svh;
    object-fit: contain;
  }

  h1 {
    max-width: 22rem;
    font-size: clamp(1.45rem, 7vw, 2.15rem);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .intro {
    max-width: 22rem;
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    line-height: 1.35;
  }

  .video-card {
    width: min(100%, 520px);
    margin-top: 0;
    padding: 0.25rem;
  }

  .contact-card,
  .video-card {
    border-radius: 20px;
  }

  .video-card video {
    border-radius: 16px;
  }

  .email-button {
    min-height: 2.85rem;
    padding: 0.75rem 1.2rem;
    font-size: clamp(0.95rem, 4vw, 1.05rem);
  }
}

.site-footer {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0.2rem 0;
}

.site-footer a,
.policy-card a,
.back-link {
  color: var(--drven-light-blue);
  text-decoration: none;
  font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.policy-card a:hover,
.policy-card a:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  color: #83d3ef;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.policy-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4.5rem) 1.25rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 1rem;
}

.policy-card {
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.policy-logo {
  display: block;
  width: min(70vw, 320px);
  height: auto;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.policy-card h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.policy-card h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.policy-card p {
  color: var(--muted);
  margin-top: 0.85rem;
}

@media (max-width: 700px) {
  .site-footer {
    padding: 0 1rem calc(0.75rem + env(safe-area-inset-bottom));
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .site-footer p {
    margin: 0.12rem 0;
  }

  .policy-shell {
    padding-inline: 1rem;
  }

  .policy-card {
    border-radius: 22px;
  }
}

@media (max-width: 390px), (max-height: 720px) {
  .page-shell {
    padding-block: 0.65rem;
  }

  .hero {
    gap: 0.7rem;
  }

  .hero--simple,
  .hero--logo-only {
    gap: 0.9rem;
  }

  .logo {
    width: min(70vw, 300px);
    max-height: 15svh;
  }

  h1 {
    font-size: clamp(1.25rem, 6.2vw, 1.85rem);
  }

  .intro {
    font-size: 0.88rem;
  }

  .email-button {
    min-height: 2.6rem;
    padding: 0.65rem 1.05rem;
  }

  .site-footer {
    font-size: 0.72rem;
  }
}
