:root {
  --bg: #050505;
  --bg2: #0b0b0d;
  --panel: #0e0e11;
  --red: #e10600;
  --red2: #ff2a1a;
  --red-glow: rgba(225, 6, 0, 0.55);
  --ink: #f4f4f6;
  --mut: #9a9aa2;
  --line: rgba(255, 255, 255, 0.08);
  --ff: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff);
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

.wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.eyebrow {
  color: var(--red2);
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

section {
  position: relative;
}

section[id] {
  scroll-margin-top: 96px;
}

/* CURSOR */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s, border-color 0.25s;
  mix-blend-mode: difference;
}

.cursor.big {
  width: 70px;
  height: 70px;
  background: rgba(225, 6, 0, 0.15);
}

.dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--red2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

@media (hover: none) {
  .cursor,
  .dot {
    display: none;
  }
}

/* HEADER */
header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: 0.4s;
  padding: 22px 0;
}

header.scrolled {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 1.3rem;
}

.brand .x {
  color: var(--red2);
  text-shadow: 0 0 18px var(--red-glow);
}

.brand img {
  height: 72px;
  width: auto;
  display: block;
  transition: height 0.4s;
}

header.scrolled .brand img {
  height: 56px;
}

.foot-brand img {
  height: 64px;
}

.menu {
  display: flex;
  gap: 34px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.menu a {
  position: relative;
  color: var(--mut);
  transition: 0.25s;
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: 0.3s;
  box-shadow: 0 0 10px var(--red);
}

.menu a:hover {
  color: #fff;
}

.menu a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-120%);
  transition: 0.5s;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  box-shadow: 0 0 30px var(--red-glow);
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
}

.btn.ghost:hover {
  border-color: var(--red);
  box-shadow: 0 0 24px var(--red-glow);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.burger {
  position: relative;
  z-index: 101;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  perspective: 1200px;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
}

.layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.l-grid {
  background: linear-gradient(transparent 95%, rgba(225, 6, 0, 0.18) 95%) 0 0 / 100% 46px,
    linear-gradient(90deg, transparent 95%, rgba(225, 6, 0, 0.12) 95%) 0 0 / 46px 100%;
  mask: radial-gradient(circle at 60% 40%, #000 0, transparent 70%);
  opacity: 0.6;
}

.glowball {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.g1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--red), transparent 70%);
  top: 8%;
  right: 6%;
  animation: pulse 8s ease-in-out infinite;
}

.g2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #6a0300, transparent 70%);
  bottom: 0;
  left: -4%;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.streak {
  position: absolute;
  height: 2px;
  width: 60%;
  left: 20%;
  background: linear-gradient(90deg, transparent, var(--red2), transparent);
  opacity: 0.7;
  filter: blur(0.4px);
}

.s1 {
  top: 32%;
  animation: slide 6s ease-in-out infinite;
}

.s2 {
  top: 68%;
  animation: slide 8s ease-in-out infinite reverse;
}

@keyframes slide {
  0%, 100% { transform: translateX(-12%); }
  50% { transform: translateX(12%); }
}

.bigX {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 46vw;
  font-weight: 900;
  line-height: 0.7;
  color: transparent;
  -webkit-text-stroke: 2px rgba(225, 6, 0, 0.22);
  z-index: 0;
  user-select: none;
  font-style: italic;
}

.hero-inner {
  position: relative;
  z-index: 3;
  transform-style: preserve-3d;
}

.launch-badge {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  margin: 0 auto 24px;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(225, 6, 0, 0.16), rgba(225, 6, 0, 0.05));
  border: 1px solid rgba(225, 6, 0, 0.4);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 0 32px -8px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  animation: badgeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes badgeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red2);
  animation: pulseDot 1.8s ease-out infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255, 42, 26, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(255, 42, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 42, 26, 0); }
}

.hero h1 {
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--ink);
}

.hero h1 .red {
  color: var(--red2);
  text-shadow: 0 0 40px var(--red-glow);
}

.hero p.sub {
  max-width: 540px;
  color: var(--mut);
  font-size: 1.08rem;
  margin: 26px 0 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.reveal-line {
  overflow: hidden;
  display: block;
}

.reveal-line > span {
  display: block;
  transform: translateY(110%);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes rise {
  to { transform: translateY(0); }
}

.tagline {
  display: flex;
  gap: 26px;
  margin-top: 54px;
  color: var(--mut);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

.tagline b {
  color: #fff;
}

.tagline span {
  color: var(--red2);
}

.scroll-ind {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--mut);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--mut);
  border-radius: 14px;
  position: relative;
}

.mouse::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: var(--red2);
  border-radius: 2px;
  animation: wheel 1.6s infinite;
}

@keyframes wheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* MARQUEE */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg2);
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: scrollx 24s linear infinite;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.marquee-track .o {
  color: transparent;
  -webkit-text-stroke: 1px var(--mut);
}

.marquee-track .r {
  color: var(--red2);
}

@keyframes scrollx {
  to { transform: translateX(-50%); }
}

/* REVEAL ON SCROLL */
.r-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.r-up.in {
  opacity: 1;
  transform: none;
}

/* SECTION HEADING */
.shead {
  max-width: 760px;
  margin-bottom: 54px;
}

.shead h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  margin: 14px 0;
}

.shead h2 .red {
  color: var(--red2);
}

.shead p {
  color: var(--mut);
  font-size: 1.02rem;
}

/* SERVICES */
.services {
  padding: 120px 0;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: linear-gradient(160deg, var(--panel), #080809);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  transform-style: preserve-3d;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(225, 6, 0, 0.16), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  border-color: rgba(225, 6, 0, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(225, 6, 0, 0.3);
}

.card .num {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 3rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
}

.card .ico {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.3);
  margin-bottom: 22px;
}

.card .ico svg {
  width: 28px;
  height: 28px;
  stroke: var(--red2);
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.card p {
  color: var(--mut);
  font-size: 0.94rem;
}

.card .more {
  display: inline-block;
  margin-top: 18px;
  color: var(--red2);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* STUDIO FEATURES */
.studio {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(225, 6, 0, 0.03), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px 28px;
  text-align: center;
  transition: 0.4s;
  cursor: default;
}

.feature-card:hover {
  border-color: rgba(225, 6, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(225, 6, 0, 0.2);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.3);
  color: var(--red2);
  transition: 0.4s;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-card:hover .feature-icon {
  background: rgba(225, 6, 0, 0.2);
  border-color: rgba(225, 6, 0, 0.55);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}

.feature-card p {
  color: var(--mut);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* COMING SOON */
.coming-soon {
  padding: 100px 0;
  background: linear-gradient(160deg, rgba(225, 6, 0, 0.06), transparent);
  border-block: 1px solid var(--line);
  text-align: center;
}

.coming-content {
  max-width: 700px;
  margin: 0 auto;
}

.coming-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin: 20px 0;
  line-height: 1.1;
}

.coming-content p {
  color: var(--mut);
  font-size: 1rem;
  margin-bottom: 32px;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist-form input {
  flex: 1 1 240px;
  min-width: 180px;
  max-width: 360px;
}

.waitlist-form button {
  flex: 0 0 auto;
  justify-content: center;
}

.waitlist-form input {
  padding: 14px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #fff;
  font-family: inherit;
  transition: 0.3s;
}

.waitlist-form input::placeholder {
  color: var(--mut);
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.05);
}

.small-text {
  font-size: 0.8rem;
  color: var(--mut);
  margin-top: 12px;
}

/* FOUNDER'S PROMISE */
.founders-promise {
  padding: 100px 0;
  text-align: center;
}

.promise-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin: 20px 0 40px;
  line-height: 1.1;
}

.promise-text {
  color: var(--mut);
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.promise-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.value {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: 0.3s;
}

.value:hover {
  border-color: rgba(225, 6, 0, 0.4);
  transform: translateY(-2px);
}

.value h4 {
  color: var(--red2);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.value p {
  color: var(--mut);
  font-size: 0.9rem;
}

/* BRANDS SHOWCASE */
.brands-showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(225, 6, 0, 0.02), transparent);
  border-block: 1px solid var(--line);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.brand-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  transition: 0.3s;
  cursor: default;
}

.brand-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-item:hover {
  border-color: var(--red);
  box-shadow: 0 0 24px rgba(225, 6, 0, 0.25);
  transform: scale(1.04);
}

.brand-logo {
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--red2);
  text-transform: uppercase;
}

/* STATS */
.stats {
  padding: 90px 0;
  background: linear-gradient(180deg, transparent, rgba(225, 6, 0, 0.05), transparent);
  border-block: 1px solid var(--line);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat .big {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat .big .red {
  color: var(--red2);
}

.stat .lab {
  color: var(--mut);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin-top: 10px;
  font-weight: 700;
}

/* PROCESS */
.process {
  padding: 120px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: s;
}

.step {
  position: relative;
  padding-top: 30px;
}

.step::before {
  counter-increment: s;
  content: counter(s, decimal-leading-zero);
  font-size: 1rem;
  font-weight: 900;
  color: var(--red2);
}

.step .bar {
  height: 3px;
  background: var(--line);
  margin: 14px 0 20px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.step .bar i {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--red2));
  transition: 1s ease;
}

.step.in .bar i {
  width: 100%;
}

.step h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step p {
  color: var(--mut);
  font-size: 0.9rem;
}

/* TESTIMONIALS */
.testi {
  padding: 120px 0;
  background: var(--bg2);
  border-block: 1px solid var(--line);
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quote {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  transition: 0.35s;
}

.quote:hover {
  border-color: rgba(225, 6, 0, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(225, 6, 0, 0.3);
}

.stars {
  color: var(--red2);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.quote p {
  color: #d4d4d8;
  font-size: 0.98rem;
  font-style: italic;
}

.who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.who .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #3a0100);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
}

.who b {
  display: block;
  font-size: 0.92rem;
}

.who span {
  color: var(--mut);
  font-size: 0.78rem;
}

/* GALLERY */
.gallery {
  padding: 120px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gal-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--panel), #080809);
  transition: 0.35s;
}

.gal-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(225, 6, 0, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: galShimmer 3.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes galShimmer {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.gal-item:hover {
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: 0 20px 50px -20px rgba(225, 6, 0, 0.25);
}

.gal-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.gal-icon {
  font-size: 2.4rem;
  opacity: 0.45;
  filter: grayscale(1);
}

.gal-soon {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--mut);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 20px;
}

.gallery-note {
  text-align: center;
  margin-top: 44px;
  color: var(--mut);
  font-size: 0.98rem;
}

.note-ico {
  width: 18px;
  height: 18px;
  color: var(--red2);
  vertical-align: -3px;
  margin-right: 4px;
}

.gallery-note a {
  color: var(--red2);
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: 0.25s;
}

.gallery-note a:hover {
  border-color: var(--red2);
}

/* WARRANTY */
.warranty {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(225, 6, 0, 0.03), transparent);
  border-block: 1px solid var(--line);
}

.warranty-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 46px;
}

.warranty-head h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 14px 0;
}

.warranty-head h2 .red {
  color: var(--red2);
}

.warranty-head p {
  color: var(--mut);
  font-size: 1.02rem;
}

.form-row.one {
  grid-template-columns: 1fr;
}

/* labelled field (e.g. date pickers that have no placeholder) */
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.field-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mut);
  padding-left: 2px;
}

.contact-form input[type='date'] {
  color: #fff;
  min-height: 52px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.contact-form input[type='date']::-webkit-datetime-edit {
  color: #fff;
}

/* hide the native empty text (while unfocused) so only our custom placeholder shows */
.contact-form input[type='date']:required:invalid:not(:focus)::-webkit-datetime-edit {
  color: transparent;
}

.contact-form input[type='date']::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

/* custom placeholder for the date field (iOS shows nothing by default) */
.date-wrap {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}

.date-ph {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mut);
  font-size: 0.95rem;
  pointer-events: none;
  transition: opacity 0.2s;
}

.date-wrap input:focus + .date-ph,
.date-wrap input:valid + .date-ph {
  opacity: 0;
}

/* shared blended photo background (Process + Founder's Promise + Warranty) */
.process,
.founders-promise,
.warranty {
  position: relative;
  overflow: hidden;
}

.process::after,
.founders-promise::after,
.warranty::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, var(--bg) 0%, rgba(5, 5, 5, 0.62) 20%, rgba(5, 5, 5, 0.68) 65%, var(--bg) 100%),
    url('assets/cta-bg.jpeg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}

.process .wrap,
.founders-promise .wrap,
.warranty .wrap {
  position: relative;
  z-index: 1;
}

/* shared blended photo background — set 2 (Services + Studio + Gallery) */
.services,
.studio,
.gallery {
  position: relative;
  overflow: hidden;
}

.services::after,
.studio::after,
.gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, var(--bg) 0%, rgba(5, 5, 5, 0.66) 20%, rgba(5, 5, 5, 0.72) 65%, var(--bg) 100%),
    url('assets/section-bg.jpeg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}

.services .wrap,
.studio .wrap,
.gallery .wrap {
  position: relative;
  z-index: 1;
}

/* CTA / CONTACT */
.cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* blended background photo */
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, var(--bg) 0%, rgba(5, 5, 5, 0.55) 22%, rgba(5, 5, 5, 0.6) 60%, var(--bg) 100%),
    url('assets/cta-bg.jpeg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 120%, rgba(225, 6, 0, 0.3), transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.98;
}

.cta h2 .red {
  color: var(--red2);
  text-shadow: 0 0 50px var(--red-glow);
}

.cta p {
  color: var(--mut);
  max-width: 520px;
  margin: 20px auto 34px;
}

.contact-form {
  position: relative;
  background: linear-gradient(180deg, rgba(22, 22, 26, 0.85), rgba(9, 9, 12, 0.95));
  border-radius: 20px;
  padding: 48px;
  max-width: 660px;
  margin: 0 auto 40px;
  backdrop-filter: blur(14px);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: left;
}

/* gradient hairline border */
.contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(150deg, rgba(225, 6, 0, 0.55), rgba(255, 255, 255, 0.08) 35%, transparent 65%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--mut);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.06);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.14);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  background: var(--bg);
  color: #fff;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 18px;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--red2), var(--red));
}

.contact-links {
  margin-top: 30px;
}

.contact-links p {
  color: var(--mut);
  margin-bottom: 22px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.social-link span {
  position: relative;
  z-index: 1;
}

.social-link .si {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  color: var(--red2);
  transition: color 0.3s, transform 0.3s;
}

.social-link:hover .si {
  color: #fff;
  transform: scale(1.08);
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-130%);
  transition: 0.6s;
}

.social-link:hover::before {
  transform: translateX(130%);
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(225, 6, 0, 0.18), rgba(225, 6, 0, 0.05));
  box-shadow: 0 18px 40px -16px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  background: #040404;
}

.foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.foot h5 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #fff;
  margin-bottom: 18px;
}

.foot a {
  display: block;
  color: var(--mut);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: 0.25s;
}

.foot a:hover {
  color: var(--red2);
}

.foot p {
  color: var(--mut);
  font-size: 0.9rem;
  max-width: 280px;
}

.copy {
  text-align: center;
  color: var(--mut);
  font-size: 0.8rem;
  margin-top: 46px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .btn.nav-btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  /* Slide-in mobile menu */
  .menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(80vw, 320px);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 96px 32px 40px;
    background: rgba(8, 8, 10, 0.97);
    backdrop-filter: blur(18px);
    border-left: 1px solid var(--line);
    font-size: 1.05rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 95;
  }

  .menu.open {
    transform: translateX(0);
  }

  .menu a {
    width: 100%;
    padding: 16px 0;
    color: #fff;
    border-bottom: 1px solid var(--line);
  }

  .menu a::after {
    display: none;
  }

  .grid3,
  .t-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-values {
    grid-template-columns: 1fr;
  }

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .bigX {
    font-size: 80vw;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    flex-direction: column;
    align-items: center;
  }

  .waitlist-form input,
  .waitlist-form button {
    min-width: auto;
    width: 100%;
    max-width: 360px;
  }

  /* Tighter vertical rhythm on smaller screens */
  .services,
  .studio,
  .process,
  .testi,
  .gallery {
    padding: 80px 0;
  }

  .coming-soon,
  .founders-promise,
  .brands-showcase,
  .warranty,
  .cta {
    padding: 70px 0;
  }

  .shead {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foot {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brand img {
    height: 54px;
  }

  .foot-brand img {
    height: 52px;
  }

  .hero p.sub {
    font-size: 1rem;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-cta .btn {
    flex: 1;
    justify-content: center;
  }

  .marquee-track {
    font-size: 1.15rem;
    gap: 32px;
  }

  .contact-form {
    padding: 24px;
  }

  .social-links {
    gap: 12px;
  }

  .social-link {
    flex: 1;
    justify-content: center;
    min-width: 130px;
  }

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

  .services,
  .studio,
  .process,
  .testi,
  .gallery,
  .coming-soon,
  .founders-promise,
  .brands-showcase,
  .warranty,
  .cta {
    padding: 56px 0;
  }
}
