/* Aimigo marketing — night + champagne, visual weight + hooks */
:root {
  color-scheme: dark;
  --ink: #f7f4ef;
  --ink-soft: #ddd6cb;
  --muted: #9a948a;
  --bg: #07070a;
  --surface: #141418;
  --surface-lift: #1c1c22;
  --border: rgba(247, 244, 239, 0.09);
  --border-strong: rgba(247, 244, 239, 0.16);
  --champagne: #e8d5b5;
  --champagne-deep: #c9b08a;
  --champagne-glow: rgba(232, 213, 181, 0.18);
  --accent: #f7f4ef;
  --accent-ink: #0a0a0e;
  --font-ui: "Manrope", system-ui, sans-serif;
  --font-display: "Fraunces", "Georgia", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow-phone: 0 32px 90px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05);
  --header-h: 4.35rem;
  --measure: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-ui);
  font-weight: 450;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 70% at 50% -15%, rgba(232, 213, 181, 0.11), transparent 55%),
    radial-gradient(ellipse 55% 45% at 95% 25%, rgba(232, 213, 181, 0.06), transparent 50%),
    radial-gradient(ellipse 50% 40% at 5% 75%, rgba(130, 150, 200, 0.07), transparent 55%),
    var(--bg);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
}

.glow-a {
  width: min(56vw, 36rem);
  height: min(56vw, 36rem);
  top: -10%;
  right: 5%;
  background: radial-gradient(circle, rgba(232, 213, 181, 0.32), transparent 68%);
  animation: driftA 18s var(--ease) infinite alternate;
}

.glow-b {
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  bottom: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(150, 170, 210, 0.2), transparent 70%);
  animation: driftB 22s var(--ease) infinite alternate;
}

.glow-c {
  width: min(30vw, 18rem);
  height: min(30vw, 18rem);
  top: 45%;
  left: 40%;
  background: radial-gradient(circle, rgba(232, 213, 181, 0.1), transparent 70%);
  animation: driftA 26s var(--ease) infinite alternate-reverse;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

@keyframes driftA {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-5%, 7%) scale(1.08);
  }
}

@keyframes driftB {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(7%, -5%);
  }
}

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

.display {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
}

.lede {
  margin: 1rem 0 0;
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 34rem;
}

main,
.top,
.foot,
.drawer {
  position: relative;
  z-index: 1;
}

/* Full-bleed navbar */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(7, 7, 10, 0.72);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  transition: border-color 350ms var(--ease), background 350ms var(--ease);
}

.top.scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 7, 10, 0.9);
}

.top-inner {
  max-width: var(--measure);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.brand-logo {
  width: 2.65rem;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0;
  filter: drop-shadow(0 0 12px rgba(232, 213, 181, 0.35));
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.15rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--muted);
  transition: color 240ms var(--ease);
}

.nav a:hover {
  color: var(--ink);
}

.nav-ico {
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.7;
}

.nav-cta {
  padding: 0.5rem 1rem 0.5rem 1.1rem !important;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink) !important;
  font-weight: 650;
  gap: 0.45rem !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.nav-cta svg {
  width: 0.95rem;
  height: 0.95rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.menu-btn {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  cursor: pointer;
}

.menu-btn span {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  height: 1.5px;
  background: var(--ink);
  transition: transform 320ms var(--ease-drawer), top 320ms var(--ease-drawer);
}

.menu-btn span:first-child {
  top: 0.95rem;
}
.menu-btn span:last-child {
  top: 1.35rem;
}
.menu-btn[aria-expanded="true"] span:first-child {
  top: 1.15rem;
  transform: rotate(45deg);
}
.menu-btn[aria-expanded="true"] span:last-child {
  top: 1.15rem;
  transform: rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  padding: 2rem 1.5rem;
  background: rgba(7, 7, 10, 0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms var(--ease);
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.drawer[hidden] {
  display: none;
}
.drawer:not([hidden]) {
  display: flex;
}

.drawer a {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6.5vw, 2.3rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 3.25rem);
  align-items: center;
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(1.25rem, 3.5vw, 2.5rem) 1.5rem clamp(3rem, 6vw, 4.5rem);
  min-height: calc(100dvh - var(--header-h) - 3rem);
}

.brand-name {
  font-size: clamp(3.5rem, 9vw, 5.9rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin: 0 0 0.7rem;
  color: var(--ink);
  text-shadow: 0 0 70px rgba(232, 213, 181, 0.14);
  animation: riseIn 0.75s var(--ease) both;
}

.hero-line {
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  font-weight: 500;
  max-width: 14ch;
  color: var(--ink-soft);
  animation: riseIn 0.75s var(--ease) 0.1s both;
}

.hero-copy .lede {
  animation: riseIn 0.75s var(--ease) 0.15s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.7rem;
  animation: riseIn 0.75s var(--ease) 0.2s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.45rem 0.4rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 650;
  font-size: 0.95rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
}

.btn-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.1);
}

.btn-orb svg {
  width: 1rem;
  height: 1rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--muted);
  padding: 0.65rem 0.35rem;
  transition: color 240ms var(--ease);
}

.btn-ghost svg {
  width: 1rem;
  height: 1rem;
}

.btn-ghost:hover {
  color: var(--champagne);
}

.trust-row {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: riseIn 0.75s var(--ease) 0.26s both;
}

.trust-faces {
  display: flex;
}

.trust-faces span {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #0a0a0e;
  border: 2px solid var(--bg);
  margin-left: -0.4rem;
  background: linear-gradient(145deg, #f0e6d4, #cbb896);
}

.trust-faces span:first-child {
  margin-left: 0;
}
.trust-faces span:nth-child(2) {
  background: linear-gradient(145deg, #e4e4e7, #a1a1aa);
}
.trust-faces span:nth-child(3) {
  background: linear-gradient(145deg, #d6d3d1, #78716c);
}
.trust-faces span:nth-child(4) {
  background: var(--surface-lift);
  color: var(--champagne);
  font-size: 0.85rem;
}

.trust-row p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 14rem;
  line-height: 1.35;
}

/* Stage + float cards */
.hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 32rem;
}

.stage-glow {
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--champagne-glow), transparent 68%);
  filter: blur(30px);
  animation: pulseGlow 5.5s ease-in-out infinite;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(20, 20, 24, 0.88);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

.float-card svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--champagne);
  flex-shrink: 0;
}

.float-like {
  top: 12%;
  left: 0;
  animation: floatCard 4.5s ease-in-out infinite;
}

.float-dm {
  bottom: 18%;
  right: -2%;
  animation: floatCard 5s ease-in-out 0.6s infinite;
}

.float-live {
  top: 28%;
  right: 2%;
  animation: floatCard 4.2s ease-in-out 0.3s infinite;
}

.mini-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.phone-shell {
  position: relative;
  z-index: 1;
  padding: 0.55rem;
  border-radius: 2.15rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-phone);
  animation: floatIn 1s var(--ease) 0.12s both;
}

.phone-bezel {
  border-radius: 1.75rem;
  background: #050507;
  padding: 0.4rem 0.45rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0.75rem 0.15rem;
  font-size: 0.62rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.75);
}

.status-icons {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.status-icons svg {
  width: 1rem;
  height: 0.55rem;
}

.phone-screen {
  width: min(19rem, 74vw);
  border-radius: 1rem;
  background: linear-gradient(180deg, #131318 0%, #0d0d11 100%);
  padding: 0.75rem 0.85rem 0.85rem;
}

.feed-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #ece8e1;
}

.live-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--champagne);
  animation: livePulse 2.2s ease-out infinite;
}

.post {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  animation: postIn 0.55s var(--ease) both;
}

.post:nth-child(2) {
  animation-delay: 0.25s;
}
.post:nth-child(3) {
  animation-delay: 0.38s;
}
.post:nth-child(4) {
  animation-delay: 0.5s;
}

.post:last-of-type {
  border-bottom: none;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.post-meta strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 650;
  color: #f4f1ea;
}

.post-meta span span,
.post-meta div span {
  font-size: 0.62rem;
  color: #8a847a;
  font-weight: 450;
}

.avatar {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #0a0a0e;
  flex-shrink: 0;
}

.a1 {
  background: linear-gradient(145deg, #f0e6d4, #cbb896);
}
.a2 {
  background: linear-gradient(145deg, #e4e4e7, #a1a1aa);
}
.a3 {
  background: linear-gradient(145deg, #d6d3d1, #78716c);
}

.post p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #f4f1ea;
}

.post-actions {
  margin-top: 0.45rem;
  display: flex;
  gap: 0.85rem;
  font-size: 0.64rem;
  color: #8a847a;
}

.post-actions span {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.post-actions svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--champagne-deep);
}

.msg-peek {
  margin-top: 0.7rem;
  display: flex;
  justify-content: flex-end;
  animation: postIn 0.6s var(--ease) 0.65s both;
}

.msg-bubble {
  max-width: 85%;
  padding: 0.55rem 0.8rem;
  border-radius: 1rem 1rem 0.3rem 1rem;
  background: linear-gradient(145deg, #e8d5b5, #c9b08a);
  color: #1a1610;
  font-size: 0.72rem;
  font-weight: 550;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.phone-dock {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.45rem 0.35rem 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.15rem;
}

.dock-item {
  width: 2rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b6660;
}

.dock-item.on {
  color: var(--champagne);
}

.dock-item svg {
  width: 1.05rem;
  height: 1.05rem;
}

/* Sections */
.section {
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem;
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.section-head .display {
  font-size: clamp(2rem, 4vw, 3.05rem);
  max-width: 16ch;
}

.sym-row {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.sym {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}

.sym svg {
  width: 1.15rem;
  height: 1.15rem;
}

.sym.dead {
  color: #7a746c;
}

.sym.dead .slash {
  position: absolute;
  width: 120%;
  height: 1.5px;
  background: #ef4444;
  transform: rotate(-32deg);
  border-radius: 2px;
}

.sym.live {
  color: var(--champagne);
  box-shadow: 0 0 24px rgba(232, 213, 181, 0.15);
}

.sym-label {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Felt — dead session vs the want */
.felt-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.dead-window {
  border-radius: 1.15rem;
  overflow: hidden;
  background: #0c0c10;
  border: 1px solid var(--border-strong);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
  transform: rotate(-1.25deg);
}

.dead-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: #15151a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dead-dots {
  display: inline-flex;
  gap: 0.28rem;
}

.dead-dots i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #3f3f46;
  display: block;
}

.dead-dots i:first-child {
  background: #7f1d1d;
}
.dead-dots i:nth-child(2) {
  background: #713f12;
}

.dead-url {
  flex: 1;
  font-size: 0.68rem;
  color: #6b6660;
  font-weight: 550;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dead-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.28);
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
}

.dead-body {
  padding: 1.1rem 1rem 1.25rem;
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(239, 68, 68, 0.05), transparent 60%),
    #0c0c10;
}

.dead-row {
  width: fit-content;
  max-width: 78%;
  padding: 0.55rem 0.8rem;
  border-radius: 0.95rem;
  font-size: 0.84rem;
  line-height: 1.35;
}

.dead-row.you {
  margin-left: auto;
  background: #27272a;
  color: #d4d4d8;
  border-bottom-right-radius: 0.25rem;
}

.dead-row.bot {
  background: #18181b;
  color: #71717a;
  border-bottom-left-radius: 0.25rem;
}

.dead-row.dim {
  opacity: 0.55;
  letter-spacing: 0.12em;
}

.dead-row.faint {
  opacity: 0.35;
}

.dead-void {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  color: #6f6a63;
}

.dead-void svg {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.35rem;
  color: #7f1d1d;
}

.dead-void strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  color: #a1a1aa;
  letter-spacing: -0.02em;
}

.dead-void span {
  font-size: 0.75rem;
}

.felt-copy .display {
  max-width: 14ch;
}

.felt-copy .pull {
  margin: 1.75rem 0 0;
  padding: 0;
  border: none;
  background: none;
}

.felt-copy .pull p {
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--champagne-deep);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--champagne);
}

/* Alive — story flow + live activity panel */
.alive-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.alive-copy .display {
  max-width: 14ch;
}

.flow {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.flow-step {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.flow-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--champagne);
  line-height: 1.2;
  padding-top: 0.1rem;
}

.flow-step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 34rem;
}

.live-window {
  border-radius: 1.15rem;
  overflow: hidden;
  background: #0c0c10;
  border: 1px solid rgba(232, 213, 181, 0.22);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(232, 213, 181, 0.08);
  transform: rotate(1.1deg);
}

.live-chrome {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.95rem;
  background: linear-gradient(180deg, #1a1814, #14120f);
  border-bottom: 1px solid rgba(232, 213, 181, 0.12);
}

.live-chrome .live-dot {
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
}

.live-title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}

.live-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
}

.live-body {
  padding: 0.35rem 0.5rem 0.75rem;
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(232, 213, 181, 0.07), transparent 55%),
    #0c0c10;
}

.live-event {
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  column-gap: 0.75rem;
  align-items: center;
  padding: 0.8rem 0.65rem;
  border-radius: 0.85rem;
  transition: background 220ms var(--ease);
}

.live-event:hover {
  background: rgba(255, 255, 255, 0.03);
}

.live-ico {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(232, 213, 181, 0.18);
  background: rgba(232, 213, 181, 0.08);
  color: var(--champagne);
  box-sizing: border-box;
  line-height: 0;
  margin: 0;
}

.live-ico svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
  margin: 0;
  flex-shrink: 0;
}

.live-ico.heart {
  color: #f0ab9a;
  background: rgba(240, 171, 154, 0.1);
  border-color: rgba(240, 171, 154, 0.25);
}

.live-ico.chat {
  color: var(--champagne);
}

.live-ico.dm {
  color: #c4b5fd;
  background: rgba(196, 181, 253, 0.1);
  border-color: rgba(196, 181, 253, 0.22);
}

.live-ico.follow {
  color: #93c5fd;
  background: rgba(147, 197, 253, 0.1);
  border-color: rgba(147, 197, 253, 0.22);
}

.live-event strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}

.live-event > div > span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.74rem;
  color: #7a746c;
}

.live-foot {
  margin: 0.35rem 0.5rem 0.25rem;
  padding: 0.75rem 0.55rem 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 550;
  color: var(--muted);
}

.live-foot .avatars {
  display: inline-flex;
}

.live-foot .avatars i {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 700;
  color: #0a0a0e;
  border: 2px solid #0c0c10;
  margin-left: -0.35rem;
  background: linear-gradient(145deg, #f0e6d4, #cbb896);
}

.live-foot .avatars i:first-child {
  margin-left: 0;
}
.live-foot .avatars i:nth-child(2) {
  background: linear-gradient(145deg, #e4e4e7, #a1a1aa);
}
.live-foot .avatars i:nth-child(3) {
  background: linear-gradient(145deg, #d6d3d1, #78716c);
}

/* Honest — full truth, not a tiny icon card */
.honest-stage {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.honest-copy .display {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
}

.honest-copy .lede {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
}

.honest-triad-wrap {
  margin-top: 2.75rem;
}

.honest-triad-title {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--ink-soft);
}

.honest-triad {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.truth {
  padding: 1.65rem 1.25rem 1.5rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(165deg, rgba(232, 213, 181, 0.06), transparent 55%),
    rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-height: 12.5rem;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease);
}

.truth:hover {
  border-color: rgba(232, 213, 181, 0.28);
  transform: translateY(-3px);
}

.truth-visual {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 0.55rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  background: rgba(232, 213, 181, 0.08);
  border: 1px solid rgba(232, 213, 181, 0.2);
  line-height: 0;
}

.truth-visual svg {
  width: 2.35rem;
  height: 2.35rem;
  display: block;
  margin: 0;
}

.truth-visual.friends {
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.truth-visual.quiet {
  color: #93c5fd;
  background: rgba(147, 197, 253, 0.08);
  border-color: rgba(147, 197, 253, 0.2);
}

.truth-visual.soft {
  color: var(--champagne);
}

.truth strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.truth span {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 16ch;
}

.close {
  padding-bottom: 4rem;
}

.close-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 6vw, 4rem) 1.75rem;
  border-radius: 1.5rem;
  background: linear-gradient(165deg, #18181f 0%, #0e0e12 100%);
  border: 1px solid var(--border-strong);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.close-glow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 213, 181, 0.22), transparent 70%);
  pointer-events: none;
}

.close-panel .display,
.close-panel .lede,
.close-panel .btn-primary,
.close-panel .soft-note {
  position: relative;
  z-index: 1;
}

.close-panel .display {
  font-size: clamp(1.95rem, 3.6vw, 2.75rem);
  max-width: 14ch;
}

.close-panel .lede {
  margin: 1rem 0 1.6rem;
  max-width: 28rem;
}

.soft-note {
  margin: 1.2rem 0 0;
  font-size: 0.78rem;
  color: #6f6a63;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(3px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    filter 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

.foot {
  width: 100%;
  border-top: 1px solid var(--border);
}

.foot-inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.foot-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--ink-soft);
}

.foot-links {
  display: flex;
  gap: 1.1rem;
}

.foot-links a {
  font-size: 0.84rem;
  font-weight: 550;
  color: var(--muted);
}

.foot-links a:hover {
  color: var(--champagne);
}

.copy {
  margin: 0;
  font-size: 0.75rem;
  color: #6f6a63;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes postIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 213, 181, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(232, 213, 181, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 213, 181, 0);
  }
}

@media (max-width: 1040px) {
  .float-like,
  .float-dm,
  .float-live {
    display: none;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2.5rem;
  }

  .hero-line {
    max-width: none;
  }

  .hero-stage {
    min-height: auto;
  }

  .felt-stage,
  .alive-stage {
    grid-template-columns: 1fr;
  }

  .dead-window,
  .live-window {
    max-width: 28rem;
    transform: none;
  }

  .live-window {
    justify-self: start;
  }

  .honest-triad {
    grid-template-columns: 1fr;
  }

  .section-head .display {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: inline-block;
  }

  .top-inner,
  .hero,
  .section,
  .foot-inner {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .brand-name {
    font-size: clamp(3rem, 14vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow-a,
  .glow-b,
  .glow-c,
  .stage-glow,
  .live-dot,
  .float-card,
  .phone-shell,
  .post,
  .msg-peek,
  .brand-name,
  .hero-line,
  .hero-copy .lede,
  .cta-row,
  .trust-row,
  .reveal {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
