:root {
  --bg: #070a12;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted2: rgba(255, 255, 255, 0.55);
  --stroke: rgba(255, 255, 255, 0.14);
  --accent: #7c5cff;
  --accent2: #22d3ee;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius2: 26px;
  --max: 1100px;
  --font:
    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(
      1200px 700px at 20% 10%,
      rgba(124, 92, 255, 0.22),
      transparent 55%
    ),
    radial-gradient(
      900px 650px at 85% 25%,
      rgba(34, 211, 238, 0.18),
      transparent 55%
    ),
    var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font-family: inherit;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    closest-side at 50% 30%,
    rgba(0, 0, 0, 0.75),
    transparent 70%
  );
  opacity: 0.25;
}

.orb {
  position: absolute;
  filter: blur(22px);
  opacity: 0.9;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  border-radius: 999px;
}
.orb-1 {
  width: 520px;
  height: 520px;
  left: -180px;
  top: -140px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(124, 92, 255, 0.95),
    rgba(124, 92, 255, 0.05) 70%
  );
}
.orb-2 {
  width: 520px;
  height: 520px;
  right: -200px;
  top: 80px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(34, 211, 238, 0.9),
    rgba(34, 211, 238, 0.04) 70%
  );
}

.topbar {
  width: min(var(--max), calc(100% - 40px));
  margin: 22px auto 0;
  padding: 18px 18px;   /* a bit more, logo fits nicely */
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.brand-text .name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}
.brand-text .tag {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted2);
}

.email-pill {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.email-pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 26px auto 50px;
}

.hero {
  border: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border-radius: var(--radius2);
  padding: clamp(20px, 4.5vw, 44px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}
.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.12);
}

h1 {
  margin: 18px 0 10px;
  font-size: clamp(26px, 4.3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.accent {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    opacity 0.15s ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.95),
    rgba(34, 211, 238, 0.85)
  );
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(124, 92, 255, 0.18);
}
.btn.primary:hover {
  opacity: 0.95;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.card {
  grid-column: span 4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  min-height: 120px;
}
.card .icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 10px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.card p {
  margin: 0;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.6;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 22px 0 18px;
}

.lower {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}

.countdown {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 16px;
}
.count-title {
  font-size: 13px;
  color: var(--muted2);
}
.count {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.count-sub {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.5;
}

.countdown-grid{
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.unit{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
}

.unit .num{
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.unit .lbl{
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255,255,255,.55);
}

@media (max-width: 560px){
  .countdown-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.notify {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 16px;
}
.notify-title {
  font-weight: 700;
  margin-bottom: 10px;
}
.notify-row {
  display: flex;
  gap: 10px;
}
input[type="email"] {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
}
input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
input[type="email"]:focus {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.tiny {
  margin: 10px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.5;
}

.footer {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}
.footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sep {
  opacity: 0.6;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 18, 32, 0.85);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  box-shadow: var(--shadow);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Accent countdown numbers (subtle, corporate glow) --- */
.countdown-grid .unit{
  position: relative;
  overflow: hidden;
}

.countdown-grid .unit::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  padding: 1px; /* creates a thin gradient border */
  background: linear-gradient(90deg, rgba(124,92,255,.55), rgba(34,211,238,.45));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .55;
  pointer-events: none;
}

.countdown-grid .unit .num{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* Subtle glow (corporate) */
  text-shadow:
    0 0 10px rgba(124,92,255,.18),
    0 0 14px rgba(34,211,238,.12);
}

.countdown-grid .unit:hover{
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
}

.countdown-grid .unit:hover .num{
  text-shadow:
    0 0 12px rgba(124,92,255,.22),
    0 0 18px rgba(34,211,238,.16);
}

@media (max-width: 900px) {
  .card {
    grid-column: span 6;
  }
  .lower {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .card {
    grid-column: span 12;
  }
  .notify-row {
    flex-direction: column;
  }
  .topbar {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- WhatsApp CTA button (icon + subtle corporate pulse) --- */
.wa-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  isolation: isolate;
}

/* subtle pulse ring (corporate) */
.wa-cta::after{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(124,92,255,.18), rgba(34,211,238,.10), transparent 60%);
  opacity: .35;
  z-index: -1;
  transform: scale(.98);
  animation: corporatePulse 2.8s ease-in-out infinite;
}

.wa-cta:hover::after{
  opacity: .45;
}

.wa-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
}

@keyframes corporatePulse{
  0%, 100% { transform: scale(.98); filter: blur(0px); }
  50%      { transform: scale(1.03); filter: blur(.2px); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .wa-cta::after{ animation: none; }
}

/* --- Floating WhatsApp button (bottom-right) --- */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.16);
  background: rgba(15,18,32,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);

  color: rgba(255,255,255,.92);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.wa-float:hover{
  transform: translateY(-2px);
  background: rgba(15,18,32,.88);
  border-color: rgba(255,255,255,.24);
}

.wa-float-icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: linear-gradient(135deg, rgba(124,92,255,.90), rgba(34,211,238,.75));
  color: rgba(255,255,255,.98);
}

.wa-float-text{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Mobile: hide text for a cleaner floating bubble */
@media (max-width: 560px){
  .wa-float{ padding: 12px; }
  .wa-float-text{ display: none; }
}

/* --- Tuned cool-tone container + glow for dark header --- */

.brand{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Soft glass container */
.brand .brand-logo{
  height: 68px;   /* bigger logo */
  width: auto;
  display: block;

  padding: 10px 14px;   /* slightly more breathing room */
  border-radius: 16px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,.07),
    rgba(255,255,255,.03)
  );

  border: 1px solid rgba(120,180,255,.25);
  backdrop-filter: blur(10px);

  /* Cool subtle glow */
  filter:
    drop-shadow(0 6px 14px rgba(0, 140, 255, .18))
    drop-shadow(0 0 10px rgba(120, 180, 255, .12));
}

/* Premium hover refinement (very subtle) */
.brand:hover .brand-logo{
  border-color: rgba(120,180,255,.45);

  filter:
    drop-shadow(0 8px 18px rgba(0, 140, 255, .22))
    drop-shadow(0 0 14px rgba(120, 180, 255, .16));
}

/* Slightly larger on desktop */
@media (min-width: 768px){
  .brand .brand-logo{
    height: 84px;   /* bigger on desktop */
    padding: 12px 16px;   /* more padding on desktop */
  }
}

/* =========================
   Hero Logo (big + animated)
   ========================= */

.hero-logo-wrap{
  position: relative;
  width: min(420px, 70vw);
  margin: 18px auto 8px;
  display: grid;
  place-items: center;
}

/* Big logo */
.hero-logo{
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center;
  filter:
    drop-shadow(0 16px 38px rgba(0, 140, 255, .22))
    drop-shadow(0 0 22px rgba(120, 180, 255, .14));
  animation: heroFloat 4.2s ease-in-out infinite;
}

/* Soft animated glow behind the logo */
.hero-logo-glow{
  position: absolute;
  inset: -18px;
  border-radius: 28px;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(124, 92, 255, .22),
    rgba(34, 211, 238, .14),
    transparent 62%
  );
  filter: blur(10px);
  opacity: .75;
  animation: heroGlow 3.6s ease-in-out infinite;
  pointer-events: none;
}

/* Subtle shine sweep (premium) */
.hero-logo-wrap::after{
  content: "";
  position: absolute;
  width: 40%;
  height: 120%;
  top: -10%;
  left: -55%;
  transform: skewX(-18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.16),
    transparent
  );
  opacity: .55;
  animation: heroShine 6.5s ease-in-out infinite;
  pointer-events: none;
}

/* Animations */
@keyframes heroFloat{
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-8px) scale(1.01); }
}

@keyframes heroGlow{
  0%, 100% { opacity: .65; transform: scale(1); }
  50%      { opacity: .88; transform: scale(1.03); }
}

@keyframes heroShine{
  0%   { left: -55%; opacity: 0; }
  18%  { opacity: .55; }
  35%  { left: 115%; opacity: 0; }
  100% { left: 115%; opacity: 0; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-logo,
  .hero-logo-glow,
  .hero-logo-wrap::after{
    animation: none !important;
  }
}

/* Mobile tuning */
@media (max-width: 560px){
  .hero-logo-wrap{
    width: min(320px, 86vw);
    margin: 14px auto 6px;
  }
}