/* ──────────────────────────────────────────────────────────
   ZyNytra Landing — Social Network Preview
   Dark with electric lime + soft secondary accents.
   Phone mockup + stylized UI previews of the actual product.
   ────────────────────────────────────────────────────────── */

:root {
  /* Default = dark theme */
  --bg:           #0a0a0a;
  --bg-2:         #111111;
  --bg-3:         #181818;
  --bg-4:         #1f1f1f;
  --fg:           #f5f5f5;
  --fg-dim:       #8a8a8a;
  --fg-dimmer:    #555555;

  --accent:       #d0ff14;
  --accent-2:     #ff3399;
  --accent-3:     #5ee5ff;
  --accent-soft:  rgba(208, 255, 20, 0.12);
  --on-accent:    #0a0a0a;   /* text/icons on top of accent — always dark */

  --line:         rgba(245, 245, 245, 0.07);
  --line-strong:  rgba(245, 245, 245, 0.14);

  --shadow-phone: 0 30px 80px rgba(0,0,0,0.6);

  --font-display: 'Unbounded', system-ui, -apple-system, sans-serif;
  --font-body:    'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', 'SF Mono', Consolas, monospace;

  --gutter:       clamp(20px, 4vw, 60px);
  --section-pad:  clamp(72px, 11vw, 168px);
  --nav-h:        72px;
}

/* Light theme — flipped via data-theme on <html>. Lime accent stays
   as the brand colour but is darkened a touch so it has enough
   contrast against the off-white background. */
html[data-theme="light"] {
  --bg:           #fafaf7;
  --bg-2:         #ffffff;
  --bg-3:         #f1f1ec;
  --bg-4:         #e8e8e3;
  --fg:           #0a0a0a;
  --fg-dim:       #555555;
  --fg-dimmer:    #999999;

  --accent:       #9bd400;
  --accent-2:     #d11a6b;
  --accent-3:     #0091bd;
  --accent-soft:  rgba(155, 212, 0, 0.14);

  --line:         rgba(10, 10, 10, 0.08);
  --line-strong:  rgba(10, 10, 10, 0.16);

  --shadow-phone: 0 30px 80px rgba(0,0,0,0.18);
}

html[data-theme="light"] .grain { opacity: 0.04; }

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--accent); color: var(--on-accent); }

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  scroll-behavior: smooth;
  transition: background 0.4s ease, color 0.4s ease;
}

body {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* ── Film grain ─────────────────────────────────────────── */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.95 0 0 0 0 0.95 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Brand mark — small lime ring ───────────────────────── */

.brand-mark {
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2.5px solid var(--accent);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
}

/* ── Top nav ────────────────────────────────────────────── */

.topnav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--gutter);
  background: linear-gradient(180deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 70%, transparent 100%);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  transition: background 0.3s ease;
}

html[data-theme="light"] .topnav {
  background: linear-gradient(180deg, rgba(250,250,247,0.92) 0%, rgba(250,250,247,0.6) 70%, transparent 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.meta-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.clock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
  user-select: none;
}

.clock-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

.clock-time {
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.clock-zone {
  color: var(--fg-dimmer);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.theme-icon {
  position: absolute;
  transition: opacity 0.25s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.6); }
.theme-icon-moon { opacity: 1; transform: rotate(0) scale(1); }

html[data-theme="light"] .theme-icon-sun  { opacity: 1; transform: rotate(0) scale(1); }
html[data-theme="light"] .theme-icon-moon { opacity: 0; transform: rotate(90deg) scale(0.6); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--fg-dim);
  padding: 4px 6px;
  font: inherit;
  letter-spacing: inherit;
  transition: color 0.18s;
}

.lang-btn:hover { color: var(--fg); }
.lang-btn.active { color: var(--accent); }
.lang-divider { color: var(--fg-dimmer); }

/* ──────────────────────────────────────────────────────────
   HERO — split layout, copy left, phone mockup right
   ────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: calc(var(--nav-h) + 50px) var(--gutter) clamp(60px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  min-height: 100vh;
}

.hero-left { max-width: 640px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  margin-bottom: 32px;
  background: rgba(208, 255, 20, 0.04);
}

.hero-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--fg-dim);
  max-width: 50ch;
  margin-bottom: 40px;
}

.hero-form {
  position: relative;
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--line-strong);
  border-radius: 100px;
  max-width: 520px;
  background: var(--bg-2);
  margin-bottom: 48px;
  transition: border-color 0.25s;
}

.hero-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.hero-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--fg);
  font: 15px var(--font-body);
  padding: 18px 22px;
}

.hero-input::placeholder { color: var(--fg-dimmer); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  padding: 0 24px;
  font: 700 12px var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 100px;
  margin: 4px;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta:hover {
  background: #e1ff5c;
  transform: scale(1.02);
}

.hero-arrow {
  transition: transform 0.25s;
}

.hero-cta:hover .hero-arrow { transform: translateX(3px); }

.hero-form-msg {
  position: absolute;
  bottom: -28px;
  left: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
}

.hero-form.sent .hero-form-msg {
  opacity: 1;
  transform: translateY(0);
}

.hero-stats {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.03em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stat-time .stat-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0;
}

.stat-colon {
  display: inline-block;
  padding: 0 1px;
  color: var(--fg-dim);
  animation: colonBlink 1s steps(2, start) infinite;
}

@keyframes colonBlink {
  to { opacity: 0.3; }
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* Launched state — when countdown hits zero */
.hero-stats.launched .stat-num {
  color: var(--accent);
  text-shadow: 0 0 24px var(--accent);
  animation: launchedPulse 1.5s ease-in-out infinite;
}

@keyframes launchedPulse {
  0%, 100% { text-shadow: 0 0 24px var(--accent); }
  50%      { text-shadow: 0 0 48px var(--accent); }
}

/* Scroll-reveal helper (used by JS) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────
   PHONE MOCKUP — stylized iOS frame with faux app feed
   ────────────────────────────────────────────────────────── */

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  position: relative;
  width: min(320px, calc(100vw - 48px));
  aspect-ratio: 320 / 660;
  background: #050505;
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 2px #1a1a1a,
    var(--shadow-phone),
    0 0 0 12px rgba(208, 255, 20, 0.03);
  transform: rotate(-2.5deg) translateY(0);
  animation: phoneFloat 8s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(-2.5deg) translateY(0); }
  50%      { transform: rotate(-2.5deg) translateY(-12px); }
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #050505;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-notch::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: #1a1a1a;
  border-radius: 50%;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--fg);
}

/* Light theme — adjust the in-app post media so the gradient mock
   "photos" don't look like dim dark squares on a bright background. */
html[data-theme="light"] .post-image-1 {
  background:
    radial-gradient(circle at 30% 30%, rgba(208,255,20,0.55) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,107,157,0.55) 0%, transparent 50%),
    linear-gradient(135deg, #ffd699 0%, #ff9e7a 50%, #ff5b8a 100%);
}

html[data-theme="light"] .post-image-2 {
  background:
    radial-gradient(circle at 60% 40%, rgba(94,229,255,0.55) 0%, transparent 60%),
    linear-gradient(135deg, #d6f0ff 0%, #98c8e8 100%);
}

html[data-theme="light"] .mini-post-img {
  background:
    radial-gradient(circle at 30% 30%, rgba(94,229,255,0.55) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,107,157,0.55) 0%, transparent 50%),
    linear-gradient(135deg, #d6e4f5 0%, #f5d6e4 100%);
}

html[data-theme="light"] .reel-1 {
  background:
    radial-gradient(circle at 50% 30%, rgba(208,255,20,0.55) 0%, transparent 50%),
    linear-gradient(180deg, #ff9966 0%, #d11a6b 100%);
}

html[data-theme="light"] .reel-2 {
  background: linear-gradient(180deg, #b8e6ff 0%, #5ee5ff 100%);
}

/* Light mode: phone tab-bar gradient fade should match the new bg. */
html[data-theme="light"] .phone-tabs {
  background: linear-gradient(180deg, transparent 0%, var(--bg) 30%);
}

/* Light mode: phone notch matches the still-dark phone frame. */
html[data-theme="light"] .phone-notch { background: #050505; }
html[data-theme="light"] .phone-notch::before { background: #1a1a1a; }

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 16px 12px;
}

.phone-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.phone-icons {
  display: inline-flex;
  gap: 14px;
}

.phone-icon-search,
.phone-icon-bell {
  display: inline-block;
  width: 22px; height: 22px;
  background: var(--fg-dim);
  border-radius: 50%;
  opacity: 0.5;
}

.phone-stories {
  display: flex;
  gap: 12px;
  padding: 12px 16px 14px;
  align-items: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.phone-stories::-webkit-scrollbar { display: none; }

.story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--fg);
  width: 54px;
}

.story-ring {
  width: 54px; height: 54px;
  border-radius: 50%;
  padding: 2px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-ring-active {
  background: conic-gradient(from 0deg, #d0ff14, #ff3399, #5ee5ff, #d0ff14);
  padding: 2.5px;
}

.story-ring-seen {
  background: var(--line-strong);
}

.story-ring-plus {
  background: var(--bg-3);
  border: 1.5px dashed var(--accent);
  color: var(--accent);
  padding: 0;
}

.story-avatar {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--bg);
  flex-shrink: 0;
}

.story-avatar-1 { background: linear-gradient(135deg, #ff6b9d 0%, #d0ff14 100%); }
.story-avatar-2 { background: linear-gradient(135deg, #5ee5ff 0%, #ff6b9d 100%); }
.story-avatar-3 { background: linear-gradient(135deg, #d0ff14 0%, #5ee5ff 100%); }
.story-avatar-4 { background: linear-gradient(135deg, #ff9966 0%, #ff3399 100%); }

.story-name {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

/* Post in phone */
.post {
  margin: 0 16px 16px;
  background: var(--bg-2);
  border-radius: 16px;
  overflow: hidden;
  font-size: 12px;
}

.post-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}

.post-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.post-avatar-1 { background: linear-gradient(135deg, #ff6b9d 0%, #d0ff14 100%); }
.post-avatar-2 { background: linear-gradient(135deg, #5ee5ff 0%, #ff6b9d 100%); }
.post-avatar-3 { background: linear-gradient(135deg, #d0ff14 0%, #5ee5ff 100%); }

.post-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-author {
  font-weight: 600;
  color: var(--fg);
  font-size: 12px;
}

.post-loc {
  color: var(--fg-dim);
  font-size: 10px;
}

.post-more {
  background: none;
  border: none;
  color: var(--fg-dim);
  font-size: 16px;
  padding: 0 4px;
}

.post-image {
  aspect-ratio: 4/5;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}

.post-image-1 {
  background:
    radial-gradient(circle at 30% 30%, rgba(208,255,20,0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,107,157,0.5) 0%, transparent 50%),
    linear-gradient(135deg, #2a1a3a 0%, #4a2a5a 50%, #ff6b3d 100%);
}

.post-image-1::after {
  content: "";
  position: absolute;
  bottom: 30%;
  left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
}

.post-image-2 {
  background:
    radial-gradient(circle at 60% 40%, rgba(94,229,255,0.4) 0%, transparent 60%),
    linear-gradient(135deg, #1a3a4a 0%, #2a4a6a 100%);
}

.post-image-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 30%);
}

.post-actions {
  padding: 8px 12px 12px;
}

.post-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.action {
  background: none;
  border: none;
  color: var(--fg);
  padding: 0;
  display: inline-flex;
  align-items: center;
}

.action.liked { color: var(--accent-2); }

.action-save { margin-left: auto; }

.post-counts {
  font-size: 12px;
  color: var(--fg);
  margin-bottom: 4px;
}

.post-counts strong { font-weight: 600; }

.post-counts span { color: var(--fg-dim); margin-left: 4px; }

.post-caption {
  font-size: 12px;
  color: var(--fg);
}

.post-caption strong { font-weight: 600; margin-right: 4px; }

.post-peek {
  opacity: 0.5;
  margin-bottom: 0;
}

.phone-tabs {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 14px 16px 24px;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 30%);
  border-top: 1px solid var(--line);
}

.tab {
  background: none;
  border: none;
  color: var(--fg-dim);
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tab-active { color: var(--fg); }

.tab-new {
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 8px;
  padding: 6px;
}

/* ──────────────────────────────────────────────────────────
   MARQUEE BAND
   ────────────────────────────────────────────────────────── */

.band {
  overflow: hidden;
  background: var(--accent);
  color: var(--on-accent);
  padding: 16px 0;
}

.band-track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  animation: bandScroll 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: -0.02em;
  padding-left: 22px;
}

.band-track .band-dot {
  font-size: 0.5em;
  opacity: 0.5;
  color: var(--on-accent);
}

@keyframes bandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────────────────
   FEATURES — 5 social UI preview cards
   ────────────────────────────────────────────────────────── */

.features {
  padding: var(--section-pad) var(--gutter);
}

.features-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(48px, 7vw, 88px);
  max-width: 16ch;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}

.features-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, background 0.35s, box-shadow 0.35s;
}

.card:hover {
  border-color: var(--line-strong);
  background: var(--bg-3);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

html[data-theme="light"] .card:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.card-num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
  z-index: 2;
}

.card-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 4px;
}

.card-body { display: flex; flex-direction: column; gap: 10px; }

.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin-top: 4px;
}

.card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-dim);
}

/* ──────────────────────────────────────────────────────────
   MINI iPHONE — used inside each feature card
   ────────────────────────────────────────────────────────── */

.mini-phone {
  position: relative;
  width: 200px;
  aspect-ratio: 200 / 410;
  background: #050505;
  border-radius: 32px;
  padding: 10px;
  box-shadow:
    0 0 0 1.5px #1a1a1a,
    0 18px 40px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme="light"] .mini-phone {
  box-shadow:
    0 0 0 1.5px #2a2a2a,
    0 18px 40px rgba(0,0,0,0.18);
}

.card:hover .mini-phone {
  transform: translateY(-4px) scale(1.02);
}

.mini-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: #050505;
  border-radius: 0 0 12px 12px;
  z-index: 3;
}

.mini-phone-notch::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: #1a1a1a;
  border-radius: 50%;
}

.mini-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
}

/* Status bar inside phone (time + signal bars) */
.mini-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 14px 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--fg);
  flex-shrink: 0;
}

.mini-bars {
  display: inline-block;
  width: 28px;
  height: 8px;
  background:
    linear-gradient(90deg,
      currentColor 0 3px, transparent 3px 5px,
      currentColor 5px 9px, transparent 9px 11px,
      currentColor 11px 17px, transparent 17px 19px,
      currentColor 19px 28px);
  opacity: 0.85;
}

.screen-bg {
  position: absolute;
  inset: 0;
}

/* ── Screen 01: Story (full-bleed photo + overlay) ─────── */

.screen-story { position: relative; }

.story-bg-1 {
  background:
    radial-gradient(circle at 30% 30%, rgba(208,255,20,0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,107,157,0.55) 0%, transparent 55%),
    linear-gradient(155deg, #2a1a3a 0%, #5a2a4a 50%, #ff6b3d 100%);
}

html[data-theme="light"] .story-bg-1 {
  background:
    radial-gradient(circle at 30% 30%, rgba(208,255,20,0.55) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,107,157,0.55) 0%, transparent 55%),
    linear-gradient(155deg, #ffd6b3 0%, #ff9e7a 50%, #ff5b8a 100%);
}

.story-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 12px 12px;
  color: #fff;
}

.story-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.story-progress .seg {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
}

.story-progress .seg-filled {
  background: rgba(255,255,255,0.9);
}

.story-progress .seg-active {
  background: rgba(255,255,255,0.3);
}

.story-progress .seg-active .seg-bar {
  display: block;
  width: 40%;
  height: 100%;
  background: rgba(255,255,255,0.95);
  border-radius: 2px;
}

.story-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #fff;
}

.story-mini-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  flex-shrink: 0;
}

.story-handle { font-weight: 600; }

.story-when {
  font-weight: 400;
  opacity: 0.75;
  font-size: 10px;
}

.story-close {
  margin-left: auto;
  font-size: 14px;
  font-weight: 300;
  opacity: 0.9;
}

.story-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-reply {
  flex: 1;
  border: 1.2px solid rgba(255,255,255,0.55);
  border-radius: 100px;
  padding: 7px 12px;
  font-size: 10px;
  color: rgba(255,255,255,0.9);
}

.story-heart,
.story-share {
  font-size: 16px;
  color: #fff;
}

/* ── Screen 02: Post / Feed ────────────────────────────── */

.screen-post { background: var(--bg); }

.screen-brand {
  padding: 4px 14px 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.screen-feed-post {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.screen-post-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
}

.screen-post-head .post-avatar {
  width: 22px; height: 22px;
}

.screen-post-author {
  flex: 1;
  font-weight: 600;
  font-size: 11px;
  color: var(--fg);
}

.screen-post-more {
  font-size: 14px;
  color: var(--fg-dim);
}

.screen-post-img {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(208,255,20,0.45) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(94,229,255,0.5) 0%, transparent 55%),
    linear-gradient(135deg, #2a1a3a 0%, #4a2a5a 50%, #ff6b9d 100%);
}

html[data-theme="light"] .screen-post-img {
  background:
    radial-gradient(circle at 30% 30%, rgba(94,229,255,0.55) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,107,157,0.55) 0%, transparent 55%),
    linear-gradient(135deg, #ffe0d6 0%, #ffb6c1 100%);
}

.screen-post-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 4px;
  color: var(--fg);
}

.screen-post-actions svg { display: block; }

.screen-post-actions .liked {
  color: var(--accent-2);
  font-size: 16px;
  line-height: 1;
}

.screen-post-actions .screen-post-save {
  margin-left: auto;
}

.screen-post-likes {
  font-size: 10px;
  font-weight: 600;
  padding: 0 12px 2px;
}

.screen-post-likes span { color: var(--fg-dim); font-weight: 400; }

.screen-post-cap {
  font-size: 10px;
  padding: 0 12px 10px;
  line-height: 1.4;
}

.screen-post-cap strong { font-weight: 600; margin-right: 3px; }

/* ── Screen 03: Reel — vertical video + right rail ─────── */

.screen-reel { position: relative; }

.reel-bg-1 {
  background:
    radial-gradient(circle at 40% 30%, rgba(208,255,20,0.45) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(94,229,255,0.4) 0%, transparent 50%),
    linear-gradient(170deg, #2a1a3a 0%, #ff6b9d 70%, #ff3399 100%);
}

html[data-theme="light"] .reel-bg-1 {
  background:
    radial-gradient(circle at 40% 30%, rgba(208,255,20,0.6) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(94,229,255,0.55) 0%, transparent 50%),
    linear-gradient(170deg, #ffb38a 0%, #ff6b9d 70%, #d11a6b 100%);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  color: #fff;
}

.reel-rail {
  position: absolute;
  right: 10px;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.rail-btn {
  background: none;
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}

.rail-btn svg { display: block; }

.rail-btn b {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.rail-liked { color: var(--accent-2); }

.rail-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.reel-info {
  max-width: 70%;
  font-size: 10px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.reel-info strong {
  display: block;
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 3px;
}

.reel-info p { margin: 0; opacity: 0.95; }

/* ── Screen 04 & 05: Chat ──────────────────────────────── */

.screen-chat { background: var(--bg); display: flex; flex-direction: column; }

.screen-chat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 10px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.chat-back {
  font-size: 16px;
  color: var(--fg);
  margin-right: -2px;
}

.screen-chat-head .post-avatar {
  width: 26px; height: 26px;
}

.screen-chat-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.screen-chat-meta span {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg);
}

.screen-chat-meta small {
  font-size: 9px;
  color: var(--accent);
}

.screen-chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 10px;
  overflow: hidden;
}

/* Voice message bubble inside chat */
.vmsg {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 14px;
  max-width: 88%;
}

.vmsg-them {
  background: var(--bg-2);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--fg);
}

.vmsg-me {
  background: var(--accent);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  color: var(--on-accent);
}

.vmsg-play {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  border: none;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vmsg-me .vmsg-play {
  background: var(--on-accent);
  color: var(--accent);
}

.vmsg-wave {
  display: flex;
  align-items: center;
  gap: 1.5px;
  height: 18px;
  flex: 1;
}

.vmsg-wave span {
  display: block;
  width: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.65;
}

.vmsg-me .vmsg-wave span { opacity: 0.85; }

.vmsg-time {
  font-family: var(--font-mono);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  opacity: 0.75;
}

/* Text bubbles for screen-05 */
.screen-bubble {
  padding: 7px 10px;
  border-radius: 14px;
  font-size: 10.5px;
  max-width: 82%;
  line-height: 1.35;
}

.screen-bubble-them {
  background: var(--bg-2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--fg);
}

.screen-bubble-me {
  background: var(--accent);
  color: var(--on-accent);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.screen-bubble-typing {
  display: inline-flex;
  gap: 3px;
  align-self: flex-start;
  background: var(--bg-2);
  padding: 9px 11px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}

.screen-bubble-typing .typing-dot {
  width: 5px; height: 5px;
  background: var(--fg-dim);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}
.screen-bubble-typing .typing-dot:nth-child(2) { animation-delay: 0.15s; }
.screen-bubble-typing .typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}

.screen-chat-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 14px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--fg-dim);
  flex-shrink: 0;
}

.screen-chat-input span:first-child {
  flex: 1;
  background: var(--bg-2);
  border-radius: 100px;
  padding: 6px 10px;
}

.chat-input-mic {
  font-size: 14px;
}

/* ──────────────────────────────────────────────────────────
   COMMUNITY — avatar cluster
   ────────────────────────────────────────────────────────── */

.community {
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  background:
    radial-gradient(circle at 80% 50%, rgba(208,255,20,0.04) 0%, transparent 50%),
    var(--bg);
}

.community-left { max-width: 520px; }

.community-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 16px 0 24px;
}

.community-body {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--fg-dim);
}

.avatar-cluster {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  max-width: 460px;
  margin-left: auto;
}

.ac {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bg-3);
  transition: transform 0.3s;
}

.ac:hover { transform: scale(1.1); }

.ac-1  { background: linear-gradient(135deg, #ff6b9d, #d0ff14); }
.ac-2  { background: linear-gradient(135deg, #5ee5ff, #ff6b9d); }
.ac-3  { background: linear-gradient(135deg, #d0ff14, #5ee5ff); }
.ac-4  { background: linear-gradient(135deg, #ff9966, #ff3399); }
.ac-5  { background: linear-gradient(135deg, #5ee5ff, #d0ff14); }
.ac-6  { background: linear-gradient(135deg, #ff3399, #ff9966); }
.ac-7  { background: linear-gradient(135deg, #d0ff14, #ff6b9d); }
.ac-8  { background: linear-gradient(135deg, #ff6b9d, #5ee5ff); }
.ac-9  { background: linear-gradient(135deg, #5ee5ff, #ff9966); }
.ac-10 { background: linear-gradient(135deg, #d0ff14, #ff3399); }
.ac-11 { background: linear-gradient(135deg, #ff9966, #5ee5ff); }
.ac-12 { background: linear-gradient(135deg, #ff3399, #d0ff14); }
.ac-13 { background: linear-gradient(135deg, #5ee5ff, #ff3399); }
.ac-14 { background: linear-gradient(135deg, #d0ff14, #ff9966); }
.ac-15 { background: linear-gradient(135deg, #ff6b9d, #ff3399); }
.ac-16 { background: linear-gradient(135deg, #5ee5ff, #d0ff14); }
.ac-17 { background: linear-gradient(135deg, #ff9966, #d0ff14); }
.ac-18 { background: linear-gradient(135deg, #d0ff14, #5ee5ff); }
.ac-19 { background: linear-gradient(135deg, #ff3399, #5ee5ff); }
.ac-20 { background: linear-gradient(135deg, #ff6b9d, #ff9966); }
.ac-21 { background: linear-gradient(135deg, #5ee5ff, #ff6b9d); }

/* ──────────────────────────────────────────────────────────
   CTA / APP STORE
   ────────────────────────────────────────────────────────── */

.cta {
  padding: var(--section-pad) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 18ch;
  margin: 8px 0 16px;
}

.cta-sub {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 52ch;
  margin-bottom: 28px;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  text-decoration: none;
  color: var(--fg);
  min-width: 240px;
  cursor: not-allowed;
  transition: border-color 0.3s, transform 0.3s;
}

.store-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.store-icon { color: var(--fg); }

.store-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }

.store-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.store-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}

/* ──────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────── */

footer {
  padding: var(--section-pad) var(--gutter) 36px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.025em;
  margin-top: 4px;
}

.footer-est {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--fg-dim);
  margin-top: 4px;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-social a {
  color: var(--fg-dim);
  text-decoration: none;
  font-size: 14px;
  width: fit-content;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.footer-links a::after,
.footer-social a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a:hover,
.footer-social a:hover { color: var(--fg); }
.footer-links a:hover::after,
.footer-social a:hover::after { transform: scaleX(1); }

.footer-social .arrow {
  color: var(--accent);
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s;
}

.footer-social a:hover .arrow {
  transform: translate(2px, -2px);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-dimmer);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.footer-coord {
  font-variant-numeric: tabular-nums;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────── */

/* ── Tablet landscape and below — stack hero ───────────── */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    min-height: auto;
    padding-top: calc(var(--nav-h) + 32px);
    text-align: left;
  }
  .hero-right {
    order: 2;
    width: 100%;
  }
  .phone {
    margin: 0 auto;
    transform: rotate(-2deg) translateY(0);
  }
  .hero-form { max-width: 100%; }

  .community {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .community-right { width: 100%; }
  .avatar-cluster { margin: 0 auto; max-width: 360px; }

}

/* ── Phone portrait ─────────────────────────────────────── */
@media (max-width: 720px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  .hero-stats .stat {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
  }
  .stat-time { flex-basis: 100%; }

  .avatar-cluster { grid-template-columns: repeat(7, 1fr); gap: 10px; max-width: 340px; }

  .store-btn { min-width: auto; flex: 1 1 100%; }
}

/* ── Small phones ──────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .topnav { padding: 0 16px; }
  .brand-name { font-size: 15px; }
  .meta-nav { gap: 12px; }
  .clock { display: none; }
  .theme-toggle { width: 32px; height: 32px; }

  .hero { padding-left: 18px; padding-right: 18px; gap: 40px; }
  .hero-tag {
    font-size: 10px;
    padding: 7px 12px;
    margin-bottom: 24px;
  }

  .hero-form { flex-direction: column; border-radius: 18px; padding: 8px; }
  .hero-input { padding: 14px 16px; }
  .hero-cta {
    width: 100%;
    padding: 14px;
    justify-content: center;
    border-radius: 12px;
    margin: 0;
  }

  .hero-stats { gap: 20px; padding-top: 24px; }
  .hero-stats .stat { flex: 1 1 calc(50% - 10px); }

  .phone {
    border-radius: 38px;
    padding: 10px;
  }
  .phone-notch { width: 90px; height: 22px; top: 10px; }
  .phone-screen { border-radius: 28px; }
  .phone-header { padding: 30px 14px 8px; }
  .phone-brand { font-size: 16px; }
  .phone-stories { gap: 10px; padding: 8px 14px 12px; }
  .story { width: 48px; }
  .story-ring { width: 48px; height: 48px; }
  .post { margin: 0 14px 12px; }

  .features { padding-left: 18px; padding-right: 18px; }
  .card { padding: 24px 20px; }
  .mini-phone { width: 180px; }

  .community { padding-left: 18px; padding-right: 18px; }

  .cta { padding-left: 18px; padding-right: 18px; }
  .store-buttons { width: 100%; }
  .store-btn { padding: 16px 18px; }

  footer { padding-left: 18px; padding-right: 18px; }

  .avatar-cluster { grid-template-columns: repeat(6, 1fr); max-width: 280px; gap: 8px; }
}

/* ── Very narrow (iPhone SE etc.) ──────────────────────── */
@media (max-width: 360px) {
  .meta-nav { gap: 8px; }
  .brand-name { font-size: 14px; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 14px; }
  .features-title { font-size: 32px; }
  .community-title { font-size: 28px; }
  .cta-title { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
