:root {
  --bg: #06070b;
  --bg-2: #0d1020;
  --text: #f6f7fb;
  --muted: #aeb4c6;
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --pink: #ff4ecd;
  --violet: #7a5cff;
  --cyan: #37d7ff;
  --yellow: #ffd54f;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 78, 205, 0.18), transparent 20%),
    radial-gradient(circle at 90% 8%, rgba(55, 215, 255, 0.16), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(122, 92, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #05060a 0%, #0a0c14 40%, #07080d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.bg-blur {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.45;
}

.bg-blur-1 {
  top: -90px;
  left: -70px;
  background: rgba(255, 78, 205, 0.45);
}

.bg-blur-2 {
  right: -80px;
  top: 140px;
  background: rgba(55, 215, 255, 0.35);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 8, 13, 0.58);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: 0 10px 30px rgba(122, 92, 255, 0.35);
}

.logo-text {
  font-size: 1.1rem;
}

.menu {
  display: flex;
  gap: 26px;
  color: var(--muted);
}

.menu a {
  transition: color .2s ease, transform .2s ease;
}

.menu a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #d6dcf0;
  font-size: 0.92rem;
  line-height: 1;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 213, 79, 0.7);
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 860px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.section-head p,
.format-copy p,
.generator-copy p,
.footer p,
.content-card p,
.format-card p,
.faq-item p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  border: 0;
  border-radius: 16px;
  padding: 16px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #090a0e;
  background: linear-gradient(135deg, var(--yellow), #ffe485);
  box-shadow: 0 16px 34px rgba(255, 213, 79, 0.22);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.button-small {
  padding: 12px 16px;
  border-radius: 14px;
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.glass,
.glass-soft {
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
}

.glass-soft {
  background: rgba(255,255,255,0.04);
}

.stat-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
}

.stat-card strong {
  display: block;
  font-size: 1.85rem;
  letter-spacing: -0.05em;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
}

.phone {
  border-radius: 34px;
  padding: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.phone-dots {
  display: flex;
  gap: 7px;
}

.phone-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.phone-status {
  font-size: 0.92rem;
  color: var(--muted);
}

.meme-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(135deg, rgba(255,78,205,0.24), rgba(122,92,255,0.24) 45%, rgba(55,215,255,0.18));
  border: 1px solid rgba(255,255,255,0.08);
}

.meme-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -50px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(10px);
}

.meme-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.meme-card h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
  max-width: 360px;
}

.meme-card p {
  margin: 0;
  color: #eef0f7;
  max-width: 360px;
  line-height: 1.7;
}

.meme-footer {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}

.mini-feed {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.mini-item {
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mini-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.mini-item strong {
  font-size: 0.98rem;
  font-weight: 600;
}

.ticker-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.ticker-track {
  white-space: nowrap;
}

.ticker-content {
  display: inline-flex;
  gap: 28px;
  padding: 18px 0;
  min-width: 200%;
  animation: ticker 22s linear infinite;
  color: #dee3f6;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.ticker-content span::after {
  content: "✦";
  margin-left: 28px;
  color: rgba(255,255,255,0.36);
}

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

.section {
  padding: 92px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head h2,
.format-copy h2,
.generator-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.content-card {
  padding: 24px;
  border-radius: 24px;
  min-height: 250px;
  transition: transform .25s ease, border-color .25s ease;
}

.content-card:hover,
.format-card:hover,
.faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.14);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.hot {
  background: rgba(255, 78, 205, 0.16);
  color: #ffc4ef;
}

.cool {
  background: rgba(55, 215, 255, 0.14);
  color: #b7f2ff;
}

.glow {
  background: rgba(255, 213, 79, 0.16);
  color: #fff0b6;
}

.muted {
  color: rgba(255,255,255,0.4);
}

.content-card h3,
.format-card h3,
.faq-item summary {
  margin: 0 0 12px;
  font-size: 1.36rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.format-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.format-card {
  padding: 22px;
  border-radius: 24px;
  min-height: 210px;
  transition: transform .25s ease, border-color .25s ease;
}

.format-card span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.generator-wrap {
  border-radius: 32px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.generator-screen {
  min-height: 176px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 1.32rem;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.generator-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  padding: 20px 22px;
  transition: transform .25s ease, border-color .25s ease;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 8px 0 0;
}

.footer {
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-logo {
  margin-bottom: 10px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(17, 20, 30, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal,
.reveal-delay,
.reveal-delay-2,
.reveal-delay-3 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in,
.reveal-delay.in,
.reveal-delay-2.in,
.reveal-delay-3.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .hero-grid,
  .section-head,
  .format-layout,
  .generator-wrap {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .menu {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-stats,
  .cards-grid,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .generator-wrap,
  .phone,
  .content-card,
  .format-card,
  .faq-item {
    border-radius: 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
