/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #ff3fa4;
  --pink-light: #ff79c6;
  --pink-glow: rgba(255, 63, 164, 0.18);
  --dark: #0b0b0f;
  --dark2: #111118;
  --dark3: #18181f;
  --card: #1c1c25;
  --border: rgba(255,255,255,0.07);
  --text: #e8e8f0;
  --muted: #888899;
  --white: #ffffff;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--pink-light), #ffb3e0);
  z-index: 999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(255, 63, 164, 0.6);
}

/* ── Noise Texture Overlay ── */
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.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(11,11,15,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}

nav.scrolled {
  padding: 0.8rem 2.5rem;
  background: rgba(11,11,15,0.95);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--pink); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--pink);
  color: #fff;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.nav-cta:hover::after { transform: translateX(100%); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,63,164,0.4); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 1.5rem 5rem;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-blob {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,63,164,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-blob 6s ease-in-out infinite;
}

@keyframes pulse-blob {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,63,164,0.1);
  border: 1px solid rgba(255,63,164,0.3);
  color: var(--pink-light);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fade-up 0.7s ease both, float-badge 4s ease-in-out 1s infinite;
  position: relative;
  z-index: 1;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: 820px;
  animation: fade-up 0.8s 0.1s ease both;
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink) 0%, #ff79c6 50%, #ffb3e0 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  font-weight: 300;
  animation: fade-up 0.8s 0.2s ease both;
  position: relative;
  z-index: 1;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fade-up 0.8s 0.3s ease both;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
}

.btn-primary:hover::before { animation: shimmer-sweep 0.6s ease forwards; }

@keyframes shimmer-sweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,63,164,0.45); }

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover { border-color: var(--pink); background: var(--pink-glow); }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Section ── */
section { position: relative; z-index: 1; }

.section-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.15;
}

.section-desc {
  color: var(--muted);
  max-width: 540px;
  margin-top: 0.8rem;
  font-size: 1rem;
}

/* ── Stats Bar ── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item { padding: 1rem; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  justify-self: center;
}

/* ── Tools Section ── */
.tools-section { padding: 7rem 1.5rem; }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* Tool card */
.tool-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Radial glow on hover */
.tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, var(--pink-glow), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
}

/* Shimmer border sweep */
.tool-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  transition: left 0.5s ease;
}

.tool-card:hover { border-color: rgba(255,63,164,0.35); transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 28px rgba(255,63,164,0.12); }
.tool-card:hover::before { opacity: 1; }
.tool-card:hover::after { left: 140%; }

/* Featured / coming-soon badges */
.tool-badge-wrap {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-live {
  background: rgba(255,63,164,0.12);
  border: 1px solid rgba(255,63,164,0.3);
  color: var(--pink-light);
}

.badge-soon {
  background: rgba(255,179,64,0.1);
  border: 1px solid rgba(255,179,64,0.3);
  color: #ffb340;
}

.badge-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: blink 1.4s ease-in-out infinite;
}

/* ── Teaser Card ── */
.teaser-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #12121a 0%, #1a1025 50%, #12121a 100%);
  border: 1px solid rgba(255,63,164,0.25);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  cursor: default;
}

/* Animated border glow */
.teaser-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,63,164,0.6), transparent, rgba(180,100,255,0.5), transparent);
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: border-spin 4s linear infinite;
  pointer-events: none;
}

@keyframes border-spin {
  0% { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}

/* Top glow blob */
.teaser-card::after {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(255,63,164,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-blob 5s ease-in-out infinite;
}

.teaser-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,179,64,0.9);
  background: rgba(255,179,64,0.08);
  border: 1px solid rgba(255,179,64,0.25);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

.teaser-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

/* Shimmer text effect */
.shimmer-text {
  background: linear-gradient(
    90deg,
    #aaaacc 0%,
    #ffffff 18%,
    #ff79c6 30%,
    #ffb3e0 40%,
    #ffffff 52%,
    #c084fc 64%,
    #ffffff 76%,
    #aaaacc 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-sweep-text 3.5s linear infinite;
}

@keyframes shimmer-sweep-text {
  0%   { background-position: -100% center; }
  100% { background-position: 200% center; }
}

.teaser-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.teaser-sub em {
  font-style: normal;
  color: rgba(255,179,64,0.85);
}

.teaser-sparkles {
  display: flex;
  gap: 0.5rem;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  animation: float-badge 3s ease-in-out infinite;
}

/* Icon */
.tool-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,63,164,0.1);
  border: 1px solid rgba(255,63,164,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s;
}

.tool-card:hover .tool-icon {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(255,63,164,0.2);
}

.tool-info { position: relative; z-index: 1; flex: 1; }

.tool-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}

.tool-card:hover .tool-name { color: var(--pink-light); }

.tool-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Feature tags on each card */
.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* CTA row inside card */
.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--pink-light);
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: gap 0.2s;
}

.tool-card:hover .tool-link { gap: 0.7rem; }

.tool-link svg { transition: transform 0.2s; }
.tool-card:hover .tool-link svg { transform: translateX(4px); }

/* Coming-soon overlay */
.tool-card.coming-soon {
  opacity: 0.65;
  cursor: not-allowed;
}

.tool-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}

.tool-card.coming-soon:hover::before { opacity: 0; }
.tool-card.coming-soon:hover::after { left: -100%; }
.tool-card.coming-soon .tool-icon { opacity: 0.6; }

/* ── CTA / Support Section ── */
.cta-section {
  padding: 7rem 1.5rem;
  text-align: center;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,63,164,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-blob 5s ease-in-out infinite;
}

.cta-section .section-inner { position: relative; z-index: 1; }

.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.cta-section h2 span {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

.cta-section p {
  margin: 1.2rem auto 0;
  color: var(--muted);
  max-width: 480px;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.cta-daftar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--pink);
  color: #fff;
  padding: 1.1rem 2.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.cta-daftar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-daftar:hover::after { transform: translateX(100%); }
.cta-daftar:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(255,63,164,0.45); }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

footer a { color: var(--pink-light); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Ripple ── */
.ripple-host { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: ripple-expand 0.5s linear;
  pointer-events: none;
}
@keyframes ripple-expand { to { transform: scale(4); opacity: 0; } }

/* ── Hero counter chips ── */
.hero-chips {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
  animation: fade-up 0.8s 0.35s ease both;
  position: relative;
  z-index: 1;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}

.chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
}


/* ── Coming Soon Box ── */
.soon-box {
  background: linear-gradient(135deg, #12121a 0%, #16101e 50%, #12121a 100%);
  border: 1px solid rgba(255,179,64,0.2);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  cursor: default;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.soon-box:hover {
  border-color: rgba(255,179,64,0.4);
  box-shadow: 0 0 36px rgba(255,179,64,0.08), 0 20px 48px rgba(0,0,0,0.4);
}

/* Floating orbs */
.soon-box-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.35;
}
.soon-orb-1 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,179,64,0.5), transparent 70%);
  top: -60px; right: -40px;
  animation: orb-drift-1 7s ease-in-out infinite;
}
.soon-orb-2 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(200,100,255,0.4), transparent 70%);
  bottom: -30px; left: -20px;
  animation: orb-drift-2 9s ease-in-out infinite;
}
.soon-orb-3 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,100,150,0.45), transparent 70%);
  top: -50px; right: -30px;
  animation: orb-drift-1 8s ease-in-out 1s infinite;
}
.soon-orb-4 {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(100,200,255,0.35), transparent 70%);
  bottom: -20px; left: 20px;
  animation: orb-drift-2 6s ease-in-out 0.5s infinite;
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(-15px, 20px) scale(1.1); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(18px, -12px) scale(1.08); }
}

/* Badge */
.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  background: rgba(255,179,64,0.1);
  border: 1px solid rgba(255,179,64,0.3);
  color: #ffb340;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.soon-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ffb340;
  animation: blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* Typewriter */
.soon-typewriter {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: -0.03em;
  color: var(--white);
  min-height: 2.4em;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.soon-typewriter .cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: #ffb340;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursor-blink 0.75s step-end infinite;
  border-radius: 1px;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Hint text */
.soon-hint {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Progress bar (fake loading) */
.soon-progress-wrap {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.soon-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,179,64,0.3), rgba(255,179,64,0.9), rgba(200,100,255,0.6));
  animation: progress-sweep 3.5s ease-in-out infinite;
}

@keyframes progress-sweep {
  0%   { width: 0%;  margin-left: 0%; opacity: 0.7; }
  40%  { width: 70%; margin-left: 0%; opacity: 1; }
  60%  { width: 30%; margin-left: 70%; opacity: 1; }
  100% { width: 0%;  margin-left: 100%; opacity: 0.7; }
}

.soon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

/* ── Responsive (enhanced) ── */
@media (max-width: 900px) {
  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  .nav-cta { font-size: 0.78rem; padding: 0.4rem 1rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-divider { display: block; width: auto; height: 1px; margin: 0 2rem; }
  .tools-grid { grid-template-columns: 1fr; }
  .teaser-card { padding: 2.2rem 1.5rem; }
  .teaser-headline { font-size: clamp(1.2rem, 4vw, 1.8rem); }
  .hero { padding: 8rem 1.2rem 4rem; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 320px; justify-content: center; }
  .cta-section { padding: 5rem 1.2rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-daftar, .cta-section .btn-ghost { width: 100%; max-width: 320px; justify-content: center; }
  .soon-box { padding: 1.8rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-chips { gap: 0.5rem; }
  .chip { font-size: 0.75rem; padding: 0.25rem 0.7rem; }
  .section-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .tool-card { padding: 1.6rem; border-radius: 18px; }
  .soon-box { border-radius: 18px; }
  .soon-typewriter { font-size: clamp(1rem, 5vw, 1.4rem); }
}

