/* ============================================================
   InkHuddle — Coming Soon Page
   ============================================================ */

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

:root {
  --purple:      #9810fa;
  --purple-dark: #6d0db3;
  --purple-light:#f3e8ff;
  --orange:      #ff6900;
  --pink:        #f6339a;
  --cyan:        #00d3f3;
  --green:       #05df72;
  --bg:          #faf5ff;
  --white:       #ffffff;
  --text-dark:   #0f0a1e;
  --text-mid:    #4a3f6b;
  --text-light:  #7c6fa0;
  --radius:      16px;
  --shadow:      0 8px 32px rgba(152, 16, 250, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji";
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { line-height: 1.25; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-ghost:hover { background: var(--purple-light); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(152, 16, 250, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.logo-img--footer {
  height: 42px;
}
.coming-soon-badge {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  text-align: center;
}

/* animated blobs */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blob-drift 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  top: -120px; left: -100px;
}
.hero::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  bottom: -80px; right: -80px;
  animation-delay: -4s;
}
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(152, 16, 250, 0.15);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-launch-label {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 10px;
}

.hero-desc {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.count-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(152, 16, 250, 0.12);
  border-radius: 16px;
  padding: 18px 24px;
  min-width: 84px;
  box-shadow: 0 4px 16px rgba(152, 16, 250, 0.08);
}
.count-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.count-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* trust badges */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.trust-badge.blue   { background: #eff6ff; color: #1d4ed8; }
.trust-badge.purple { background: var(--purple-light); color: var(--purple); }
.trust-badge.green  { background: #f0fdf4; color: #15803d; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ============================================================
   FEATURES
   ============================================================ */
.section { padding: 80px 0; }
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card.orange { background: #fff7ed; border: 1.5px solid #fed7aa; }
.feature-card.purple { background: var(--purple-light); border: 1.5px solid #d8b4fe; }
.feature-card.yellow { background: #fefce8; border: 1.5px solid #fde68a; }
.feature-card.blue   { background: #eff6ff; border: 1.5px solid #bfdbfe; }
.feature-card.pink   { background: #fdf2f8; border: 1.5px solid #fbcfe8; }
.feature-card.green  { background: #f0fdf4; border: 1.5px solid #bbf7d0; }

.feature-icon { font-size: 2.2rem; margin-bottom: 4px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; }
.feature-card p  { font-size: 0.9rem; color: var(--text-mid); }

.features-grid-small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.feature-card-small {
  background: #fff;
  border: 1.5px solid #ede9fe;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.2s;
}
.feature-card-small:hover { transform: translateY(-3px); }
.feature-card-small .fc-icon { font-size: 2rem; margin-bottom: 10px; }
.feature-card-small h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.feature-card-small p  { font-size: 0.8rem; color: var(--text-mid); }

/* ============================================================
   WHY US
   ============================================================ */
.why-section { background: #fff; padding: 80px 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-light), #fdf2f8);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.why-content h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.why-content .subtitle { color: var(--text-mid); margin-bottom: 28px; }

.benefits { display: flex; flex-direction: column; gap: 20px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.benefit-text h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.benefit-text p  { font-size: 0.85rem; color: var(--text-mid); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { padding: 80px 0; background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  z-index: 0;
}
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid #ede9fe;
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
}
.step-card:hover { transform: translateY(-4px); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 16px;
}
.step-num.orange { background: linear-gradient(135deg, #ff6900, #f59e0b); }
.step-num.blue   { background: linear-gradient(135deg, #00d3f3, #3b82f6); }
.step-num.green  { background: linear-gradient(135deg, #05df72, #22c55e); }
.step-icon  { font-size: 2rem; margin-bottom: 12px; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p  { font-size: 0.85rem; color: var(--text-mid); }

/* ============================================================
   SAFETY
   ============================================================ */
.safety-section { background: #fff; padding: 80px 0; }
.safety-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.safety-content h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.safety-content .desc { color: var(--text-mid); margin-bottom: 28px; font-size: 0.95rem; }
.safety-list { display: flex; flex-direction: column; gap: 16px; }
.safety-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
}
.safety-item.green  { background: #f0fdf4; }
.safety-item.blue   { background: #eff6ff; }
.safety-item.purple { background: var(--purple-light); }
.safety-item.orange { background: #fff7ed; }
.safety-icon  { font-size: 1.4rem; flex-shrink: 0; }
.safety-text h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.safety-text p  { font-size: 0.82rem; color: var(--text-mid); }
.safety-visual {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdf4, #eff6ff);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-section p  { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 32px; }
.cta-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 12px; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: var(--purple);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s;
}
.btn-white:hover { transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0f0a1e;
  color: rgba(255,255,255,0.85);
  padding: 56px 0 24px;
}
.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo .logo-icon { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
.brand-name-footer {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }


.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.social-icons { display: flex; gap: 14px; }
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.social-icons a:hover { background: var(--purple); color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .stats-grid           { grid-template-columns: repeat(2, 1fr); }
  .features-grid        { grid-template-columns: 1fr; }
  .features-grid-small  { grid-template-columns: repeat(2, 1fr); }
  .why-inner, .safety-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-image-wrap, .safety-visual { display: none; }
  .steps-grid           { grid-template-columns: 1fr; }
  .steps-grid::before   { display: none; }
  .footer-top           { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }
  .countdown { gap: 10px; }
  .count-box { min-width: 68px; padding: 14px 16px; }
  .count-num { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid-small { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
  .header-inner { padding: 12px 16px; }
}
