@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #080c0f;
  --ink-soft: #10161a;
  --surface: #151c21;
  --line: #283138;
  --muted: #9ca6ad;
  --paper: #f3f4f4;
  --white: #fff;
  --red: #e02027;
  --red-dark: #b90e14;
  --display: "Barlow Condensed", sans-serif;
  --body: "Inter", sans-serif;
  --shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--body);
  line-height: 1.65;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .23;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  background: rgba(8, 12, 15, .88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; flex-direction: column; line-height: .78; font-family: var(--display); font-size: 29px; font-weight: 800; font-style: italic; letter-spacing: -.8px; }
.brand span { margin-left: 25px; color: var(--red); font-size: 16px; letter-spacing: .2px; }
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a { position: relative; color: #d7dadd; font-size: 14px; font-weight: 600; }
.main-nav a::after { position: absolute; left: 0; bottom: -10px; width: 0; height: 2px; content: ""; background: var(--red); transition: width .25s; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.nav-cta { padding: 10px 17px; border: 1px solid #3b454c; }
.nav-cta::after { display: none; }
.nav-cta:hover { border-color: var(--red); color: var(--white); }
.menu-toggle { display: none; width: 42px; height: 42px; color: white; background: transparent; border: 1px solid var(--line); }

.hero { position: relative; min-height: 720px; padding: 150px 0 80px; overflow: hidden; display: grid; align-items: center; }
.hero::after {
  position: absolute; inset: 76px 0 0 45%;
  content: "";
  background: radial-gradient(circle at 55% 45%, rgba(224,32,39,.18), transparent 52%);
  pointer-events: none;
}
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 40px; }
.hero-copy { padding-bottom: 30px; }
.hero h1, .page-hero h1 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(68px, 8vw, 116px);
  font-weight: 800;
  font-style: italic;
  line-height: .83;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.hero h1 span { display: block; color: var(--red); }
.hero-copy p { max-width: 520px; margin: 0 0 34px; color: #c8ced2; font-size: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; min-height: 52px; padding: 0 22px; align-items: center; justify-content: center; gap: 18px; color: white; border: 1px solid #4a545b; font-size: 14px; font-weight: 700; transition: .25s; }
.button.primary { background: var(--red); border-color: var(--red); }
.button:hover { transform: translateY(-2px); border-color: var(--red); background: var(--red-dark); }
.arrow { font-size: 20px; }
.hero-visual { position: relative; min-height: 470px; }
.hero-visual::before { position: absolute; inset: 8% 2% 4% 6%; content: ""; border: 1px solid rgba(224,32,39,.35); transform: skewX(-6deg); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 30px 25px rgba(0,0,0,.4)); animation: float 7s ease-in-out infinite; }
.technical-copy { position: absolute; right: 0; bottom: 0; color: #78838a; font-family: var(--display); font-size: 12px; line-height: 1.35; letter-spacing: 2px; text-transform: uppercase; writing-mode: vertical-rl; }

.brand-rail { position: relative; z-index: 3; padding: 28px 0; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.brand-strip { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: center; }
.brand-intro { padding-right: 28px; border-right: 1px solid #c8cdd0; }
.brand-intro h2, .section-title { margin: 0; font: italic 800 36px/.95 var(--display); text-transform: uppercase; }
.brand-intro h2 span, .section-title span { color: var(--red); }
.brand-images { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.brand-image { height: 105px; padding: 5px; border: 1px solid #d8dcde; background: white; overflow: hidden; cursor: pointer; transition: .25s; }
.brand-image:hover { border-color: var(--red); transform: translateY(-3px); }
.brand-image img { width: 100%; height: 100%; object-fit: cover; }

.section { padding: 100px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 50px; }
.section-title { max-width: 520px; font-size: clamp(44px, 6vw, 72px); letter-spacing: -1.5px; }
.section-head p { max-width: 480px; margin: 0; color: var(--muted); }
.benefits { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefit { min-height: 220px; padding: 32px 26px; border-right: 1px solid var(--line); transition: background .25s; }
.benefit:first-child { border-left: 1px solid var(--line); }
.benefit:hover { background: var(--surface); }
.benefit-index { color: var(--red); font: 700 14px var(--display); letter-spacing: 2px; }
.benefit h3 { margin: 45px 0 8px; font: 700 27px var(--display); text-transform: uppercase; }
.benefit p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.downloads { background: var(--paper); color: var(--ink); }
.download-list { border-top: 1px solid #cfd3d5; }
.download-row { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 24px; min-height: 110px; border-bottom: 1px solid #cfd3d5; transition: .25s; }
.download-row:hover { padding-left: 14px; background: white; }
.download-row img { width: 46px; height: 46px; margin: auto; object-fit: contain; }
.download-row h3 { margin: 0; font: 700 31px var(--display); text-transform: uppercase; }
.download-row p { margin: 0; color: #6f777c; font-size: 13px; }
.download-action { color: var(--red); font-weight: 700; }

.site-footer { padding: 60px 0 24px; background: #0b1013; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1.6fr .8fr; gap: 60px; }
.footer-brand p, .footer-block p { color: var(--muted); font-size: 13px; }
.footer-block h3 { margin: 0 0 18px; font: 700 17px var(--display); letter-spacing: 1px; text-transform: uppercase; }
.footer-block a { display: block; margin: 7px 0; color: var(--muted); font-size: 13px; }
.footer-block a:hover { color: var(--red); }
.copyright { margin-top: 45px; padding-top: 20px; border-top: 1px solid var(--line); color: #707b82; font-size: 11px; }

.page-hero { padding: 180px 0 90px; border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: 0; font-size: clamp(70px, 12vw, 150px); }
.page-hero h1 span { color: var(--red); }
.page-hero p { max-width: 650px; margin: 25px 0 0; color: var(--muted); font-size: 18px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.story-lead { position: sticky; top: 120px; }
.story-lead p { color: var(--muted); font-size: 15px; }
.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 25px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.timeline-item strong { color: var(--red); font: 700 25px var(--display); }
.timeline-item p { margin: 0; color: #c6ccd0; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-card { min-height: 280px; padding: 35px; background: var(--ink-soft); }
.contact-card .contact-no { color: var(--red); font: 700 13px var(--display); letter-spacing: 2px; }
.contact-card h2 { margin: 60px 0 18px; font: 700 31px var(--display); text-transform: uppercase; }
.contact-card p, .contact-card a { display: block; margin: 5px 0; color: var(--muted); font-size: 14px; }
.contact-card a:hover { color: white; }
.contact-band { padding: 70px 0; background: var(--red); color: white; }
.contact-band .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.contact-band h2 { max-width: 700px; margin: 0; font: italic 800 clamp(42px,6vw,75px)/.95 var(--display); text-transform: uppercase; }
.contact-band .button { border-color: white; }

@keyframes float { 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }

@media (max-width: 900px) {
  .menu-toggle { display: grid; place-items: center; }
  .main-nav { position: fixed; inset: 76px 0 auto; display: none; padding: 22px 20px 30px; background: var(--ink); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 20px; }
  .main-nav.open { display: flex; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero-layout, .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { min-height: 340px; }
  .brand-strip { grid-template-columns: 1fr; }
  .brand-intro { padding: 0 0 20px; border-right: 0; border-bottom: 1px solid #c8cdd0; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .story-lead { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 220px; }
  .contact-card h2 { margin-top: 35px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero h1 { font-size: 61px; }
  .hero-copy p { font-size: 15px; }
  .hero-visual { min-height: 240px; }
  .technical-copy { display: none; }
  .brand-images { display: flex; overflow-x: auto; padding-bottom: 10px; }
  .brand-image { min-width: 190px; }
  .section { padding: 70px 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit, .benefit:first-child { min-height: 180px; border-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit h3 { margin-top: 28px; }
  .download-row { grid-template-columns: 65px 1fr; gap: 12px; }
  .download-action { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-band .container { align-items: start; flex-direction: column; }
}
