:root {
  --black: #071018;
  --black-soft: #0e1822;
  --white: #ffffff;
  --paper: #f6f7f8;
  --ink: #1b2330;
  --muted: #717b87;
  --line: #e7eaee;
  --red: #df332e;
  --red-dark: #b8201d;
  --blue: #122b59;
  --blue-light: #1f57b7;
  --shadow: 0 24px 60px rgba(10, 18, 28, 0.12);
  --radius: 8px;
  --shell: min(1740px, calc(100% - 64px));
  --content: min(1120px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  background: var(--black);
  color: var(--white);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #101923;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.topbar-grid {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-grid > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-icon {
  flex-shrink: 0;
  vertical-align: middle;
}

.nav {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 110px;
  height: auto;
}

.nav-menu {
  display: none;
}

.nav-icons {
  display: none;
}

.nav-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--ink);
}

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

.button-red {
  width: 100%;
  background: var(--red);
  color: var(--white);
}

.button-auto {
  width: auto;
}

.button-red:hover {
  background: var(--red-dark);
}

.hero {
  padding: 52px 0 78px;
}

.hero-card {
  position: relative;
  min-height: clamp(500px, 53vw, 760px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.hero-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.92), rgba(7, 16, 24, 0.48) 42%, rgba(7, 16, 24, 0.04) 70%),
    linear-gradient(180deg, rgba(7, 16, 24, 0.18), rgba(7, 16, 24, 0.14));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(36px, 7vw, 88px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 4.8vw, 5.1rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.16rem;
}

.slider-dots {
  position: absolute;
  z-index: 3;
  right: 56px;
  top: 50%;
  display: grid;
  gap: 16px;
  transform: translateY(-50%);
}

.slider-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.slider-dots .active {
  background: var(--red);
}

.section {
  padding: 84px 0;
}

.section .shell:not(.topbar-grid):not(.nav) {
  width: var(--content);
}

.section-title {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 0;
}

.page-hero {
  background: #eef5fa;
  padding: 94px 0 106px;
  text-align: center;
}

.page-hero-inner {
  width: var(--content);
}

.page-hero h1 {
  max-width: none;
  margin-inline: auto;
  color: var(--ink);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.15rem;
}

.about-copy p,
.story-copy p,
.pillar-card p,
.channel-copy p,
.contact-copy p,
.footer p,
.footer a,
.copyright {
  color: var(--muted);
}

.red-band {
  background: var(--red);
  color: var(--white);
}

.story-band {
  padding: 86px 0;
}

.story-grid {
  display: grid;
  align-items: start;
  gap: 38px;
  width: var(--content);
}

.story-grid h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
}

.story-copy {
  display: grid;
  gap: 18px;
  font-size: 1.04rem;
}

.story-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.benefits {
  background: var(--white);
  padding-top: 28px;
}

.benefit-strip {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.benefit-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 128px;
  padding: 28px;
  background: var(--white);
}

.benefit-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
}

.benefit-strip h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.08rem, 1.5vw, 1.45rem);
}

.about {
  background: var(--paper);
}

.about-grid,
.channels-grid,
.contact-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

.stats-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.stats-panel div {
  padding: 30px;
  background: var(--white);
}

.stats-panel strong {
  display: block;
  color: var(--blue);
  font-size: 3rem;
  line-height: 1;
}

.stats-panel span {
  color: var(--muted);
  font-weight: 700;
}

.pillars {
  background: var(--white);
}

.pillar-grid {
  display: grid;
  gap: 24px;
}

.pillar-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(12, 21, 32, 0.06);
}

.pillar-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.pillar-card h3 {
  color: var(--blue);
  font-size: 1.45rem;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.brands {
  background: var(--paper);
}

.brand-panel {
  display: grid;
  gap: 36px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(7, 16, 24, 0.96), rgba(7, 16, 24, 0.78)),
    linear-gradient(135deg, #dbe1e8, #ffffff);
  box-shadow: var(--shadow);
}

.brand-panel-copy {
  padding: 34px 34px 0;
  color: var(--white);
}

.brand-panel-copy h2 {
  max-width: 720px;
}

.brand-panel-copy p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.brand-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 34px 34px;
}

.brand-slot {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.brand-slot img {
  max-width: 78%;
  max-height: 62px;
  object-fit: contain;
}

.brand-slot span {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-slot img:not([hidden]) + span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.brand-slot:nth-child(3n) span {
  color: var(--red);
}

.contact-cta {
  background: var(--white);
}

.contact-cta-panel {
  display: grid;
  gap: 22px;
  align-items: center;
  width: var(--content);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-cta-panel h2 {
  margin-bottom: 0;
}

.contact-cta-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.channels {
  background: #eef5fa;
}

.channel-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.channel-list div {
  display: grid;
  gap: 8px;
  padding: 28px;
  background: var(--white);
}

.channel-list strong {
  color: var(--blue);
  font-size: 1.12rem;
}

.channel-list span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border-radius: var(--radius);
  background: var(--line);
}

.contact-details div {
  display: grid;
  gap: 6px;
  padding: 20px;
  background: var(--white);
}

.contact-details strong {
  color: var(--blue);
}

.contact-details span {
  color: var(--muted);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(31, 87, 183, 0.12);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer {
  background: var(--black-soft);
  color: var(--white);
  padding: 66px 0 28px;
}

.footer-grid {
  display: grid;
  width: var(--content);
  gap: 22px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 26px;
}

.footer h3 {
  color: var(--white);
}

.footer a {
  display: block;
  margin-bottom: 10px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
}

.copyright {
  width: var(--content);
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  text-align: center;
  white-space: nowrap;
}

.copyright a {
  color: var(--white);
  display: inline;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 759px) {
  :root {
    --shell: min(100% - 28px, 1740px);
  }

  .hide-mobile {
    display: none;
  }

  .topbar-grid {
    justify-content: center;
    text-align: center;
  }

  .topbar-grid span:nth-child(2) {
    display: none;
  }

  .nav {
    min-height: 88px;
  }

  .brand img {
    width: 96px;
  }

  .nav-menu {
    position: fixed;
    z-index: 20;
    inset: 132px 14px auto;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: var(--black-soft);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px 12px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .hero {
    padding: 26px 0 56px;
  }

  .hero-card {
    min-height: 560px;
  }

  .hero-card > img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 16, 24, 0.92), rgba(7, 16, 24, 0.5) 55%, rgba(7, 16, 24, 0.18)),
      linear-gradient(90deg, rgba(7, 16, 24, 0.8), rgba(7, 16, 24, 0.05));
  }

  .hero-copy {
    padding: 34px 24px;
    max-width: 92%;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1.05;
  }

  .copyright {
    white-space: normal;
  }

  .slider-dots {
    right: 24px;
  }

  .story-band {
    padding: 58px 0;
  }

  .benefit-strip article {
    min-height: 108px;
    padding: 22px;
  }

  .brand-panel-copy,
  .brand-cloud {
    padding-inline: 22px;
  }

  .brand-cloud {
    grid-template-columns: 1fr;
    padding-bottom: 22px;
  }

  .contact-cta-panel {
    padding: 24px;
  }
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 44px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 800;
  }

  .nav-menu a {
    transition: color 160ms ease;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    color: var(--white);
  }

  .nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .search-icon {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
  }

  .search-icon {
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
  }

  .search-icon::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.72);
    transform: rotate(45deg);
  }

  .story-grid,
  .channels-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .pillar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .benefit-strip article {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .brand-panel {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
  }

  .brand-panel-copy {
    padding: 54px 0 54px 54px;
  }

  .brand-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 54px;
  }

  .contact-cta-panel {
    grid-template-columns: 0.9fr 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (min-width: 1280px) {
  .hero {
    padding-top: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
