:root {
  --bg: #f4f4f4; /* primary background */
  --surface: #e8e8e8; /* elevated surfaces / cards */
  --surface2: #dcdcdc; /* deeper surface variant */
  --text: #000000; /* primary text */
  --text-muted: #5a5a5a; /* secondary / muted text */
  --primary: rgb(237, 122, 6); /* primary accent (amber) */
  --primary-deep: #f0a500; /* darker accent for hover / depth */
  --border: #c8c8c8; /* borders & dividers */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

/* GRAIN */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.35;
}

/* ── NAV ── */
nav {
  background: var(--text);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5vw;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.4s,
    background 0.4s;
}
nav.scrolled {
  background: transparent;
  backdrop-filter: blur(12px);
  border-color: var(--border);
}
.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.12em;
  color: var(--bg);
}
.nav-logo span {
  color: var(--primary);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.home-nav {
  color: var(--text);
  text-decoration: none;
}
.home-nav-top {
  color: var(--bg);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 2rem;
  transition: color 0.3s ease;
}

/* Transparent State - Grey Color */
nav.scrolled .home-nav-top {
  color: #bcbaba;
}
.home-nav-top span {
  color: var(--primary-deep);
}
/* --- BASE NAV LINKS --- */
.nav-links a {
  font-family: "DM Mono", monospace;
  font-size: 1rem; /* Consistent size for readability */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  
  /* Solid State Colors */
  color: var(--primary); 
}

/* Hover for Solid State */
/* --- BASE NAV LINKS --- */
.nav-links a {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  color: var(--text);
  position: relative;
  padding-bottom: 0.25rem;
}

/* Underline Animation */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-deep);
  transition: width 0.3s ease;
}

/* Hover for Solid State */
.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* --- DYNAMIC NAV LINKS (Transparent State) --- */
.nav-transparent .nav-links a {
  color: var(--primary); /* Black by default when transparent */
}

/* Hover for Transparent State */
.nav-transparent .nav-links a:hover {
  color: var(--primary);
}

.nav-transparent .nav-links a:hover::after {
  width: 100%;
}


/* --- THE BUTTON (Stays the same in both states) --- */
.nav-cta {
  font-family: "DM Mono", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--text);
  border: none;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  font-weight: 500;
  
  /* Transition only for background color */
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-deep);
  /* No transform or opacity changes - perfectly static */
}
/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5vw 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: -2vw;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(20vw, 26vw, 32vw);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px #d8d8d8;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.hero-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-top: 6rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-h1 em {
  font-style: normal;
  color: var(--primary);
}
.hero-sub {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  max-width: 500px;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: #777;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 500;
}
.hero-actions {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.btn-primary {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--primary-deep);
  color: var(--text);
  border: none;
  padding: 1rem 2.2rem;
  cursor: pointer;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.15s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn-primary:hover::after {
  transform: translateX(0);
}
.btn-primary:hover {
  background-color: rgb(245, 120, 11);
  transform: translateY(-2px);
}

.btn-ghost {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 1rem 2.2rem;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(240, 165, 0, 0.35);
  padding: 0.4rem 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
  margin-top: 2rem;
  width: fit-content;
}
.launch-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.scroll-hint {
  justify-content: center;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}
.scroll-line {
  width: 50px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  animation: slideLine 2s ease-in-out 2s infinite;
}

/* ── SECTION BASE ── */
section {
  padding: 8rem 5vw;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.section-label {
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.section-label::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--primary);
}
h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
h2 .accent {
  color: var(--primary);
}
section > p {
  max-width: 680px;
  color: #777;
  margin-bottom: 3.5rem;
  font-size: 0.95rem;
}

/* ── PRODUCTS ── */
.products {
  background: var(--surface);
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 4rem;
}
.product-card {
  background: var(--surface); /* Your off-white/gray base */
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
  transition: transform 0.4s ease;
}

/* THE CLEAN LAYER (White Wipe) */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff; /* The sparkling clean surface */
  clip-path: circle(0% at 0% 0%); 
  transition: clip-path 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

/* THE DUST LAYER (Fine Texture) */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06; /* Keep it subtle as requested */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* HOVER STATES */
.product-card:hover {
  transform: translateY(-8px);
}

.product-card:hover::before {
  clip-path: circle(150% at 0% 0%); /* Wipe animation */
}

.product-card:hover::after {
  opacity: 0; /* Dust removed */
}
/* THE ICON: Subtler transition */
.product-card-icon {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(10rem, 18vw, 16rem);
  line-height: 1;
  color: transparent;
  /* Starts as a soft silver-gray */
  -webkit-text-stroke: 1px #b0b0b0; 
  filter: grayscale(0.5); /* Less intense grayscale */
  letter-spacing: -0.05em;
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.product-card:hover .product-card-icon {
  /* Brightens to brand primary or pure black for a "high-gloss" look */
  -webkit-text-stroke: 1px var(--primary); 
  filter: grayscale(0);
  transform: scale(1.05);
}
.product-tag {
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.4s;
}
.product-tag::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--primary-deep);
  transition: background 0.4s;
}
.product-card:hover .product-tag {
  color: rgba(0, 0, 0, 0.6);
}
.product-card:hover .product-tag::before {
  background: rgba(0, 0, 0, 0.6);
}
.product-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 1rem;
  transition: color 0.4s;
}
.product-name span {
  color: var(--primary);
  transition: color 0.4s;
}
.product-card:hover .product-name {
  color: var(--text);
}
.product-card:hover .product-name span {
  color: var(--text);
}

.product-teaser {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.65;
  margin-bottom: 2rem;
  transition: color 0.4s;
}
.product-card:hover .product-teaser {
  color: rgba(0, 0, 0, 0.65);
}

.product-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.status-locked {
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lock-icon {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--text-muted);
  border-radius: 1px;
  position: relative;
}
.lock-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 1px;
  width: 6px;
  height: 5px;
  border: 1.5px solid var(--text-muted);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}
.product-redact {
  display: inline-block;
  background: var(--border);
  color: transparent;
  user-select: none;
  width: 120px;
  height: 12px;
  position: relative;
  overflow: hidden;
}
.product-redact::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 165, 0, 0.12),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}
.product-tagline {
  justify-content: center;
}
/* Notify Form */
.notify-form {
  display: flex;
  gap: 0;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.notify-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-right: none;
  padding: 0.8rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.notify-input:focus {
  border-color: var(--primary);
}
.notify-input::placeholder {
  color: var(--text-muted);
}
.notify-submit {
  background: var(--primary);
  color: var(--text);
  border: none;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    opacity 0.2s,
    background 0.2s;
}
.notify-submit:hover {
  background: var(--primary-deep);
  opacity: 1;
}

/* ── QUOTE BREAK ── */
.quote-section {
  padding: 9rem 5vw;
  background: var(--surface2);
  text-align: center;
}
.quote-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5.5vw, 5rem);
  line-height: 1.08;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: 0.02em;
  color: var(--text);
}
.quote-text .acid {
  color: var(--primary);
}

/* ── PROBLEM ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.problem-card {
  background: var(--surface); /* Dusty/Matte starting surface */
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1; /* Necessary for layering */
  
  /* Keep your original motion properties */
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* THE CLEAN LAYER: Replacing the glow sweep */
.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff; /* Pure white "cleaned" surface */
  /* Starting point of the wipe */
  clip-path: circle(0% at 0% 0%); 
  transition: clip-path 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1; /* Behind the text */
}

/* THE DUST LAYER: Subtle matte texture */
.problem-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 0; /* Above background, below text */
}

/* HOVER: Combined Effects */
.problem-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  /* background: var(--surface2); <- Removed to let the white ::before show */
}

/* Animate the Wipe */
.problem-card:hover::before {
  clip-path: circle(150% at 0% 0%);
}

/* Remove the Dust */
.product-card:hover::after {
  opacity: 0;
}
.problem-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  color: rgba(240, 165, 0, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.problem-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}
.problem-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ── CHEMISTRY ── */
.chem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
#para-label {
  align-items: justify;
}
.chem-item {
  padding: 2rem;
  border-left: 2px solid var(--primary);
}
.chem-item-label {
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.chem-item-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.chem-item-desc {
  font-size: 0.82rem;
  color: #777;
  max-width: none;
  margin: 0;
  line-height: 1.6;
}

/* ── INDIA ── */
.india-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
  margin-top: 2rem;
  text-align: center;
}

/* Decreased contrast for the first paragraph only */
.india-split div:first-child p:first-of-type {
  color: #888;
}

/* Keeps everything else the same */
.india-split p strong {
  color: var(--text);
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  color: var(--primary);
  line-height: 1;
  min-width: 4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #777;
}
/* ── MANIFESTO ── */
.manifesto {
  background: var(--primary);
}
.manifesto h2 {
  color: var(--bg);
}
.manifesto p {
  color: rgba(244, 244, 244, 0.7);
}
.manifesto .section-label {
  color: rgba(244, 244, 244, 0.6);
}
.manifesto .section-label::before {
  background: rgba(244, 244, 244, 0.6);
}
.manifesto .rule-desc {
  color: var(--text);
}
.manifesto-rules {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.15);
}
.rule {
  background: var(--primary);
  padding: 2rem;
}
.rule-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.12);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.rule-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.rule-desc {
  font-size: 0.82rem;
  color: var(--text);
  max-width: none;
  margin: 0;
  line-height: 1.6;
}
#tagline {
  text-align: center;
}
/* ── VISION ── */
.vision-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.vision-line {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  letter-spacing: 0.03em;
  color: #c0c0c0;
  display: block;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
  cursor: default;
}
.vision-line:hover {
  color: var(--primary);
}


/* ── LAUNCH CTA ── */
.launch-section {
  padding: 10rem 5vw;
  text-align: center;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* THE CLEAN LAYER */
.launch-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  clip-path: circle(0% at 0% 0%);
  transition: clip-path 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

/* THE DUST LAYER */
.launch-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* HOVER: Animate the Wipe */
.launch-section:hover::before {
  clip-path: circle(150% at 0% 0%);
}

/* HOVER: Remove the Dust */
.launch-section:hover::after {
  opacity: 0;
}
.launch-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  /* Default to center, overridden by IDs below */
  justify-content: center; 
  pointer-events: none;
  z-index: -1; /* Ensure it stays behind text */
}

/* Shared text styles */
.launch-bg-word {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28vw, 32vw, 32vw);
  color: transparent;
  -webkit-text-stroke: 1px var(--bg);
  white-space: nowrap;
  user-select: none;
  line-height: 1;
}

/* Positioning Logic */
#left-view-container {
  justify-content: flex-start; /* Pushes child to left */
}

#right-view-container {
  justify-content: flex-end; /* Pushes child to right */
}
.launch-inner {
  position: relative;
  z-index: 1;
}
.launch-inner .section-label {
  justify-content: center;
}
.launch-inner .section-label::before {
  display: none;
}
.launch-inner h2 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  margin-bottom: 1.5rem;
}
.launch-inner p {
  max-width: 480px;
  margin: 0 auto 3rem;
  color: var(--text);
  font-weight: 600;
  text-align: center;
}
.launch-form {
  display: flex;
  gap: 0;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
}
.launch-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-right: none;
  padding: 1rem 1.4rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.launch-input::placeholder {
  color: var(--text-muted);
}
.launch-input:focus {
  border-color: var(--primary);
}
.launch-btn {
  background: var(--primary);
  color: var(--text);
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.launch-btn:hover {
  background: var(--primary-deep);
  transform: translateY(-1px);
}
.launch-note {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1.2rem;
}
.launch-para{
  color: var(--primary);
}
.launch-ovio{
  color: var(--bg);
}
/* ── FOOTER ── */
footer {
  padding: 3.5rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 2rem;
  color: var(--text);
}
.footer-logo span {
  color: var(--primary);
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}
.footer-tagline {
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(6px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  transform: translateY(20px);
  transition: transform 0.3s;
  position: relative;
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--text);
}
.modal-tag {
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.modal-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.modal-body {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.modal-input:focus {
  border-color: var(--primary);
}
.modal-input::placeholder {
  color: var(--text-muted);
}
.modal-submit {
  background: var(--primary);
  color: var(--text);
  border: none;
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s;
}
.modal-submit:hover {
  background: var(--primary-deep);
}
.modal-success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.modal-success-icon {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: var(--primary);
}
.modal-success-text {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.5rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideLine {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}
@keyframes shimmer {
  0% {
    left: -60%;
  }
  100% {
    left: 160%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .problem-grid,
  .products-grid,
  .india-split,
  .manifesto-rules {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .product-card {
    padding: 2rem;
    min-height: 280px;
  }
  section {
    padding: 5rem 5vw;
  }
  .hero {
    padding: 0 5vw 3rem;
    min-height: 90vh;
  }
  .hero-h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    text-align: center;
    width: 100%;
  }
  h2 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }
  .quote-section {
    padding: 5rem 5vw;
  }
  .quote-text {
    font-size: clamp(1.6rem, 7vw, 3rem);
  }
  .india-split {
    gap: 3rem;
  }
  .stat-num {
    font-size: 2rem;
  }
  .launch-section {
    padding: 6rem 5vw;
  }
  .launch-inner h2 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .launch-form {
    flex-direction: column;
  }
  .launch-input {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .launch-btn {
    width: 100%;
    padding: 1rem;
  }
  .notify-form {
    flex-direction: column;
  }
  .notify-input {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .notify-submit {
    width: 100%;
    padding: 0.8rem;
  }
  .modal {
    padding: 2rem;
    width: 95%;
  }
  .modal-form {
    flex-direction: column;
  }
  .modal-submit {
    width: 100%;
    padding: 0.8rem;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-right {
    align-items: flex-start;
  }
  .chem-list {
    grid-template-columns: 1fr;
  }
  .product-card-icon {
    font-size: clamp(8rem, 30vw, 12rem);
  }
}
