:root {
  --bg: #111111;
  --white: #ffffff;
  --accent: #a1240b;
  --accent-light: #c42d0d;
  --grey: #222222;
  --grey-mid: #333333;
  --grey-light: #555555;
  --grey-text: #999999;

  --font-logo: 'Barlow Condensed', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 6vw, 80px);
  mix-blend-mode: difference;
}

.nav-logo {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-links a:hover { opacity: 1; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px clamp(24px, 6vw, 80px) 100px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.blob-1 {
  width: 560px;
  height: 560px;
  top: -180px;
  left: -200px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.16;
}

.blob-2 {
  width: 460px;
  height: 460px;
  bottom: -160px;
  left: 8%;
  background: radial-gradient(circle, var(--grey-mid) 0%, transparent 70%);
  opacity: 0.55;
}

.blob-3 {
  width: 380px;
  height: 380px;
  top: 12%;
  right: 6%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.12;
}

.block-1 {
  position: absolute;
  width: 46%;
  max-width: 620px;
  aspect-ratio: 1 / 1;
  right: -8%;
  bottom: -10%;
  background: linear-gradient(155deg, var(--grey) 0%, transparent 65%);
  opacity: 0.6;
  border-radius: 60px;
  transform: rotate(8deg);
}

.hero-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: clamp(48px, 8vh, 100px);
}

.hero-logo img {
  width: min(680px, 68vw);
  height: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  max-width: 420px;
  padding-left: clamp(0px, 4vw, 56px);
}

.tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--accent);
  margin-bottom: 20px;
}

.intro {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid var(--accent);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ── PHONE FRAME ── */
.hero-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.phone-frame {
  position: relative;
  width: min(340px, 78vw);
  aspect-ratio: 9 / 16;
  padding: 12px;
  border-radius: 52px;
  background: linear-gradient(150deg, #3d3d3d 0%, #1c1c1c 45%, #060606 100%);
  box-shadow:
    0 60px 100px -30px rgba(0, 0, 0, 0.85),
    0 25px 45px -20px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    inset 0 -1px 2px rgba(0, 0, 0, 0.8);
}

.phone-frame::before,
.phone-frame::after {
  content: '';
  position: absolute;
  left: -3px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #4a4a4a, #1a1a1a);
}

.phone-frame::before {
  top: 22%;
  height: 8%;
}

.phone-frame::after {
  top: 33%;
  height: 14%;
}

.phone-shell {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 22px;
  background: #060606;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 2;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
}

.phone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── SECTIONS ── */
.section {
  padding: clamp(80px, 12vh, 160px) clamp(24px, 6vw, 80px);
}

.section-alt {
  background: var(--grey);
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 40px;
}

.section-body {
  max-width: 100%;
}

.section-body p {
  font-size: 15px;
  color: #bbbbbb;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
  text-justify: inter-word;
}

/* ── NEWS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.news-card {
  border-top: 1px solid var(--grey-mid);
  padding-top: 20px;
}

.news-date {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--grey-light);
  text-transform: uppercase;
}

.news-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 12px 0 10px;
}

.news-card p {
  font-size: 13px;
  color: #999999;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-text p {
  font-size: 14px;
  color: #bbbbbb;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-mid);
  font-size: 15px;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-light);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--grey-mid);
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

a.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.social-icon-disabled {
  color: var(--grey-light);
  border-color: var(--grey-mid);
  cursor: default;
  opacity: 0.5;
}

.contact-row a:hover {
  color: var(--accent-light);
}

/* ── FOOTER ── */
.footer {
  padding: 60px clamp(24px, 6vw, 80px) 40px;
  border-top: 1px solid var(--grey-mid);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  width: 120px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--grey-light);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 11px;
  color: var(--grey-light);
}

/* ── LEGAL PAGES ── */
.legal-page {
  padding-top: 160px;
  min-height: 100vh;
}

.legal-body {
  max-width: 720px;
}

.legal-body h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--white);
}

.legal-body p {
  font-size: 14px;
  color: #bbbbbb;
  margin-bottom: 14px;
}

.coming-soon {
  padding: 24px 0 40px;
}

.legal-body p.coming-soon-text {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--accent);
  margin-bottom: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-text {
    max-width: 480px;
    padding-left: 0;
    order: 2;
  }

  .hero-phones {
    order: 1;
  }

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

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

@media (max-width: 560px) {
  .nav {
    padding: 20px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    letter-spacing: 1px;
  }

  .hero {
    padding-top: 120px;
  }
}
