@font-face {
  font-family: "Gilroy";
  src: url("assets/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/Gilroy-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #080808;
  --ink-soft: #121212;
  --paper: #f4f3ef;
  --paper-bright: #ffffff;
  --muted: #747474;
  --line: rgba(255, 255, 255, 0.14);
  --red: #ff0e2a;
  --red-dark: #d40011;
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", "Gilroy", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  color: #fff;
  background: var(--red);
  border-radius: 30px;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 4.7vw, 90px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  font-family: "Gilroy", "Poppins", sans-serif;
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
}

.wordmark i {
  color: var(--red);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.4vw, 44px);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 12px 20px;
  color: #fff;
  background: var(--red);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(410px, 0.9fr);
  align-items: center;
  gap: clamp(50px, 7vw, 130px);
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) clamp(24px, 9.7vw, 186px) 88px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 54%, rgba(255, 14, 42, 0.12), transparent 27%),
    linear-gradient(135deg, #0d0d0d 0%, #050505 64%, #0b0b0b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right, transparent, #000 45%, #000);
}

.hero-content,
.identity-card {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 39px;
  height: 3px;
  background: var(--red);
}

.hero h1 {
  max-width: 850px;
  margin: 25px 0 27px;
  font-family: "Gilroy", "Poppins", sans-serif;
  font-size: clamp(56px, 5.4vw, 104px);
  font-weight: 800;
  letter-spacing: -4.8px;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-copy {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.52);
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.trust-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 14, 42, 0.12);
}

.identity-card {
  width: min(100%, 540px);
  justify-self: end;
  padding: clamp(28px, 3vw, 48px);
  overflow: hidden;
  background: rgba(20, 20, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 26px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
}

.identity-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -100px;
  width: 230px;
  height: 230px;
  background: var(--red);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.verified-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 13px;
}

.email-preview {
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 48px 0 40px;
}

.email-at {
  color: var(--red);
  font-family: "Gilroy", sans-serif;
  font-size: clamp(52px, 4.5vw, 78px);
  font-weight: 800;
  line-height: 1;
}

.email-preview small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.email-preview strong {
  display: block;
  font-family: "Gilroy", "Poppins", sans-serif;
  font-size: clamp(22px, 2vw, 34px);
  letter-spacing: -0.8px;
  white-space: nowrap;
}

.card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.identity-points {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.identity-points li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.identity-points span {
  color: var(--red);
  font-family: "Gilroy", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.network-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 50%;
}

.orbit-one {
  top: 5%;
  right: -12%;
  width: 62vw;
  height: 62vw;
}

.orbit-two {
  top: 24%;
  right: 5%;
  width: 35vw;
  height: 35vw;
}

.node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 14, 42, 0.12), 0 0 30px rgba(255, 14, 42, 0.5);
}

.node-one { top: 18%; right: 28%; }
.node-two { right: 11%; bottom: 25%; }
.node-three { right: 43%; bottom: 11%; }

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4.7vw, 90px);
  bottom: 33px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-style: normal;
}

.intro-section,
.routes-section {
  padding: clamp(90px, 10vw, 170px) clamp(24px, 9.7vw, 186px);
}

.intro-section {
  display: grid;
  grid-template-columns: 0.46fr 1.2fr 0.72fr;
  gap: clamp(35px, 5vw, 90px);
  align-items: start;
}

.kicker {
  margin: 0 0 17px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.intro-heading h2,
.identity-copy-block h2,
.routes-header h2 {
  margin: 0;
  font-family: "Gilroy", "Poppins", sans-serif;
  font-size: clamp(44px, 5vw, 84px);
  font-weight: 800;
  letter-spacing: -3.5px;
  line-height: 0.98;
}

.intro-copy {
  padding-top: 36px;
}

.intro-copy p {
  margin: 0 0 31px;
  color: #5f5f5f;
  font-size: 15px;
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--red);
  font-size: 12px;
  font-weight: 700;
}

.identity-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(370px, 0.85fr);
  gap: clamp(50px, 8vw, 150px);
  align-items: center;
  padding: clamp(90px, 10vw, 170px) clamp(24px, 9.7vw, 186px);
  color: #fff;
  background: var(--ink);
}

.section-label.light {
  color: rgba(255, 255, 255, 0.4);
}

.kicker.light {
  margin-top: 55px;
}

.identity-copy-block h2 span {
  color: var(--red);
}

.identity-copy-block > p:last-child {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.9;
}

.proof-panel {
  padding: clamp(30px, 3.5vw, 56px);
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
}

.proof-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-family: "Gilroy", sans-serif;
  font-size: 23px;
  font-weight: 800;
}

.proof-panel h3 {
  margin: 35px 0 14px;
  font-family: "Gilroy", "Poppins", sans-serif;
  font-size: clamp(25px, 2.1vw, 35px);
  letter-spacing: -1.1px;
}

.proof-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
  line-height: 1.8;
}

.brand-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 35px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-path i {
  color: var(--red);
  font-style: normal;
}

.brand-path strong {
  color: #fff;
}

.routes-section {
  background: #fff;
}

.routes-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 62px;
}

.routes-header .section-label {
  margin-bottom: 28px;
}

.routes-header h2 {
  font-size: clamp(42px, 4.2vw, 72px);
}

.routes-header > p {
  max-width: 370px;
  margin: 0 0 8px;
  color: #6d6d6d;
  font-size: 13px;
  line-height: 1.8;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d8d8d8;
}

.route-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 31px 34px 36px;
  border-right: 1px solid #d8d8d8;
  transition: color 210ms ease, background 210ms ease;
}

.route-card:last-child {
  border-right: 0;
}

.route-card:hover,
.route-card:focus-visible {
  color: #fff;
  background: var(--ink);
  outline: 0;
}

.route-number,
.route-card small {
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.route-card h3 {
  margin: 12px 0 10px;
  font-family: "Gilroy", "Poppins", sans-serif;
  font-size: clamp(25px, 2vw, 34px);
  letter-spacing: -1.1px;
}

.route-card p {
  max-width: 290px;
  margin: 0;
  color: #777;
  font-size: 12px;
  line-height: 1.7;
}

.route-card:hover p,
.route-card:focus-visible p {
  color: rgba(255, 255, 255, 0.58);
}

.route-card > i {
  position: absolute;
  right: 31px;
  bottom: 31px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-style: normal;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 35px;
  padding: 65px clamp(24px, 9.7vw, 186px) 30px;
  color: #fff;
  background: var(--ink);
}

.footer-wordmark {
  font-size: 40px;
}

.site-footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.tuber-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tuber-brand span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  text-transform: uppercase;
}

.tuber-brand img {
  width: 115px;
  height: auto;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.82fr;
    padding-right: clamp(24px, 5vw, 70px);
    padding-left: clamp(24px, 5vw, 70px);
  }

  .hero h1 {
    letter-spacing: -3.5px;
  }

  .intro-section,
  .identity-section,
  .routes-section {
    padding-right: clamp(24px, 5vw, 70px);
    padding-left: clamp(24px, 5vw, 70px);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    padding: 0 22px;
  }

  .wordmark {
    font-size: 27px;
  }

  .header-cta {
    padding: 10px 15px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 140px 22px 84px;
  }

  .hero h1 {
    max-width: 690px;
    font-size: clamp(51px, 12vw, 82px);
  }

  .identity-card {
    width: 100%;
    justify-self: stretch;
  }

  .scroll-cue {
    display: none;
  }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .intro-copy {
    max-width: 600px;
    padding-top: 0;
  }

  .identity-section {
    grid-template-columns: 1fr;
  }

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

  .route-card {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid #d8d8d8;
  }

  .routes-header {
    align-items: start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .tuber-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 49px;
    letter-spacing: -2.5px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .identity-card {
    padding: 26px 22px;
  }

  .email-preview {
    gap: 12px;
    margin: 39px 0 31px;
  }

  .email-preview strong {
    font-size: 21px;
  }

  .intro-heading h2,
  .identity-copy-block h2,
  .routes-header h2 {
    font-size: 43px;
    letter-spacing: -2.2px;
  }

  .brand-path {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-path i {
    transform: rotate(90deg);
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer > p,
  .tuber-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
