/* ─── FLICK IT — Coming Soon CSS ───────────────────────────────────────── */

:root {
  --red:        #E8302A;
  --red-dark:   #B8221D;
  --red-light:  #FF4F47;
  --gold:       #F5A623;
  --gold-light: #FFCA6A;
  --dark:       #0D0C0B;
  --dark-2:     #161412;
  --dark-3:     #201E1B;
  --dark-4:     #2A2724;
  --text:       #F0EDE8;
  --text-muted: #8A8480;
  --border:     rgba(245,166,35,0.15);
  --red-glow:   rgba(232,48,42,0.35);
  --gold-glow:  rgba(245,166,35,0.2);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-gu:      'Noto Sans Gujarati', sans-serif;

  --radius:   12px;
  --radius-lg: 20px;
}

/* ─── RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ─── BACKGROUND BLOBS ───────────────────────────────────────────────── */
.bg-blobs { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: float 18s ease-in-out infinite;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,48,42,0.18) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation-delay: 0s;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  top: 30%; right: -150px;
  animation-delay: -6s;
}
.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,48,42,0.1) 0%, transparent 70%);
  bottom: -100px; left: 30%;
  animation-delay: -12s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

/* ─── NAV ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  background: linear-gradient(180deg, rgba(13,12,11,0.9) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
.flame { font-size: 1.6rem; animation: flicker 2s ease-in-out infinite; }
@keyframes flicker {
  0%, 100% { filter: brightness(1); transform: scale(1) rotate(-2deg); }
  50%       { filter: brightness(1.3); transform: scale(1.1) rotate(2deg); }
}
.logo-text { color: var(--text); }
.nav-tagline { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; }

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 40px 60px;
  max-width: 1100px; margin: 0 auto;
}
.hero-content { max-width: 700px; }

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  animation: fadeDown 0.6s ease both;
}
.badge-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  animation-delay: 0.1s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  display: flex; flex-direction: column;
}
.line { display: block; overflow: hidden; }
.line-1 { animation: slideUp 0.7s ease 0.2s both; }
.line-2 { animation: slideUp 0.7s ease 0.35s both; }
.line-3 { animation: slideUp 0.7s ease 0.5s both; }
.line-4 { animation: slideUp 0.7s ease 0.65s both; }
.accent { color: var(--red); text-shadow: 0 0 60px var(--red-glow); }

.hero-sub {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 10px;
  animation: fadeUp 0.6s ease 0.8s both;
}
.food-chip {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--gold-light);
}
.dot { color: var(--text-muted); }
.hero-sub-2 {
  color: var(--text-muted);
  font-size: 1rem; margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.9s both;
}

.social-proof {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--text-muted);
  animation: fadeUp 0.6s ease 1.0s both;
}
.proof-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ─── COUNTDOWN ───────────────────────────────────────────────────────── */
.countdown-wrapper {
  margin-top: 60px;
  animation: fadeUp 0.6s ease 1.1s both;
}
.countdown-label {
  font-size: 0.7rem; letter-spacing: 0.25em;
  color: var(--text-muted); text-transform: uppercase;
  margin-bottom: 16px;
}
.countdown {
  display: flex; align-items: center; gap: 8px;
}
.cd-unit {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  min-width: 80px;
  position: relative;
  overflow: hidden;
}
.cd-unit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.05) 0%, transparent 60%);
}
.cd-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--text);
  text-shadow: 0 0 20px rgba(232,48,42,0.3);
}
.cd-label { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.15em; margin-top: 4px; }
.cd-sep {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 20px;
}

/* ─── FORM SECTION ────────────────────────────────────────────────────── */
.form-section {
  position: relative; z-index: 1;
  padding: 80px 20px;
  background: linear-gradient(180deg, transparent 0%, var(--dark-2) 10%, var(--dark-2) 90%, transparent 100%);
}
.form-container {
  max-width: 620px; margin: 0 auto;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  box-shadow: 0 0 80px rgba(232,48,42,0.08), 0 40px 60px rgba(0,0,0,0.4);
}
.form-container::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.form-header { text-align: center; margin-bottom: 36px; }
.form-title {
  font-family: var(--font-display);
  font-size: 2.5rem; letter-spacing: 0.08em;
  color: var(--text); margin-bottom: 10px;
}
.form-sub { color: var(--text-muted); font-size: 0.9rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field-full { grid-column: 1 / -1; }

.field-wrap { display: flex; flex-direction: column; gap: 8px; }
.field-wrap label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
}

input, select {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
input::placeholder { color: rgba(240,237,232,0.25); }
input:focus, select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,48,42,0.15);
}
select { cursor: pointer; }
select option { background: var(--dark-4); }

.input-prefix-wrap { display: flex; }
.prefix {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.08);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 14px 12px;
  font-size: 0.95rem; color: var(--text-muted);
  white-space: nowrap;
}
.input-prefix-wrap input {
  border-radius: 0 var(--radius) var(--radius) 0;
  flex: 1;
}

.ref-field { margin-bottom: 20px; }

.cta-btn {
  width: 100%; margin-top: 8px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border: none; border-radius: var(--radius);
  padding: 18px;
  font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  box-shadow: 0 4px 24px rgba(232,48,42,0.4);
  position: relative; overflow: hidden;
}
.cta-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,48,42,0.5); }
.cta-btn:hover::before { opacity: 1; }
.cta-btn:active { transform: translateY(0); }
.cta-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-note { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 14px; }

/* ─── SUCCESS STATE ───────────────────────────────────────────────────── */
.success-state { text-align: center; animation: fadeUp 0.5s ease both; }
.success-icon { font-size: 3.5rem; margin-bottom: 16px; animation: bounceIn 0.6s ease both; }
@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.success-title { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.06em; margin-bottom: 10px; }
.success-sub { color: var(--text-muted); margin-bottom: 28px; }

.referral-box {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
}
.ref-label { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 10px; }
.ref-code-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ref-code {
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 0.15em;
  color: var(--gold); text-shadow: 0 0 20px var(--gold-glow);
}
.copy-btn {
  background: var(--dark-3); border: 1px solid var(--border);
  color: var(--text); border-radius: 8px; padding: 8px 16px;
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.copy-btn:hover { background: var(--dark-4); border-color: var(--gold); }
.ref-info { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 18px; }
.ref-info strong { color: var(--gold); }

.share-row { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
  flex: 1; padding: 12px 16px; border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  border: none; transition: transform 0.15s, opacity 0.15s;
}
.share-btn:hover { transform: translateY(-1px); opacity: 0.9; }
.whatsapp { background: #25D366; color: #fff; }
.instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }

/* ─── WHY SECTION ─────────────────────────────────────────────────────── */
.why-section {
  position: relative; z-index: 1;
  padding: 80px 40px;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.1em;
  margin-bottom: 48px;
  color: var(--text);
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: rgba(232,48,42,0.4); transform: translateY(-4px); }
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.why-card:hover::before { opacity: 1; }
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ─── TICKER ──────────────────────────────────────────────────────────── */
.ticker-wrap {
  position: relative; z-index: 1;
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--red-dark);
  border-bottom: 1px solid var(--red-dark);
  margin: 40px 0;
}
.ticker {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
}
.ticker span {
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em; color: #fff;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── INSTAGRAM SECTION ───────────────────────────────────────────────── */
.insta-section {
  position: relative; z-index: 1;
  padding: 80px 40px;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.insta-handle {
  color: var(--gold); font-size: 1rem; font-weight: 600;
  letter-spacing: 0.1em; margin-bottom: 36px;
  margin-top: -32px;
}
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-bottom: 28px; }
.insta-card {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}
.insta-card:hover { transform: scale(1.04); border-color: rgba(232,48,42,0.4); }
.insta-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; opacity: 0.4;
}
.insta-cta {
  display: inline-block;
  color: var(--red-light);
  text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(232,48,42,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.insta-cta:hover { color: var(--gold); border-color: var(--gold); }

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  position: relative; z-index: 1;
  text-align: center;
  padding: 60px 20px 40px;
  border-top: 1px solid var(--border);
  background: var(--dark-2);
}
.footer-logo { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.08em; margin-bottom: 10px; }
.footer-tagline { font-size: 1rem; color: var(--text); font-family: var(--font-gu); margin-bottom: 4px; }
.footer-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; font-style: italic; }
.footer-copy { font-size: 0.72rem; color: rgba(138,132,128,0.5); }

/* ─── TOAST ───────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--dark-3); border: 1px solid var(--border);
  color: var(--text); padding: 12px 24px;
  border-radius: 100px; font-size: 0.88rem; font-weight: 500;
  z-index: 9999; transition: transform 0.3s ease, opacity 0.3s;
  opacity: 0; pointer-events: none; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { border-color: #22c55e; }
.toast.error   { border-color: var(--red); }

/* ─── ANIMATIONS ──────────────────────────────────────────────────────── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(20px);  } to { opacity: 1; transform: none; } }
@keyframes slideUp  { from { opacity: 0; transform: translateY(40px);  } to { opacity: 1; transform: none; } }

/* ─── SCROLL REVEAL ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 40px; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .form-container { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .countdown { gap: 4px; }
  .cd-unit { padding: 12px 14px; min-width: 60px; }
  .cd-num { font-size: 2rem; }
  .share-row { flex-direction: column; }
}
@media (max-width: 480px) {
  .cd-unit { padding: 10px 10px; min-width: 52px; }
  .cd-num { font-size: 1.6rem; }
  .badge-row { flex-direction: column; width: fit-content; }
  .hero-sub { flex-wrap: wrap; }
}
