:root {
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', SFMono-Regular, Consolas, monospace;

  --bg-main: #ffffff;
  --bg-subtle: #f8f9fa;
  --bg-card: #ffffff;
  --bg-dark: #0a0a0c;
  --bg-phone-dark: #121214;

  --border-light: #e5e7eb;
  --border-medium: #d1d5db;
  --border-card: #ececf0;

  --text-main: #09090b;
  --text-muted: #52525b;
  --text-subtle: #71717a;
  --text-white: #ffffff;

  --accent-blue: #2563eb;
  --accent: #77b901;
  --accent-strong: #5c8f01;
  --accent-light: #8bcf14;

  --accent-text: #4a7300;
  --on-accent: #132000;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;

  --shadow-window: 0 30px 60px -15px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  --shadow-phone: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 4px 12px -2px rgba(0, 0, 0, 0.03), 0 0 0 1px rgba(0, 0, 0, 0.03);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  --radius-phone: 38px;

  --edge-fade: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.04) 2%,
    rgba(0, 0, 0, 0.15) 4%,
    rgba(0, 0, 0, 0.35) 6%,
    rgba(0, 0, 0, 0.6) 8%,
    rgba(0, 0, 0, 0.82) 10%,
    rgba(0, 0, 0, 0.95) 12%,
    rgba(0, 0, 0, 1) 14%,
    rgba(0, 0, 0, 1) 86%,
    rgba(0, 0, 0, 0.95) 88%,
    rgba(0, 0, 0, 0.82) 90%,
    rgba(0, 0, 0, 0.6) 92%,
    rgba(0, 0, 0, 0.35) 94%,
    rgba(0, 0, 0, 0.15) 96%,
    rgba(0, 0, 0, 0.04) 98%,
    rgba(0, 0, 0, 0) 100%
  );
}

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

html {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 200;
  transform: translate(-50%, -120%);
  padding: 0.7rem 1.25rem;
  background: var(--text-main);
  color: #ffffff;
  border-radius: 0 0 12px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translate(-50%, 0);
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.top-nav {
  position: sticky;
  top: 0.9rem;
  z-index: 100;
  padding: 0.9rem 1.5rem 0;
  background: transparent;
  transition:
    transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 260ms ease;
}

.top-nav.is-tucked {
  transform: translateY(calc(-100% - 1.2rem));
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .top-nav {
    transition: none;
  }
}

.nav-inner {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.7rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: #f1f1f1;
  border-radius: var(--radius-pill);
}

.nav-brand img {
  display: block;
  height: 26px;
  width: auto;
}

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

.nav-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 150ms ease;
}

.nav-item:hover {
  color: var(--text-main);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-login {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.45rem 0.9rem;
  white-space: nowrap;
  transition: color 150ms ease;
}

.nav-login:hover {
  color: var(--text-main);
}

.nav-pill-btn {
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--text-main);
  color: #ffffff;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all 160ms ease;
}

.nav-pill-btn:hover {
  background: #27272a;
  transform: translateY(-1px);
}

.hero-section {
  padding: 3.5rem 1.5rem 5rem;
  text-align: center;
  background: #fff;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-constellation {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1000 / 360;
  margin-bottom: 3rem;
}

.constellation-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: var(--border-medium);
  stroke-width: 1;
}

.constellation-lines path {
  vector-effect: non-scaling-stroke;
}

.node-dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--accent);
}

.node-tile {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(var(--s) * 1%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24%;
  color: #ffffff;
  box-shadow:
    0 14px 26px -12px rgba(9, 9, 11, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.35);
  animation: node-float 7s ease-in-out infinite;
}

.node-tile:nth-of-type(3n) {
  animation-delay: -2.3s;
}

.node-tile:nth-of-type(3n + 1) {
  animation-delay: -4.6s;
}

@keyframes node-float {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 6px));
  }
}

.node-tile svg {
  width: 46%;
  height: 46%;
}

.tile-amber {
  background: linear-gradient(150deg, #fde047 0%, #facc15 100%);
  color: #713f12;
}

.tile-sky {
  background: linear-gradient(150deg, #38bdf8 0%, #0ea5e9 100%);
}

.tile-coral {
  background: linear-gradient(150deg, #fb7185 0%, #f43f5e 100%);
}

.tile-teal {
  background: linear-gradient(150deg, #2dd4bf 0%, #14b8a6 100%);
}

.tile-plain {
  background: #ffffff;
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  box-shadow: 0 14px 26px -14px rgba(9, 9, 11, 0.22);
}

.tile-brand {
  background: linear-gradient(150deg, #98d92b 0%, var(--accent) 55%, var(--accent-strong) 100%);
  border-radius: 26%;
}

.tile-ring {
  width: 54%;
  height: 54%;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-ring svg {
  width: 55%;
  height: 55%;
}

.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.hero-subtitle {
  line-height: 1.5;
  color: var(--text-subtle);
  max-width: 620px;
  margin-bottom: 2rem;
  font-weight: 400;
  text-wrap: balance;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.4rem;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
  color: var(--on-accent);
  border-radius: var(--radius-pill);
  font-size: .9rem;
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(92, 143, 1, 0.6);
}

.btn-black-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  background: #000000;
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-black-pill.large {
  padding: 0.95rem 2.25rem;
  font-size: 1rem;
}

.btn-black-pill:hover {
  background: #27272a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.hero-cta-subtext {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-secondary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.75rem;
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 550;
  text-decoration: none;
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary-pill:hover {
  background: var(--bg-subtle);
  border-color: var(--text-muted);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.08);
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--text-subtle);
  margin-top: 0.25rem;
}

.hero-trust-badge svg {
  color: var(--accent-strong);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .node-tile {
    animation: none;
  }
}

.audiences-section {
  padding: 5.5rem 0 6rem;
  background: var(--bg-subtle);
}

.audiences-heading {
  font-size: clamp(2.4rem, 5.4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-main);
  margin-bottom: 0.9rem;
}

.audiences-subtext {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-subtle);
  max-width: 460px;
  margin: 0 auto 3rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 1.25rem 1.25rem 1.5rem;
}

.bento-card-wide {
  grid-column: span 2;
}

.bento-media {
  border-radius: 14px;
  background: linear-gradient(160deg, #f4f4f5 0%, #ececf0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  overflow: hidden;
}

.media-tall {
  aspect-ratio: 16 / 11;
}

.bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.media-wide {
  aspect-ratio: 21 / 9;
}

.bento-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.bento-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-subtle);
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card-wide {
    grid-column: span 1;
  }
}

.showcase-section {
  padding: 0 1.5rem 6.5rem;
}

.hero-showcase-container {
  max-width: 1080px;
  margin: 0 auto;
}

.desktop-mockup-frame {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-window);
  overflow: hidden;
  text-align: left;
}

.mockup-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: #fafafa;
  border-bottom: 1px solid var(--border-card);
  gap: 1.5rem;
}

.mockup-window-controls {
  display: flex;
  gap: 7px;
}

.dot-btn {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-btn.red { background: #ff5f56; }
.dot-btn.yellow { background: #ffbd2e; }
.dot-btn.green { background: #27c93f; }

.mockup-search-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-subtle);
  flex-grow: 1;
  max-width: 600px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-emerald);
  background: #ecfdf5;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.pulse {
  width: 6px;
  height: 6px;
  background: var(--accent-emerald);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.mockup-app-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border-card);
  background: #ffffff;
}

.mockup-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.mockup-tab {
  padding: 0.45rem 0.85rem;
  font-size: 0.825rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 150ms ease;
}

.mockup-tab:hover {
  color: var(--text-main);
  background: #f4f4f5;
}

.mockup-tab.active {
  background: #09090b;
  color: #ffffff;
}

.mockup-filter-btn {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mockup-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fafafb;
}

.mockup-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mockup-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.08);
}

.mockup-card-preview {
  height: 150px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.bg-dark-purple { background: linear-gradient(135deg, #16260a 0%, #2c4a10 100%); color: #fff; }
.bg-emerald { background: linear-gradient(135deg, #064e3b 0%, #047857 100%); color: #fff; }
.bg-warm-orange { background: linear-gradient(135deg, #7c2d12 0%, #c2410c 100%); color: #fff; }
.bg-code-dark { background: #0f172a; color: #e2e8f0; }

.mini-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.mini-question, .mini-rsvp-title, .mini-nps-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.mini-bar-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.mini-bar-bg {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.mini-bar-val.purple-val {
  height: 100%;
  background: #98d92b;
}

.mini-pct {
  font-size: 0.7rem;
  font-weight: 700;
}

.mini-rsvp-btn-row {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.mini-rsvp-pill {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 600;
}

.mini-rsvp-pill.active {
  background: #ffffff;
  color: #064e3b;
}

.mini-rsvp-sub, .mini-nps-score, .mini-code-status {
  font-size: 0.7rem;
  opacity: 0.85;
}

.mini-nps-boxes {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}

.mini-nps-boxes span {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.35rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.mini-nps-boxes span.active {
  background: #ffffff;
  color: #7c2d12;
}

.mini-code-line {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 1.4;
}

.mini-code-line.ind { padding-left: 0.5rem; }
.c-dim { color: #94a3b8; }
.c-blue { color: #38bdf8; }
.c-green { color: #4ade80; }

.mockup-card-info {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 750;
  margin-bottom: 0.35rem;
}

.card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.85rem;
  flex-grow: 1;
}

.card-footer-tags {
  display: flex;
  gap: 0.4rem;
}

.tag-pill {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: #f4f4f5;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.section {
  padding: 6.5rem 0;
}

.section-heading-main {
  font-size: clamp(2.25rem, 4.8vw, 3.4rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.section-subtext-main {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.75rem;
  line-height: 1.55;
}

.people-section {
  padding: 2rem 0 2.5rem;
  background: var(--bg-subtle);
}

.patterns-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;

  padding: 4rem 0;
  overflow: hidden;
}

.patterns-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 1 520px;
  padding: 0 1.5rem;
}

.patterns-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  box-shadow: 0 14px 30px -16px rgba(9, 9, 11, 0.35);
}

.patterns-icon svg {
  width: 30px;
  height: 30px;
}

.heading-accent {
  color: var(--accent-text);
}

.patterns-center .section-heading-main {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.patterns-center .section-subtext-main {
  max-width: 430px;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.patterns-center .btn-primary-pill {
  gap: 0.6rem;
}

.patterns-center .btn-primary-pill svg {
  width: 18px;
  height: 18px;
}

.ask-points {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.75rem;
}

.ask-points li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.point-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(119, 185, 1, 0.12);
  color: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-icon svg {
  width: 17px;
  height: 17px;
}

.ph-rail {
  display: flex;
  gap: 1.5rem;
  flex: 0 0 auto;
}

.ph-col {
  display: flex;
  flex-direction: column;
}

.ph-card {
  position: relative;
  width: calc(var(--w) * 1px);
  --w: 140;
  --a: 1.3333;
  aspect-ratio: 1 / var(--a);
  border-radius: 16px;
  background: #ffffff;
}

.ph-media {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);

  --sprite-r: 1.2496;
  --crop: 0.3;
  background-color: #d4d4d8;
  background-image: url('./people-collage.webp');
  background-repeat: no-repeat;
  background-size: 413% auto;

  background-position: calc(var(--col) / 3 * 100%)
    calc(
      (2 * var(--sprite-r) * var(--row) + var(--crop)) /
        (4 * var(--sprite-r) - var(--a)) * 100%
    );
}

.ph-media svg {
  width: 32%;
  height: 32%;
  opacity: 0;
}

.ph-a {
  --col: 0;
  --row: 0;
  --w: 152;
}
.ph-b {
  --col: 1;
  --row: 0;
  --w: 134;
}
.ph-c {
  --col: 2;
  --row: 0;
  --w: 138;
}
.ph-d {
  --col: 3;
  --row: 0;
  --w: 146;
}
.ph-e {
  --col: 0;
  --row: 1;
  --w: 140;
}
.ph-f {
  --col: 1;
  --row: 1;
  --w: 150;
}
.ph-g {
  --col: 2;
  --row: 1;
  --w: 134;
}
.ph-h {
  --col: 3;
  --row: 1;
  --w: 148;
}

.ph-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 12px 26px -14px rgba(9, 9, 11, 0.45);
}

.chip-br {
  right: -22px;
  bottom: 14%;
}

.chip-bl {
  left: -26px;
  bottom: 12%;
}

.chip-cr {
  right: -46px;
  top: 50%;
  transform: translateY(-50%);
}

.chip-emoji {
  font-size: 0.95rem;
  line-height: 1;
}

.chip-wide {
  padding-right: 0.85rem;
}

.chip-bar {
  display: block;
  width: 34px;
  height: 7px;
  border-radius: 4px;
  background: #ececf0;
  overflow: hidden;
}

.chip-bar span {
  display: block;
  width: var(--v);
  height: 100%;
  border-radius: 4px;
  background: var(--accent);
}

.chip-panel {
  flex-direction: column;
  align-items: stretch;
  gap: 0.3rem;
  padding: 0.6rem;
  border-radius: 14px;
}

.opt-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.opt-key {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ececf0;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opt-row.is-picked {
  background: rgba(119, 185, 1, 0.12);
  color: var(--accent-text);
  font-weight: 600;
}

.opt-row.is-picked .opt-key {
  background: var(--accent);
  color: var(--on-accent);
}

.chip-donut {
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.8rem;
}

.donut {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--v) * 1%), #ececf0 0);
  -webkit-mask: radial-gradient(circle, transparent 8px, #000 9px);
  mask: radial-gradient(circle, transparent 8px, #000 9px);
}

.donut-meta {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.25;
}

.donut-meta strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.chip-ask {
  width: 150px;
  gap: 0.45rem;
  padding: 0.7rem 0.75rem;
}

.ask-q {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-muted);
  white-space: normal;
}

.ask-stars {
  color: var(--accent-text);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.ph-col-outer {
  gap: 6rem;
  transform: translateY(-3rem);
}

.ph-col-inner {
  gap: 3.5rem;
  transform: translateY(3rem);
}

.ph-rail-left .ph-col-outer {
  margin-left: -3rem;
}

.ph-rail-right .ph-col-outer {
  margin-right: -3rem;
}

@media (max-width: 1280px) {
  .patterns-stage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 1rem;
    padding: 1rem 1.5rem 0;
    overflow: visible;
  }

  .patterns-center {
    grid-column: 1 / -1;
    flex: 1 1 auto;
    margin-bottom: 2rem;
  }

  .ph-rail,
  .ph-col {
    display: contents;
  }

  .ph-card {
    width: 100%;
    margin: 0;
    transform: none;
  }

  .ph-b,
  .ph-d,
  .ph-f,
  .ph-h {
    margin-top: 2.25rem;
  }

  .ph-a {
    --a: 1.34;
  }
  .ph-b {
    --a: 1.16;
  }
  .ph-c {
    --a: 1.42;
  }
  .ph-d {
    --a: 1.24;
  }
  .ph-e {
    --a: 1.2;
  }
  .ph-f {
    --a: 1.38;
  }
  .ph-g {
    --a: 1.28;
  }
  .ph-h {
    --a: 1.46;
  }

  .chip-br,
  .chip-bl,
  .chip-cr {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 10px;
    transform: translateX(-50%);
    max-width: calc(100% - 16px);
  }

  .ph-b .ph-chip,
  .ph-d .ph-chip,
  .ph-f .ph-chip,
  .ph-h .ph-chip {
    bottom: auto;
    top: 10px;
  }

  .chip-panel {
    padding: 0.45rem;
  }

  .chip-ask {
    width: auto;
  }

  .ask-q {
    font-size: 0.68rem;
  }

  .opt-row {
    font-size: 0.7rem;
    padding: 0.22rem 0.4rem;
  }
}

@media (max-width: 960px) {
  .people-section {
    padding: 3.5rem 0 4rem;
  }

  .ask-points {
    gap: 1.5rem;
  }
}

@media (max-width: 620px) {
  .patterns-stage {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    padding: 1rem 1.25rem 0;
  }

  .ask-points {
    gap: 1.25rem;
    font-size: 0.8rem;
  }

  .ph-b,
  .ph-d,
  .ph-f,
  .ph-h {
    margin-top: 1.75rem;
  }
}

.patterns-section {
  padding: 5.5rem 0 5rem;
  background: var(--bg-subtle);
}

.section-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  margin: 0 auto 1.75rem;
  background: #ffffff;
  color: var(--tpl-text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -16px rgba(9, 9, 11, 0.35);
}

.section-icon svg {
  width: 28px;
  height: 28px;
}

.patterns-section .section-heading-main {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.patterns-section .section-subtext-main {
  max-width: 460px;
  font-size: 1rem;
  color: var(--text-subtle);
  margin-bottom: 2.25rem;
}

.pill-filter-bar {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.3rem;
  margin-bottom: 1rem;
  background: rgba(9, 9, 11, 0.04);
  border-radius: var(--radius-pill);
}

.pill-filter {
  position: relative;
  padding: 0.5rem 1.05rem;
  font-size: 0.83rem;
  font-weight: 500;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-muted);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.pill-filter:hover {
  color: var(--text-main);
}

.pill-filter.active {
  background: #ffffff;
  color: var(--text-main);
  font-weight: 600;
  box-shadow:
    0 1px 2px rgba(9, 9, 11, 0.06),
    0 6px 14px -8px rgba(9, 9, 11, 0.3);
}

.phones-carousel-wrapper {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 2.5rem 2rem 3rem;
  scrollbar-width: none;

  -webkit-mask-image: var(--edge-fade);
  mask-image: var(--edge-fade);
}

.phones-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.phones-carousel-wrapper,
.quote-marquee {
  cursor: grab;
  touch-action: pan-y;
}

.phones-carousel-wrapper.is-dragging,
.quote-marquee.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.is-dragging * {
  pointer-events: none;
}

.phone-mockup {
  -webkit-user-select: none;
  user-select: none;
}

.phones-carousel-wrapper .phone-mockup,
.quote-marquee .quote-card {
  cursor: default;
}

.phone-screen [class*='option'],
.phone-screen [class*='chip'],
.phone-screen .emoji-card,
.phone-screen .phone-radio-item,
.phone-screen .scale-dot,
.phone-screen .choice-btn,
.phone-screen .versus-card,
.phone-screen .meal-row,
.phone-screen .wed-choice,
.phone-screen .dn-row,
.phone-screen .gr-row,
.phone-screen .qz-answer,
.phone-screen .bl-answer,
.phone-screen .fun-half,
.phone-screen .dg-field,
.phone-screen .mc-btn,
.phone-screen .pl-card {
  cursor: pointer;
}

.phones-carousel-wrapper + .phones-carousel-wrapper {
  padding-top: 0;
}

.phones-row {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  width: max-content;
  margin: 0 auto;
}

.phones-carousel-wrapper {
  scroll-behavior: auto;
}

.phone-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  transition: transform 200ms ease;
}

.phone-mockup:hover {
  transform: translateY(-6px);
}

.phone-mockup.hidden {
  display: none;
}

.phone-case {
  width: 220px;
  height: 440px;
  background: linear-gradient(160deg, #2a2a2e 0%, #161618 55%, #232326 100%);
  border-radius: var(--radius-phone);
  padding: 7px;
  position: relative;
  box-shadow:
    0 26px 50px -22px rgba(9, 9, 11, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.phone-case.dark-bezel {
  background: linear-gradient(160deg, #232326 0%, #121214 55%, #1d1d20 100%);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 31px;
  overflow: hidden;
  padding: 0.9rem 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  color: #09090b;
  position: relative;
  text-align: left;
}

.phone-screen-dark {
  background: #131316;
  color: #fafafa;
}

.phone-screen-warm {
  background: #fcfcfa;
}

.phone-screen-slate {
  background: #131316;
  color: #fafafa;
}

.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.5;
  margin-bottom: auto;
}

.phone-notch {
  width: 42px;
  height: 5px;
  background: currentColor;
  opacity: 0.35;
  border-radius: 10px;
}

.phone-app-header {
  margin-bottom: 0.5rem;
}

.phone-pill-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.25rem 0.55rem;
  background: rgba(9, 9, 11, 0.05);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
}

.phone-screen-dark .phone-pill-tag,
.phone-screen-slate .phone-pill-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
}

.phone-pill-tag.red-tag,
.phone-pill-tag.orange-tag,
.phone-pill-tag.green-tag {
  background: var(--tpl-soft);
  color: var(--tpl-text);
}

.phone-poll-title {
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.35;
  margin: 0.65rem 0 0.85rem;
}

.phone-poll-title.center {
  text-align: center;
}

.phone-subtext {
  font-size: 0.7rem;
  line-height: 1.45;
  color: var(--text-subtle);
  text-align: center;
  margin-bottom: 0.9rem;
}

.phone-radios {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.phone-radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 0.55rem 0.6rem;
  border: 0;
  border-radius: 11px;
  background: rgba(9, 9, 11, 0.04);
  color: var(--text-muted);
  transition: background 160ms ease, color 160ms ease;
}

.phone-radio-item.checked {
  background: var(--tpl-soft);
  color: var(--tpl-text);
  font-weight: 600;
}

.radio-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1.5px solid rgba(9, 9, 11, 0.2);
}

.phone-radio-item.checked .radio-dot {
  border-color: var(--tpl);
  background: var(--tpl);
}

.phone-action-btn {
  margin-top: auto;
  width: 100%;
  padding: 0.7rem;
  background: var(--tpl);
  color: var(--tpl-on);
  border-radius: 12px;
  border: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 16px -10px rgba(92, 143, 1, 0.9);
}

.phone-action-btn.btn-orange {
  background: var(--tpl);
}

.phone-dark-bars {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.dark-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  opacity: 0.85;
}

.dark-bar-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.dark-bar-fill.fill-blue {
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--tpl-light), var(--tpl));
}

.phone-rsvp-banner {
  height: 66px;
  background: linear-gradient(150deg, #2b2f26 0%, #14170f 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 0.9rem;
}

.rsvp-initials {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  opacity: 0.9;
}

.phone-rsvp-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.rsvp-option-btn {
  padding: 0.6rem;
  border: 0;
  border-radius: 11px;
  background: rgba(9, 9, 11, 0.04);
  color: var(--text-muted);
  font-size: 0.73rem;
  font-weight: 500;
  text-align: center;
  transition: background 160ms ease, color 160ms ease;
}

.rsvp-option-btn.selected {
  background: var(--tpl-soft);
  color: var(--tpl-text);
  font-weight: 600;
}

.phone-input-box {
  background: rgba(9, 9, 11, 0.04);
  padding: 0.55rem 0.65rem;
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.input-lbl {
  font-size: 0.58rem;
  color: var(--text-subtle);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.input-val {
  font-size: 0.72rem;
  font-weight: 500;
}

.phone-stars-row {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  color: var(--tpl-text);
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.phone-textarea-mock {
  font-size: 0.7rem;
  line-height: 1.45;
  color: var(--text-subtle);
  background: rgba(9, 9, 11, 0.04);
  padding: 0.6rem 0.65rem;
  border-radius: 11px;
  border: 0;
  margin-bottom: 0.9rem;
}

.phone-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.quiz-item {
  padding: 0.55rem 0.6rem;
  border: 0;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 500;
}

.quiz-item.correct {
  background: var(--tpl-mid);
  color: #b6ef5c;
  font-weight: 600;
}

.quiz-feedback-box {
  font-size: 0.65rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
}

.phone-emoji-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.emoji-card {
  padding: 0.6rem 0.5rem;
  border: 0;
  border-radius: 12px;
  background: rgba(9, 9, 11, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  transition: background 160ms ease;
}

.emoji-card.selected {
  background: var(--tpl-soft);
}

.emoji-card span { font-size: 1.15rem; }

.emoji-card strong {
  font-size: 0.72rem;
  font-weight: 600;
}

.emoji-card small {
  font-size: 0.6rem;
  color: var(--text-subtle);
}

.phone-code-mini {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.65rem;
  border-radius: 11px;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.phone-scale {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.scale-dot {
  flex: 1 1 0;
  padding: 0.6rem 0;
  border: 0;
  border-radius: 11px;
  background: rgba(9, 9, 11, 0.04);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.scale-dot.is-picked {
  background: var(--tpl);
  color: var(--tpl-on);
  font-weight: 600;
}

.phone-scale-ends {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  color: var(--text-subtle);
  margin-bottom: 1rem;
}

.phone-choice-pair {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.choice-btn {
  flex: 1 1 0;
  padding: 0.75rem 0 .75rem .75rem;

  border: 0;
  border-radius: 12px;
  background: rgba(9, 9, 11, 0.04);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.choice-btn.is-picked {
  background: var(--tpl-soft);
  color: var(--tpl-text);
  font-weight: 600;
}

.phone-meta-line {
  font-size: 0.65rem;
  color: var(--text-subtle);
  margin-bottom: 1rem;
}

.phone-rank {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.phone-rank li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.6rem;
  border-radius: 11px;
  background: rgba(9, 9, 11, 0.04);
  font-size: 0.72rem;
  font-weight: 500;
}

.rank-no {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--tpl);
  color: var(--tpl-on);
  font-size: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.date-chip {
  padding: 0.6rem 0 .6rem .6rem;
  border: 0;
  border-radius: 11px;
  background: rgba(9, 9, 11, 0.04);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.date-chip.is-picked {
  background: var(--tpl-soft);
  color: var(--tpl-text);
  font-weight: 600;
}

.phone-result-rows {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.result-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 500;
  padding-bottom: 0.45rem;
}

.result-row i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
}

.result-row i::after {
  content: '';
  display: block;
  width: var(--v);
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--tpl-light), var(--tpl));
}

.phone-field {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.55rem 0.65rem;
  border-radius: 11px;
  background: rgba(9, 9, 11, 0.04);
  margin-bottom: 0.45rem;
}

.field-lbl {
  font-size: 0.58rem;
  color: var(--text-subtle);
}

.field-val {
  font-size: 0.72rem;
  font-weight: 500;
}

.phone-qa {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.phone-qa li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 11px;
  background: rgba(9, 9, 11, 0.04);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.3;
}

.qa-up {
  min-width: 26px;
  padding: 0.15rem 0;
  flex: 0 0 auto;
  border-radius: 7px;
  background: var(--tpl-soft);
  color: var(--tpl-text);
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
}

.qa-up.is-quiet {
  background: rgba(9, 9, 11, 0.06);
  color: var(--text-subtle);
}

.phone-nps-row {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.phone-nps-row span {
  flex: 1 1 0;
  padding: 0.5rem 0;
  border-radius: 9px;
  background: rgba(9, 9, 11, 0.04);
  color: var(--text-muted);
  font-size: 0.64rem;
  font-weight: 500;
  text-align: center;
}

.phone-nps-row .is-picked {
  background: var(--tpl);
  color: var(--tpl-on);
  font-weight: 700;
}

.phone-meal-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.meal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem;
  border: 0;
  border-radius: 11px;
  background: rgba(9, 9, 11, 0.04);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.meal-row.is-picked {
  background: var(--tpl-soft);
  color: var(--tpl-text);
  font-weight: 600;
}

.meal-tick {
  color: var(--tpl-text);
}

.phone-versus {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.versus-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 0.5rem;
  border: 0;
  border-radius: 14px;
  background: rgba(9, 9, 11, 0.04);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.versus-card.is-picked {
  background: var(--tpl-soft);
  color: var(--tpl-text);
  font-weight: 600;
}

.versus-emoji {
  font-size: 1.3rem;
}

.versus-or {
  font-size: 0.65rem;
  color: var(--text-subtle);
}

.phone-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem 0.6rem;
  padding: 0.75rem 0;
  margin-bottom: 0.9rem;
}

.phone-cloud span {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.phone-cloud .w-lg {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--tpl-light);
}

.phone-cloud .w-md {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.phone-cloud .w-sm {
  font-size: 0.72rem;
}

.phone-sev-row {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.sev-chip {
  flex: 1 1 0;
  padding: 0.5rem 0 .5rem .5rem;
  border: 0;
  border-radius: 10px;
  background: rgba(9, 9, 11, 0.04);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.sev-chip.is-picked {
  background: var(--tpl-soft);
  color: var(--tpl-text);
  font-weight: 600;
}

.phone-caption {
  margin-top: 1.15rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.phone-caption strong {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.phone-caption span {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.flows-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.flow-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.flow-visual-box {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.bg-subtle-light { background: #f8fafc; }
.bg-subtle-dark { background: #0f172a; }

.flow-phone-mini {
  width: 280px;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.flow-phone-dark {
  background: #1e293b;
  border-color: #334155;
  color: #ffffff;
}

.flow-phone-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 750;
  margin-bottom: 0.75rem;
}

.f-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-blue); }
.f-dot.green { background: var(--accent-emerald); }

.flow-step-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.35rem;
  background: #f8fafc;
  color: var(--text-muted);
}

.flow-step-row.active {
  background: #eff6ff;
  color: var(--accent-blue);
  font-weight: 700;
}

.flow-step-row.dark-step {
  background: #0f172a;
  color: #94a3b8;
}

.flow-step-row.dark-step.active {
  background: #0284c7;
  color: #ffffff;
  font-weight: 700;
}

.step-badge {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--border-medium);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  font-weight: 800;
}

.flow-meta {
  padding: 1.75rem;
}

.flow-tag {
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--accent-blue);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.4rem;
}

.flow-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.flow-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.creation-section {
  padding: 6rem 0 5rem;
  background: var(--bg-main);
}

.creation-heading {
  font-size: clamp(2.2rem, 5.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--text-main);
  margin-bottom: 4rem;
}

.creation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 3.25rem;
}

.creation-item {
  display: flex;
  flex-direction: column;
}

.creation-panel {
  position: relative;
  aspect-ratio: 1 / 0.9;
  border-radius: 16px;
  background: #f4f4f5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.creation-text {
  text-align: center;
  padding: 0 0.5rem;
}

.creation-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.creation-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-subtle);
}

.creation-desc a {
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.panel-toolbar {
  position: absolute;
  left: -6%;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  height: 92px;
  background: #101013;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1rem;
}

.toolbar-round {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}

.toolbar-round svg {
  width: 20px;
  height: 20px;
}

.toolbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}

.toolbar-pill.is-primary {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.toolbar-pill svg {
  width: 20px;
  height: 20px;
}

.toolbar-pill.is-cut {
  flex: 0 0 auto;
}

.panel-popover {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 12%;
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem 1rem 0.35rem;
  box-shadow: 0 20px 45px -22px rgba(9, 9, 11, 0.45);
  text-align: left;
}

.pop-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-subtle);
  padding: 0.35rem 0.5rem;
}

.pop-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem;
  border-radius: 10px;
}

.pop-row.is-highlight {
  background: #f4f4f5;
}

.pop-icon,
.pop-thumb {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f5;
  color: var(--text-main);
}

.pop-icon svg {
  width: 17px;
  height: 17px;
}

.pop-thumb {
  background: linear-gradient(150deg, #3f3f46 0%, #18181b 100%);
}

.pop-thumb.light {
  background: linear-gradient(150deg, #ffffff 0%, #e4e4e7 100%);
  border: 1px solid var(--border-card);
}

.pop-name {
  flex: 1 1 auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.pop-action,
.pop-check {
  color: var(--text-main);
  display: flex;
}

.pop-action svg,
.pop-check svg {
  width: 17px;
  height: 17px;
}

.panel-notify {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 20px 45px -24px rgba(9, 9, 11, 0.4);
  text-align: left;
}

.notify-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.notify-avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--accent-light) 0%, var(--accent) 100%);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.notify-avatar svg {
  width: 17px;
  height: 17px;
}

.notify-meta {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 0.85rem;
}

.notify-meta strong {
  font-weight: 700;
  color: var(--text-main);
}

.notify-time {
  font-size: 0.72rem;
  color: var(--text-subtle);
}

.notify-body strong {
  font-weight: 650;
}

.notify-body {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.notify-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-text);
  background: rgba(119, 185, 1, 0.12);
  border-radius: 9px;
  padding: 0.55rem 0.7rem;
}

.notify-status svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .creation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .creation-grid {
    grid-template-columns: 1fr;
  }

  .creation-heading {
    margin-bottom: 2.5rem;
  }
}

.appreciation-section {
  padding: 6rem 0 6.5rem;
  background: #faf9f7;
  overflow: hidden;
}

.appreciation-heading {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text-main);
  margin-bottom: 3.5rem;
}

.appreciation-heading em {
  font-style: normal;
  color: var(--accent-text);
}

.envelope-stage {
  position: relative;
  height: 520px;
  margin: 0 auto 3rem;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.envelope-back,
.envelope-front {
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: min(440px, 84vw);
  height: 280px;
  transform: translateX(-50%);
  transition:
    opacity 450ms ease,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.envelope-back {
  z-index: 1;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(9, 9, 11, 0.08);
  box-shadow: 0 30px 55px -32px rgba(9, 9, 11, 0.5);
}

.envelope-front {
  z-index: 3;
  pointer-events: none;
  perspective: 900px;
}

.env-flap,
.env-panel {
  position: absolute;
  inset: 0;
  transition: transform 550ms cubic-bezier(0.16, 1, 0.3, 1);
}

.env-flap-left {
  background: linear-gradient(150deg, var(--accent-light) 0%, var(--accent) 100%);
  clip-path: polygon(0 0, 52% 52%, 0 100%);
  transform-origin: left center;
}

.env-flap-right {
  background: linear-gradient(210deg, var(--accent-light) 0%, var(--accent) 100%);
  clip-path: polygon(100% 0, 48% 52%, 100% 100%);
  transform-origin: right center;
}

.env-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f2 100%);
  clip-path: polygon(0 42%, 50% 96%, 100% 42%, 100% 100%, 0 100%);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.featured-quote {
  position: relative;
  z-index: 2;
  width: min(420px, 86vw);
  margin-bottom: 90px;
  padding: 2rem 1.9rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 34px 60px -30px rgba(9, 9, 11, 0.45);
  text-align: center;
  transform: translateY(calc((1 - var(--p)) * 150px))
    rotate(calc((1 - var(--p)) * -3deg))
    scale(calc(0.9 + 0.1 * var(--p)));
  transition: transform 250ms linear;
}

.featured-stars {
  display: block;
  color: var(--accent-text);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.featured-quote blockquote {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.featured-quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.featured-quote figcaption strong {
  font-size: 0.9rem;
  font-weight: 700;
}

.featured-quote figcaption span {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.pop-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  box-shadow: 0 14px 28px -16px rgba(9, 9, 11, 0.5);
  opacity: 0;
  transform: scale(0.4) translateY(14px);
  transition:
    opacity 400ms ease,
    transform 550ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pop-1 {
  left: 4%;
  top: 26%;
}
.pop-2 {
  left: 12%;
  top: 54%;
}
.pop-3 {
  right: 5%;
  top: 22%;
}
.pop-4 {
  right: 11%;
  top: 52%;
}
.pop-5 {
  left: 22%;
  top: 8%;
}
.pop-6 {
  right: 20%;
  top: 6%;
}

.envelope-stage.is-open .pop-chip {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.envelope-stage.is-open .pop-1 {
  transition-delay: 60ms;
}
.envelope-stage.is-open .pop-2 {
  transition-delay: 180ms;
}
.envelope-stage.is-open .pop-3 {
  transition-delay: 120ms;
}
.envelope-stage.is-open .pop-4 {
  transition-delay: 240ms;
}
.envelope-stage.is-open .pop-5 {
  transition-delay: 320ms;
}
.envelope-stage.is-open .pop-6 {
  transition-delay: 400ms;
}

.envelope-stage.is-open .envelope-back,
.envelope-stage.is-open .envelope-front {
  opacity: 0;
  transform: translateX(-50%) translateY(34px);
}

.envelope-stage.is-open .env-flap-left {
  transform: rotateY(42deg);
}

.envelope-stage.is-open .env-flap-right {
  transform: rotateY(-42deg);
}

@media (max-width: 620px) {
  .envelope-stage {
    height: 460px;
  }

  .pop-chip {
    font-size: 0.72rem;
    padding: 0.35rem 0.6rem;
  }

  .pop-5,
  .pop-6 {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-quote,
  .pop-chip,
  .env-flap,
  .envelope-back,
  .envelope-front {
    transition: none;
  }
}

.quote-marquee {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: auto;
  -webkit-mask-image: var(--edge-fade);
  mask-image: var(--edge-fade);
}

.quote-marquee::-webkit-scrollbar {
  display: none;
}

.quote-marquee + .quote-marquee {
  margin-top: 1rem;
}

.quote-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: max-content;
}

.quote-card {
  flex: 0 0 auto;
  width: 380px;
  padding: 2.25rem 2.5rem 2.25rem 0;
  margin-right: 2.5rem;
  border-top: 1px solid rgba(9, 9, 11, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition:
    border-color 200ms ease,
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-card::before {
  content: '“';
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 0.6;
  color: var(--accent-text);
  opacity: 0.25;
  transition: opacity 200ms ease;
}

.quote-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-4px);
}

.quote-card:hover::before {
  opacity: 1;
}

.quote-text {
  font-size: 1.02rem;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--text-main);
}

.quote-by {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.quote-by strong {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.quote-by span {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

@media (max-width: 620px) {
  .appreciation-section {
    padding: 4rem 0 4.5rem;
  }

  .appreciation-heading {
    margin-bottom: 2.5rem;
  }

  .quote-card {
    width: 290px;
    padding: 1.75rem 1.5rem 1.75rem 0;
    margin-right: 1.5rem;
  }

  .quote-text {
    font-size: 0.95rem;
  }
}

.bottom-cta-section {
  padding: 6rem 0 4rem;
  text-align: center;
}

.bottom-cta-heading {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}

.bottom-cta-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.bottom-btn-row {
  margin-bottom: 0.75rem;
}

.infinite-marquee-section {
  width: 100%;
  overflow: hidden;
  padding: 2.25rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee-slide 35s linear infinite;
}

@keyframes marquee-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.brand-badge {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.brand-badge.green { background: #dcfce7; }
.brand-badge.blue { background: #dbeafe; }
.brand-badge.red { background: #fee2e2; }
.brand-badge.purple { background: #ede9fe; }
.brand-badge.orange { background: #ffedd5; }
.brand-badge.dark { background: #18181b; color: #fff; }
.brand-badge.cyan { background: #cffafe; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 1.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4faea 38%, #dff0c2 100%);
  color: var(--text-main);
  font-size: 0.9rem;
}

.footer-haze {
  position: absolute;
  top: 4%;
  width: 26%;
  height: 40%;
  filter: blur(22px);
  opacity: 0.5;
  pointer-events: none;
}

.footer-haze span {
  position: absolute;
  top: var(--t);
  height: 8%;
  width: var(--w);
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(119, 185, 1, 0.45), rgba(119, 185, 1, 0.12));
}

.footer-haze-left {
  left: 0;
}

.footer-haze-left span {
  left: 6%;
}

.footer-haze-right {
  right: 0;
}

.footer-haze-right span {
  right: 6%;
  background: linear-gradient(270deg, rgba(119, 185, 1, 0.45), rgba(119, 185, 1, 0.12));
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-cta {
  text-align: center;
  margin-bottom: 7rem;
}

.footer-cta-title {
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
  color: var(--on-accent);
  font-size: .9rem;
  box-shadow: 0 14px 28px -12px rgba(92, 143, 1, 0.6);
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -14px rgba(92, 143, 1, 0.65);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 6rem;
}

.footer-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-subtle);
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-main);
  transition: opacity 150ms ease;
}

.footer-links a:hover {
  opacity: 0.6;
}

.footer-wordmark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.wordmark-text {
  font-size: clamp(3.5rem, 17vw, 13rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
  user-select: none;
}

.wordmark-mark {
  flex: 0 0 auto;
  width: clamp(2.75rem, 9vw, 7rem);
  height: auto;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(9, 9, 11, 0.1);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--text-muted);
  transition: color 150ms ease;
}

.footer-legal a:hover {
  color: var(--text-main);
}

@media (max-width: 760px) {
  .site-footer {
    padding-top: 4rem;
  }

  .footer-cta {
    margin-bottom: 4rem;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    margin-bottom: 3.5rem;
  }

  .footer-haze {
    display: none;
  }
}

@media (max-width: 1024px) {
  .mockup-app-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flows-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero-section {
    padding: 2.5rem 1rem 4rem;
  }

  .hero-constellation {
    margin-bottom: 2rem;
  }

  .node-dot {
    width: 5px;
    height: 5px;
    margin: -2.5px 0 0 -2.5px;
  }

  .nav-inner {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.4rem 0.4rem 0.4rem 1rem;
  }

  .mockup-app-grid {
    grid-template-columns: 1fr;
  }

  .mockup-top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

}

.potd-section {
  padding: clamp(5.5rem, 9vw, 9rem) 0;
  background: #0b0b09;
  color: #f3f0e7;
}

.potd-card {
  max-width: 1220px;
  margin: 0 auto;
  background: transparent;
  overflow: hidden;
}

.potd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 2.5rem;
  border-bottom: 1px solid rgba(243, 240, 231, 0.2);
}

.potd-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #b8eb12;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.potd-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8eb12;
  box-shadow: 0 0 0 0 rgba(184, 235, 18, 0.48);
  animation: potd-pulse 2.4s ease-out infinite;
}

@keyframes potd-pulse {
  70% {
    box-shadow: 0 0 0 7px rgba(184, 235, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(119, 185, 1, 0);
  }
}

.potd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(243, 240, 231, 0.58);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.potd-toggle:hover {
  background: transparent;
  color: #f3f0e7;
}

.potd-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.potd-card.is-collapsed .potd-toggle svg {
  transform: rotate(-90deg);
}

.potd-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  column-gap: clamp(3rem, 7vw, 7.5rem);
  align-items: start;
  overflow: hidden;
  transition:
    height 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 300ms ease;
}

.potd-card.is-collapsed .potd-body {
  height: 0;
  opacity: 0;
}

.potd-question {
  max-width: 8.8ch;
  padding: clamp(3rem, 6vw, 5.5rem) 0 0;
  margin: 0;
  font-size: clamp(4.4rem, 7.15vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-wrap: balance;
}

.potd-options {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(3rem, 6vw, 5.5rem) 0 0;
}

.potd-options li {
  border-top: 1px solid rgba(243, 240, 231, 0.22);
}

.potd-options li:last-child {
  border-bottom: 1px solid rgba(243, 240, 231, 0.22);
}

.potd-option {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 90px;
  padding: 1.15rem 0.9rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f3f0e7;
  font-size: 0.94rem;
  text-align: left;
  overflow: hidden;
  transition:
    color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background 420ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.potd-options:not(.has-voted) .potd-option:hover {
  padding-left: 1.25rem;
  background: rgba(243, 240, 231, 0.06);
}

.potd-key {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.potd-answer {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  max-width: 26ch;
  font-weight: 520;
  line-height: 1.25;
}

.potd-pct {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(243, 240, 231, 0.66);
  opacity: 0;
  transform: translateX(6px);
  transition:
    opacity 300ms ease,
    transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.potd-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(243, 240, 231, 0.09);
  transition: width 750ms cubic-bezier(0.16, 1, 0.3, 1);
}

.potd-options.has-voted .potd-option {
  cursor: default;
}

.potd-options.has-voted .potd-pct {
  opacity: 1;
  transform: translateX(0);
}

.potd-option.is-chosen {
  background: #b8eb12;
  color: #11120c;
}

.potd-option.is-chosen .potd-key {
  background: transparent;
  color: #11120c;
}

.potd-option.is-chosen .potd-pct {
  color: #11120c;
}

.potd-option.is-chosen .potd-fill {
  background: rgba(17, 18, 12, 0.12);
}

.potd-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(243, 240, 231, 0.2);
  font-size: 0.77rem;
  color: rgba(243, 240, 231, 0.52);
}

.potd-link {
  padding-bottom: 0.25rem;
  border-bottom: 2px solid #b8eb12;
  color: #f3f0e7;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.potd-link:hover {
  color: #b8eb12;
  text-decoration: none;
}

@media (max-width: 900px) {
  .potd-body {
    grid-template-columns: 1fr;
  }

  .potd-question {
    max-width: 10.5ch;
    font-size: clamp(4.2rem, 12vw, 6.5rem);
  }

  .potd-options {
    padding-top: 3.5rem;
  }
}

.dev-section {
  padding: 5.5rem 0 6rem;
  background: var(--bg-subtle);
}

.dev-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.dev-copy .section-icon {
  margin-left: 0;
}

.dev-heading {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.dev-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-subtle);
  max-width: 42ch;
  margin-bottom: 1.75rem;
}

.dev-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.dev-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.dev-points svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--accent-text);
}

.dev-code {
  background: #131316;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -32px rgba(9, 9, 11, 0.7);
}

.code-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.code-dots {
  display: flex;
  gap: 0.35rem;
}

.code-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.code-file {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.code-body {
  padding: 1.35rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  overflow-x: auto;
}

.code-body .c-dim {
  color: rgba(255, 255, 255, 0.4);
}

.code-body .c-blue {
  color: #9bd1ff;
}

.code-body .c-str {
  color: #b6ef5c;
}

.code-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.code-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.code-ok {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 900px) {
  .dev-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.pricing-section {
  position: relative;
  padding: 5.5rem 0 6rem;
  background: var(--bg-main);
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  top: -18%;
  left: 50%;
  width: min(900px, 120%);
  height: 460px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(119, 185, 1, 0.16), transparent 65%);
  pointer-events: none;
}

.pricing-head {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(119, 185, 1, 0.14);
  color: var(--accent-text);
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-text);
}

.pricing-heading {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.pricing-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-subtle);
  max-width: 52ch;
  margin: 0 auto;
}

.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: 22px;
  padding: 2rem 1.9rem;
  box-shadow: 0 20px 44px -32px rgba(9, 9, 11, 0.4);
}

.price-free {
  background: linear-gradient(170deg, #ffffff 0%, #f7fbef 100%);
}

.free-badge {
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-pill);
  background: rgba(119, 185, 1, 0.14);
  color: var(--accent-text);
  font-size: 0.72rem;
  font-weight: 600;
}

.free-visual {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.free-bar {
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(9, 9, 11, 0.06);
  overflow: hidden;
}

.free-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  transition: width 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.price-free.is-revealed .free-bar span {
  width: var(--v);
}

.price-free.is-revealed .free-bar:nth-child(2) span {
  transition-delay: 120ms;
}

.price-free.is-revealed .free-bar:nth-child(3) span {
  transition-delay: 240ms;
}

.price-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
}

.price-body {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.price-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.price-free .btn-primary-pill {
  margin-top: auto;
  align-self: flex-start;
}

.builder-head {
  margin-bottom: 1.25rem;
}

.builder-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.cap-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  background: #ffffff;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cap-chip:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.cap-check {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  border: 1.5px solid var(--border-medium);
  border-radius: 6px;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.cap-check svg {
  width: 11px;
  height: 11px;
}

.cap-chip[aria-pressed='true'] {
  border-color: var(--accent);
  background: rgba(119, 185, 1, 0.07);
}

.cap-chip[aria-pressed='true'] .cap-check {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.cap-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cap-text strong {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--text-main);
}

.cap-text span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-subtle);
}

.builder-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(9, 9, 11, 0.04);
}

.builder-summary {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.builder-summary strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.builder-summary span {
  font-size: 0.82rem;
  color: var(--text-subtle);
}

.builder-cta {
  padding: 0.75rem 1.5rem;
  font-size: 0.88rem;
}

.price-note {
  font-size: 0.82rem;
  color: var(--text-subtle);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .builder-options {
    grid-template-columns: 1fr;
  }

  .potd-question {
    max-width: 9ch;
    padding-top: 2.5rem;
    font-size: clamp(3.1rem, 15vw, 4.2rem);
    line-height: 0.88;
  }

  .potd-head {
    padding-bottom: 1.5rem;
  }

  .potd-toggle > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .potd-options {
    padding-top: 2.5rem;
  }

  .potd-option {
    grid-template-columns: 1.8rem minmax(0, 1fr) auto;
    gap: 0.7rem;
    min-height: 78px;
    padding: 0.95rem 0.45rem;
    font-size: 0.84rem;
  }

  .potd-options:not(.has-voted) .potd-option:hover {
    padding-left: 0.7rem;
  }

  .potd-key {
    font-size: 1.35rem;
  }

  .potd-pct {
    font-size: 0.75rem;
  }

  .potd-foot {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 2.75rem;
    padding-top: 1.25rem;
  }
}

.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.will-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

.ph-card.will-reveal {
  transform: translateY(26px) scale(0.97);
}

.ph-card.will-reveal.is-revealed {
  transform: none;
}

.footer-wordmark.will-reveal {
  transform: translateY(30px);
  clip-path: inset(0 0 8% 0);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1000ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.footer-wordmark.will-reveal.is-revealed {
  transform: none;
  clip-path: inset(0 0 0 0);
}

.footer-haze span {
  animation: haze-drift 14s ease-in-out infinite alternate;
}

.footer-haze-left span:nth-child(2) {
  animation-delay: -4s;
}

.footer-haze-left span:nth-child(3) {
  animation-delay: -8s;
}

.footer-haze-right span:nth-child(2) {
  animation-delay: -6s;
}

.footer-haze-right span:nth-child(3) {
  animation-delay: -10s;
}

@keyframes haze-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(14px);
  }
}

.ph-chip {
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ph-card:hover .ph-chip {
  transform: translateY(-3px) scale(1.04);
}

.ph-card {
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ph-card:hover {
  transform: translateY(-6px);
}

@media (prefers-reduced-motion: reduce) {
  .will-reveal,
  .will-reveal.is-revealed,
  .footer-haze span,
  .ph-card,
  .ph-chip {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}

.phone-screen-wedding {
  background:
    radial-gradient(120% 80% at 50% 0%, #ffffff 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(175deg, #fbf7f1 0%, #f6ece3 100%);
  color: #4a3f38;
}

.phone-screen-night {
  background: linear-gradient(180deg, #241f2b 0%, #14121a 100%);
  color: #f4efe9;
}

.wed-card {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0.35rem 0.25rem;
}

.wed-card.wed-blush {
  background: radial-gradient(120% 70% at 50% 100%, rgba(226, 178, 173, 0.24), transparent 70%);
  border-radius: 18px;
}

.wed-eyebrow {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.85rem;
}

.wed-monogram {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.wed-names {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wed-names span {
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.55;
  margin: 0.1rem 0;
}

.wed-names.small {
  font-size: 1.2rem;
}

.wed-sprig {
  width: 76%;
  height: auto;
  margin: 0.7rem 0;
  color: currentColor;
  opacity: 0.45;
}

.wed-date {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

.wed-place {
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  opacity: 0.65;
  margin-top: 0.3rem;
}

.wed-ask {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 0.7rem;
}

.wed-choices {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.wed-choice {
  padding: 0.55rem 0.5rem;
  border: 1px solid rgba(74, 63, 56, 0.18);
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.wed-choice.is-picked {
  background: #4a3f38;
  border-color: #4a3f38;
  color: #fbf7f1;
}

.wed-btn {
  margin-top: auto;
  width: 100%;
  padding: 0.6rem;
  border-radius: 999px;
  background: #4a3f38;
  color: #fbf7f1;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wed-btn.light {
  background: #f4efe9;
  color: #241f2b;
}

.wed-note {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  opacity: 0.55;
  margin-top: 0.5rem;
}

.wed-song-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  margin: 0.9rem 0 1rem;
  text-align: left;
}

.wed-song-list span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.65rem;
}

.wed-song-list i {
  font-style: normal;
  opacity: 0.6;
}

.wed-song-list .is-typed {
  border: 1px dashed rgba(244, 239, 233, 0.3);
  background: transparent;
  opacity: 0.65;
}

.phone-screen-split {
  padding: 0;
  color: #ffffff;
}

.phone-screen-split .phone-status-bar {
  position: absolute;
  top: 0.9rem;
  left: 0.95rem;
  right: 0.95rem;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  opacity: 0.75;
}

.fun-split {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.fun-half {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0 1rem;
}

.fun-half-a {
  background: linear-gradient(160deg, #6ea8fe 0%, #3f6fd8 100%);
}

.fun-half-b {
  background: linear-gradient(160deg, #ffb36b 0%, #f2703d 100%);
}

.fun-emoji {
  font-size: 1.6rem;
}

.fun-vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #18181b;
  font-size: 0.66rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.fun-tally {
  display: flex;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
}

.fun-tally span {
  flex: 1 1 0;
  padding: 0.5rem 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
}

.phone-screen-mesh {
  background:
    radial-gradient(90% 60% at 15% 10%, rgba(167, 139, 250, 0.55), transparent 60%),
    radial-gradient(80% 60% at 90% 25%, rgba(94, 234, 212, 0.5), transparent 60%),
    radial-gradient(90% 70% at 50% 100%, rgba(253, 224, 71, 0.45), transparent 65%),
    #f7f7fb;
  color: #1c1c22;
}

.fun-mesh-body,
.fun-glow-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
}

.phone-pill-tag.light {
  background: rgba(255, 255, 255, 0.6);
  color: #1c1c22;
}

.fun-title {
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.fun-emoji-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.fun-emoji-row span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  opacity: 0.45;
  transition: transform 200ms ease;
}

.fun-emoji-row .is-picked {
  opacity: 1;
  background: #ffffff;
  transform: scale(1.25);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.fun-meta {
  font-size: 0.62rem;
  opacity: 0.6;
}

.fun-meta.light {
  color: rgba(255, 255, 255, 0.65);
  opacity: 1;
}

.phone-screen-glow {
  background:
    radial-gradient(85% 55% at 50% 0%, var(--tpl-soft), transparent 65%),
    linear-gradient(180deg, #1a1d16 0%, #101208 100%);
  color: #f4f7ee;
}

.fun-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.fun-chip-cloud span {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.66rem;
  font-weight: 500;
}

.fun-chip-cloud b {
  font-weight: 700;
  opacity: 0.6;
  margin-left: 0.2rem;
}

.fun-chip-cloud .is-lead {
  background: var(--tpl);
  color: var(--tpl-on);
  font-size: 0.78rem;
  padding: 0.45rem 0.8rem;
}

.fun-chip-cloud .is-lead b {
  opacity: 0.75;
}

.wordmap {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem 0.55rem;
  padding: 0.5rem 0;
  line-height: 1.1;
}

.wordmap span {
  color: var(--text-subtle);
  font-weight: 500;
}

.wordmap .wm-1 {
  font-size: 1.4rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--tpl-text);
}

.wordmap .wm-2 {
  font-size: 1rem;
  font-weight: 650;
  color: var(--text-main);
}

.wordmap .wm-3 {
  font-size: 0.78rem;
}

.wordmap .wm-4 {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.wordmap .wm-5 {
  font-size: 0.7rem;
}

.wordmap .wm-6 {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.wordmap .wm-7 {
  font-size: 0.72rem;
}

.phone-screen-nps {
  background: linear-gradient(180deg, #f4f8ec 0%, #ffffff 55%);
}

.nps-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.nps-eyebrow {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tpl-text);
  margin-bottom: 0.6rem;
}

.nps-question {
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin-bottom: 1.1rem;
}

.nps-scale {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.nps-scale span {
  padding: 0.4rem 0;
  border-radius: 8px;
  background: rgba(9, 9, 11, 0.05);
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 500;
  text-align: center;
}

.nps-scale .is-picked {
  background: var(--tpl);
  color: var(--tpl-on);
  font-weight: 700;
}

.nps-ends {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  color: var(--text-subtle);
}

.nps-btn,
.csat-btn {
  margin-top: auto;
  padding: 0.65rem;
  border-radius: 12px;
  background: var(--tpl);
  color: var(--tpl-on);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
}

.phone-screen-csat {
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(255, 214, 165, 0.5), transparent 60%),
    #fffdf9;
}

.csat-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.csat-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0.5rem 0 1.1rem;
}

.csat-faces {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.csat-faces span {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.7rem 0.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 10px -6px rgba(9, 9, 11, 0.3);
  font-size: 0.6rem;
  color: var(--text-muted);
}

.csat-faces i {
  font-style: normal;
  font-size: 1.15rem;
  opacity: 0.55;
}

.csat-faces .is-picked {
  background: #ffffff;
  color: var(--text-main);
  font-weight: 600;
  box-shadow: 0 8px 18px -8px rgba(9, 9, 11, 0.35);
}

.csat-faces .is-picked i {
  opacity: 1;
}

.csat-note {
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  background: rgba(9, 9, 11, 0.04);
  font-size: 0.66rem;
  color: var(--text-subtle);
}

.step-row {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 1.1rem;
}

.step {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  color: var(--text-subtle);
  font-size: 0.58rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step.is-current {
  border-color: var(--tpl-text);
  color: var(--tpl-text);
  box-shadow: 0 0 0 3px var(--tpl-soft);
}

.step.is-done {
  border-color: var(--border-light);
  color: var(--text-subtle);
}

.step-line {
  flex: 1 1 auto;
  height: 1px;
  background: var(--border-light);
}

.step-question {
  font-size: 0.85rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}

.step-hint {
  font-size: 0.58rem;
  font-style: italic;
  color: var(--text-subtle);
  margin-bottom: 0.7rem;
}

.step-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: auto;
}

.step-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.8rem;
  border-radius: 10px;
  background: rgba(9, 9, 11, 0.04);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.step-option i {
  font-style: normal;
  opacity: 0.5;
}

.step-option.is-picked {
  background: #7fc9b8;
  color: #ffffff;
}

.step-option.is-picked i {
  opacity: 0.85;
}

.lk-hint {
  font-size: 0.6rem;
  color: var(--text-subtle);
  margin-bottom: 0.5rem;
}

.lk-question {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.lk-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.lk-option {
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 2px 6px -3px rgba(9, 9, 11, 0.25);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}

.lk-option.is-picked {
  background: linear-gradient(100deg, #2f6bff 0%, #a855f7 100%);
  color: #ffffff;
  font-weight: 650;
  box-shadow: 0 8px 18px -10px rgba(87, 63, 216, 0.9);
}

.lk-nav {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--text-subtle);
}

.lk-nav .is-next {
  font-weight: 650;
  color: var(--text-main);
}

.phone-screen-quiz {
  padding: 0;
  background: #1a53f0;
  color: #ffffff;
}

.phone-screen-quiz .phone-status-bar {
  position: absolute;
  top: 0.9rem;
  left: 0.95rem;
  right: 0.95rem;
  z-index: 2;
  margin: 0;
  color: #18181b;
}

.qz-top {
  background: #ffffff;
  color: var(--text-main);
  padding: 2.4rem 1rem 1.2rem;
  border-radius: 0 0 16px 16px;
}

.qz-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-subtle);
  margin-bottom: 0.7rem;
}

.qz-head strong {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-main);
}

.qz-progress {
  height: 3px;
  border-radius: 3px;
  background: rgba(9, 9, 11, 0.08);
  margin-bottom: 0.9rem;
}

.qz-progress i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: 3px;
  background: #1a53f0;
}

.qz-question {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-muted);
}

.qz-question b {
  font-weight: 750;
  color: var(--text-main);
}

.qz-cat {
  font-size: 0.58rem;
  color: var(--text-subtle);
  margin-top: 0.65rem;
}

.qz-bottom {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem;
}

.qz-answer {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.7rem;
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
  font-weight: 500;
}

.qz-answer i {
  font-style: normal;
  font-weight: 700;
  opacity: 0.7;
}

.qz-answer.is-picked {
  background: #ffffff;
  color: #1a53f0;
  border-left-color: #ffffff;
  font-weight: 650;
}

.phone-screen-wave {
  padding: 0;
  background: #fffdfa;
}

.phone-screen-wave .phone-status-bar {
  position: absolute;
  top: 0.9rem;
  left: 0.95rem;
  right: 0.95rem;
  z-index: 2;
  margin: 0;
  color: #6b4b3a;
}

.wv-head {
  position: relative;
  background: #f6d9c8;
  color: #5b3a2a;
  padding: 2.6rem 1.05rem 1.4rem;
}

.wv-title {
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.wv-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 16px;
  color: #fffdfa;
}

.wv-options {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 1.05rem 0;
}

.wv-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.wv-option i {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1.5px solid rgba(9, 9, 11, 0.18);
}

.wv-option.is-picked {
  color: var(--text-main);
  font-weight: 600;
}

.wv-option.is-picked i {
  border-color: #e0a17c;
  background:
    radial-gradient(circle at center, #ffffff 0 35%, #e0a17c 36% 100%);
}

.wv-foot {
  margin-top: auto;
  padding: 1rem 1.05rem 0.25rem;
}

.wv-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(9, 9, 11, 0.07);
  margin-bottom: 0.7rem;
}

.wv-bar i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: 4px;
  background: #e0a17c;
}

.wv-btn {
  display: block;
  padding: 0.65rem;
  border-radius: 999px;
  background: #e0a17c;
  color: #43261a;
  font-size: 0.72rem;
  font-weight: 650;
  text-align: center;
}

.phone-screen-sticker {
  background: #fffdf8;
}

.st-head {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.35rem;
}

.st-question {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.st-scale {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.st-scale > span {
  padding: 0.45rem 0;
  border-radius: 10px;
  background: #f1efe9;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 750;
  text-align: center;
}

.st-scale .is-picked {
  background: #f7a13d;
  color: #2a1a05;
}

.st-sticker {
  position: absolute;
  right: -6px;
  bottom: -8px;
  padding: 0.4rem 0.6rem;
  border-radius: 12px 14px 10px 16px;
  background: #7c4dff;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  font-style: italic;
  transform: rotate(-8deg);
  box-shadow: 0 8px 16px -8px rgba(76, 29, 149, 0.8);
}

.st-foot {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.85rem 0 0.6rem;
}

.st-bar {
  flex: 1 1 auto;
  height: 5px;
  border-radius: 5px;
  background: rgba(9, 9, 11, 0.07);
}

.st-bar i {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: 5px;
  background: #f7a13d;
}

.st-count {
  font-size: 0.6rem;
  color: var(--text-subtle);
}

.st-btn {
  display: block;
  padding: 0.7rem;
  border-radius: 12px;
  background: #16161c;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 650;
  text-align: center;
}

.phone-screen-intro {
  background: #ffffff;
}

.in-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  color: var(--text-subtle);
  margin-bottom: 0.8rem;
}

.in-name {
  flex: 1 1 auto;
  color: var(--text-main);
  font-weight: 600;
}

.in-badge {
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: var(--tpl-soft);
  color: var(--tpl-text);
  font-weight: 600;
}

.in-preview {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.8rem;
  border-radius: 14px;
  background: linear-gradient(160deg, #f6f6f8 0%, #eceef2 100%);
  margin-bottom: 0.9rem;
}

.in-line {
  height: 6px;
  width: 55%;
  border-radius: 4px;
  background: rgba(9, 9, 11, 0.1);
}

.in-line.long {
  width: 80%;
}

.in-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 46px;
  margin-top: 0.35rem;
}

.in-chart i {
  flex: 1 1 0;
  height: var(--v);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--tpl-light), var(--tpl));
}

.in-copy {
  font-size: 0.76rem;
  line-height: 1.45;
  margin-bottom: 0.4rem;
}

.in-note {
  font-size: 0.62rem;
  color: var(--text-subtle);
}

.in-scale {
  display: flex;
  gap: 0.35rem;
  margin: 0.75rem 0 0.5rem;
}

.in-scale span {
  flex: 1 1 0;
  padding: 0.55rem 0.3rem;
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: 10px;
  background: #ffffff;
  color: var(--text-muted);
  font-size: 0.66rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 1px 2px rgba(9, 9, 11, 0.05);
}

.in-scale .is-picked {
  background: var(--tpl);
  border-color: var(--tpl);
  color: var(--tpl-on);
  font-weight: 650;
}

.in-btn {
  margin-top: auto;
  display: block;
  padding: 0.7rem;
  border-radius: 12px;
  background: #16161c;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 650;
  text-align: center;
}

.phone-screen-micro {
  background: linear-gradient(170deg, #d9e6f5 0%, #c3d6ee 55%, #b9cfe9 100%);
  align-items: center;
  justify-content: center;
}

.mc-card {
  width: 100%;
  padding: 1.2rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
  color: #14243a;
  box-shadow: 0 18px 30px -20px rgba(20, 36, 58, 0.6);
}

.mc-theme {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}

.mc-question {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0.7rem 0 0.9rem;
}

.mc-dots {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.mc-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(20, 36, 58, 0.25);
}

.mc-dots .is-on {
  background: #14243a;
}

.mc-actions {
  display: flex;
  gap: 0.45rem;
}

.mc-btn {
  flex: 1 1 0;
  padding: 0.55rem 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 600;
}

.mc-btn.is-primary {
  background: #14243a;
  color: #ffffff;
}

.phone-screen-country {
  padding: 0.7rem 0.75rem 0.8rem;
  background: #fbfbfb;
}

.country-orbit {
  position: relative;
  height: 145px;
  flex: 0 0 145px;
}

.country-planet {
  position: absolute;
  left: 50%;
  top: 26px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 68% 28%, #b9e6ff 0%, #7db8fb 38%, #6689ea 72%, #4b65bf 100%);
  box-shadow: 0 16px 28px -17px rgba(72, 91, 170, 0.7);
  transform: translateX(-50%);
}

.country-ring {
  position: absolute;
  left: 50%;
  top: 56px;
  width: 148px;
  height: 53px;
  border: 4px solid #eadbd2;
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(92, 76, 70, 0.18);
}

.country-ring-a {
  transform: translateX(-50%) rotate(-8deg);
}

.country-ring-b {
  width: 126px;
  height: 54px;
  transform: translateX(-50%) rotate(64deg);
}

.country-moon {
  position: absolute;
  top: 26px;
  right: 30px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd9ec, #eaa0c3 65%, #b36f9a);
  box-shadow: 0 7px 12px -7px rgba(107, 60, 91, 0.7);
}

.country-question {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.35;
  margin: 0.15rem 0.2rem 0.45rem;
}

.country-description {
  margin: 0 0.2rem 0.8rem 1.55rem;
  color: #8b8b90;
  font-size: 0.61rem;
  font-style: italic;
}

.country-options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.country-option.phone-radio-item {
  min-height: 42px;
  margin: 0;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  background: #ffffff;
  color: #17171a;
  box-shadow: 0 8px 18px -13px rgba(9, 9, 11, 0.38);
}

.country-option.phone-radio-item.checked {
  background: #eef5ff;
  color: #1d4ed8;
}

.country-option i {
  width: 20px;
  height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 700;
}

.phone-screen-sport {
  padding: 0;
  background: #ffffff;
  color: #17234e;
}

.sport-ball {
  position: relative;
  height: 146px;
  flex: 0 0 146px;
  overflow: hidden;
  background: #2856cc;
}

.sport-ball::before {
  content: '';
  position: absolute;
  width: 216px;
  height: 216px;
  left: 28px;
  top: -63px;
  border: 9px solid #ffffff;
  border-radius: 50%;
  background: radial-gradient(circle at 64% 32%, #ffc928 0%, #ffb000 49%, #f46b16 78%, #d94a10 100%);
  box-shadow: inset 0 0 0 8px #2856cc;
}

.sport-seam {
  position: absolute;
  z-index: 1;
  display: block;
  border: 5px solid #2856cc;
  border-radius: 50%;
}

.seam-a {
  width: 174px;
  height: 62px;
  left: 53px;
  top: 8px;
  transform: rotate(-11deg);
}

.seam-b {
  width: 54px;
  height: 212px;
  left: 111px;
  top: -38px;
  transform: rotate(18deg);
}

.seam-c {
  width: 55px;
  height: 215px;
  left: 151px;
  top: -42px;
  transform: rotate(-18deg);
}

.sport-body {
  padding: 0.75rem 0.7rem;
}

.sport-label {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  color: #f59a16;
  font-size: 0.68rem;
  font-weight: 700;
}

.sport-question {
  max-width: 18ch;
  margin: 0.45rem 0 0.55rem;
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.sport-meta {
  display: flex;
  justify-content: space-between;
  color: #8a93aa;
  font-size: 0.52rem;
  margin-bottom: 0.55rem;
}

.sport-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sport-option.phone-radio-item {
  display: grid;
  grid-template-columns: 13px minmax(0, 1fr) auto;
  gap: 0.4rem;
  min-height: 32px;
  padding: 0.4rem 0.5rem;
  border-radius: 999px;
  background: #f0f4ff;
  color: #8791aa;
  font-size: 0.55rem;
  font-weight: 500;
}

.sport-option.phone-radio-item.checked {
  background: linear-gradient(90deg, #e4ecff, #f4f7ff);
  color: #2d6bef;
  font-weight: 700;
}

.sport-option > i {
  width: 13px;
  height: 13px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #c2d8ff;
  box-shadow: 0 0 0 1px rgba(45, 107, 239, 0.08);
}

.sport-option.checked > i {
  background: #2d6bef;
}

.sport-option > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sport-option > b {
  font-size: 0.58rem;
}

.phone-screen-workshop {
  padding: 0.9rem 0.75rem 0.8rem;
  background: linear-gradient(155deg, #345ef5 0%, #2855ef 52%, #315df6 100%);
  color: #ffffff;
}

.workshop-header,
.workshop-progress-meta,
.workshop-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.workshop-header {
  font-size: 0.72rem;
  margin-bottom: 1.1rem;
}

.workshop-header i {
  width: 27px;
  height: 27px;
  border: 1px solid rgba(19, 50, 167, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-style: normal;
}

.workshop-progress-meta {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.55rem;
}

.workshop-progress-meta b {
  color: #ffffff;
  font-size: 0.58rem;
}

.workshop-progress {
  height: 4px;
  margin: 0.35rem 0 1.1rem;
  border-radius: 4px;
  background: rgba(16, 48, 167, 0.45);
  overflow: hidden;
}

.workshop-progress i {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
}

.workshop-question {
  max-width: 15ch;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.workshop-subtext {
  margin: 0.45rem 0 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.52rem;
}

.workshop-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.workshop-option.phone-radio-item {
  min-height: 49px;
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  background: rgba(18, 48, 164, 0.52);
  color: #ffffff;
}

.workshop-option.phone-radio-item.checked {
  background: linear-gradient(90deg, #53b8f6 0%, #54b8f6 67%, rgba(20, 65, 202, 0.45) 67%);
  color: #ffffff;
}

.workshop-option > i {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.55rem;
  font-style: normal;
}

.workshop-option.checked > i {
  background: #ffffff;
  color: #77b901;
}

.workshop-option > span {
  font-size: 0.54rem;
  line-height: 1.2;
}

.workshop-option small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.48rem;
  margin-bottom: 0.08rem;
}

.workshop-voters {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.workshop-voters span {
  width: 25px;
  height: 25px;
  margin-right: -5px;
  border: 2px solid #315cf1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f6c98c, #8f5c4e);
  font-size: 0.42rem;
}

.workshop-voters span:nth-child(2) {
  background: linear-gradient(145deg, #d7b7ff, #6348a2);
}

.workshop-voters span:nth-child(3) {
  background: linear-gradient(145deg, #a5d8ff, #3d6f99);
}

.workshop-voters span:last-child {
  width: auto;
  margin-left: 0.3rem;
  padding: 0 0.65rem;
  border: 0;
  border-radius: 999px;
  background: #57a9ef;
  font-size: 0.5rem;
}

.workshop-actions {
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.workshop-actions span {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(23, 63, 190, 0.6);
}

.workshop-actions b {
  flex: 1 1 auto;
  padding: 0.62rem;
  border-radius: 999px;
  background: #ffffff;
  color: #1f2533;
  font-size: 0.58rem;
  text-align: center;
}

.phone-screen-flavour {
  padding: 1.2rem 0.8rem 1rem;
  background: #ee5d57;
  color: #ffffff;
  text-align: center;
}

.flavour-title {
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.flavour-pinwheel {
  position: relative;
  width: 158px;
  height: 158px;
  margin: 2.15rem auto 1.8rem;
  filter: drop-shadow(0 18px 16px rgba(137, 40, 37, 0.24));
}

.flavour-pinwheel span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 54px;
  border-radius: 70% 12% 72% 10%;
  background: linear-gradient(145deg, #ff8f88 0%, #e4423e 52%, #ae292b 100%);
  transform-origin: 0 0;
  transform: rotate(var(--turn)) translate(4px, -50%);
  box-shadow: inset -8px -6px 10px rgba(123, 24, 28, 0.22);
}

.flavour-pinwheel::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c93434;
  transform: translate(-50%, -50%);
}

.flavour-question {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 700;
}

.flavour-options {
  display: flex;
  margin-top: 1rem;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
}

.flavour-option.rsvp-option-btn {
  flex: 1 1 0;
  padding: 0.7rem 0.25rem;
  border-radius: 0;
  background: #ffffff;
  color: #d9413d;
  font-size: 0.56rem;
  font-weight: 700;
}

.flavour-option + .flavour-option {
  border-left: 1px solid #ee5d57;
}

.flavour-option.rsvp-option-btn.selected {
  background: #fff5f4;
  color: #b92727;
}

.phone-screen-civic {
  padding: 1rem 0.9rem;
  background: #fcfcfb;
  color: #0a0a0a;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(9, 9, 11, 0.03);
}

.civic-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
}

.civic-top > span {
  font-size: 1rem;
  line-height: 1;
}

.civic-top > b {
  font-weight: 500;
}

.civic-progress {
  height: 2px;
  margin-top: 0.65rem;
  background: #e6e7e5;
}

.civic-progress i {
  display: block;
  width: 5%;
  height: 100%;
  background: #1d7a66;
}

.civic-question {
  max-width: 11ch;
  margin-top: 3.9rem;
  font-size: 1.18rem;
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.civic-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  color: #767676;
  font-size: 0.49rem;
}

.civic-slider {
  position: relative;
  height: 2px;
  margin-top: 4.5rem;
  background: #f4bbb2;
}

.civic-slider-fill {
  display: block;
  width: 34%;
  height: 100%;
  background: #ef5d50;
}

.civic-slider > i {
  position: absolute;
  left: 34%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef5d50;
  box-shadow: 0 0 0 14px rgba(239, 93, 80, 0.13);
  transform: translate(-50%, -50%);
}

.civic-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  font-size: 0.56rem;
}

.civic-actions {
  display: flex;
  align-items: stretch;
  margin-top: auto;
  font-size: 0.55rem;
  font-weight: 650;
}

.civic-actions > span,
.civic-actions > b {
  padding: 0.72rem 0.65rem;
  border: 1px solid #bfc1bf;
}

.civic-actions > b {
  min-width: 87px;
  border-color: #1d7a66;
  background: #1d7a66;
  color: #ffffff;
}

.civic-actions i {
  margin-left: 0.65rem;
  font-size: 0.8rem;
  font-style: normal;
}

.phone-screen-football {
  position: relative;
  padding: 0.8rem 0.7rem 0.7rem;
  overflow: hidden;
  background: #003d2c;
  color: #fffdf4;
}

.football-pitch {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(184, 225, 28, 0.2);
  pointer-events: none;
}

.football-pitch::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border-left: 1px solid rgba(184, 225, 28, 0.12);
}

.football-kicker,
.football-question,
.football-matchup,
.football-kickoff,
.football-options,
.football-predictions,
.football-submit {
  position: relative;
  z-index: 1;
}

.football-kicker {
  color: #b8e11c;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.football-question {
  margin: 0.65rem auto 0;
  max-width: 9ch;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-align: center;
}

.football-matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.football-team {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  min-width: 0;
}

.football-team b {
  font-size: 0.5rem;
  line-height: 1.1;
  text-align: center;
}

.football-crest {
  width: 48px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 10px 10px 20px 20px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: inset 0 -18px 0 rgba(255, 255, 255, 0.07);
}

.crest-home {
  color: #fffdf4;
}

.crest-away {
  color: #8cc9ff;
}

.football-versus {
  color: #b8e11c;
  font-size: 0.68rem;
  font-weight: 900;
  transform: skew(-8deg);
}

.football-kickoff {
  margin: 0.65rem 0 0.55rem;
  color: rgba(255, 253, 244, 0.78);
  font-size: 0.5rem;
  font-weight: 650;
  text-align: center;
}

.football-kickoff i {
  margin: 0 0.3rem;
  color: #b8e11c;
  font-style: normal;
}

.football-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.football-option.phone-radio-item {
  min-height: 34px;
  margin: 0;
  padding: 0.42rem 0.55rem;
  border: 1px solid rgba(184, 225, 28, 0.58);
  border-radius: 8px;
  background: rgba(0, 28, 20, 0.38);
  color: #fffdf4;
  font-size: 0.61rem;
  font-weight: 750;
}

.football-option.phone-radio-item.checked {
  border-color: #b8e11c;
  background: #b8e11c;
  color: #082d21;
}

.football-option > i {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0.53rem;
  font-style: normal;
}

.football-predictions {
  margin-top: 0.5rem;
  color: rgba(255, 253, 244, 0.68);
  font-size: 0.48rem;
  text-align: center;
}

.football-submit {
  margin-top: auto;
  padding: 0.58rem 0.45rem;
  border-radius: 8px;
  background: #8cc9ff;
  color: #06304b;
  font-size: 0.6rem;
  font-weight: 850;
  text-align: center;
}

.phone-screen-election {
  padding: 0.85rem 0.7rem 0.7rem;
  background: #fffcf3;
  color: #11110f;
}

.election-kicker {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.election-kicker span {
  font-size: 0.85rem;
}

.election-rule {
  height: 1px;
  margin-top: 0.55rem;
  background: #11110f;
}

.election-question {
  max-width: 10ch;
  margin-top: 1rem;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.election-closes {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.8rem 0 0.65rem;
  padding: 0.48rem 0.55rem;
  border-radius: 8px;
  background: #f5f1e8;
  font-size: 0.5rem;
}

.election-closes span {
  font-size: 0.78rem;
}

.election-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.election-option.phone-radio-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 0.45rem;
  min-height: 48px;
  margin: 0;
  padding: 0.45rem 0.55rem;
  border: 1px solid #d9d3c7;
  border-radius: 8px;
  background: transparent;
  color: #11110f;
  font-size: 0.56rem;
  font-weight: 700;
}

.election-option.phone-radio-item.checked {
  border-color: #087b7c;
  background: #f5fbf8;
  color: #087b7c;
  box-shadow: inset 3px 0 0 #087b7c;
}

.election-option > i {
  width: 20px;
  height: 20px;
  display: block;
  background: currentColor;
  font-style: normal;
}

.party-forward > i {
  clip-path: polygon(0 0, 55% 0, 100% 50%, 55% 100%, 0 100%, 45% 50%);
}

.party-civic {
  color: #d99313 !important;
}

.party-civic > i {
  transform: rotate(45deg) scale(0.72);
}

.party-voice {
  color: #70405f !important;
}

.party-voice > i {
  border-radius: 50% 50% 50% 0;
}

.election-option > span {
  min-width: 0;
}

.election-option > b {
  font-size: 0.72rem;
}

.election-submit {
  margin-top: auto;
  padding: 0.62rem 0.5rem;
  border-radius: 8px;
  background: #087b7c;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  text-align: center;
}

.phone-screen-aware {
  background: #f4f4f6;
  padding: 0.9rem 0.75rem 0.75rem;
}

.aw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.aw-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--text-muted);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-title {
  font-size: 0.8rem;
  font-weight: 650;
}

.aw-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.8rem;
  margin-bottom: 0.7rem;
}

.aw-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.aw-progress i {
  flex: 1 1 auto;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #b9a7f5 25%, rgba(9, 9, 11, 0.07) 25%);
}

.aw-progress span {
  font-size: 0.6rem;
  color: var(--text-subtle);
}

.aw-question {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.aw-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.aw-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.7rem;
  border-radius: 999px;
  background: #ececed;
  color: var(--text-subtle);
  font-size: 0.72rem;
  font-weight: 500;
}

.aw-option i {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1.5px solid rgba(9, 9, 11, 0.18);
  font-style: normal;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-option.is-picked {
  background: #16161c;
  color: #ffffff;
  font-weight: 600;
}

.aw-option.is-picked i {
  border-color: #ffffff;
  color: #ffffff;
}

.aw-nav {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  padding: 0.4rem 0.5rem;
  border-radius: 999px;
  background: #ffffff;
}

.aw-nav span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f1f1f3;
}

.aw-nav .is-create {
  width: auto;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #b8f16a;
  color: #1d2a08;
  font-size: 0.62rem;
  font-weight: 700;
}

.phone-screen-research {
  padding: 0;
  background: #0f0f12;
  color: #ffffff;
}

.phone-screen-research .phone-status-bar {
  position: absolute;
  top: 0.9rem;
  left: 0.95rem;
  right: 0.95rem;
  z-index: 2;
  margin: 0;
  color: #ffffff;
}

.rs-hero {
  padding: 2.5rem 1rem 1rem;
}

.rs-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.rs-grid {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-use {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #8ef07a;
  color: #12240b;
  font-size: 0.68rem;
  font-weight: 700;
}

.rs-name {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.rs-count {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.3rem;
}

.rs-pager {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.7rem;
}

.rs-pager span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-pager .is-on {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-weight: 700;
}

.rs-orbit {
  position: relative;
  flex: 1 1 auto;
  margin: 0.4rem 0.55rem 0.55rem;
  border-radius: 18px;
  background: linear-gradient(165deg, #b3a6ee 0%, #8f7fd8 100%);
  overflow: hidden;
}

.rs-ask {
  position: relative;
  z-index: 2;
  padding: 0.9rem 0.9rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  color: #1b1533;
}

.rs-ring {
  position: absolute;
  left: 50%;
  top: 62%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.rs-ring-a {
  width: 118px;
  height: 118px;
}

.rs-ring-b {
  width: 76px;
  height: 76px;
}

.rs-face {
  position: absolute;
  font-size: 0.85rem;
  z-index: 2;
}

.rs-face-a {
  right: 12%;
  top: 40%;
}

.rs-face-b {
  left: 14%;
  bottom: 16%;
}

.rs-blob {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 102, 0.95), rgba(255, 214, 102, 0));
  filter: blur(2px);
}

.rs-blob-a {
  left: 44%;
  top: 52%;
}

.rs-blob-b {
  left: 58%;
  top: 68%;
}

.phone-screen-plans {
  background: #fbf9ff;
}

.pl-head {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.pl-toggle {
  display: flex;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.05);
  margin-bottom: 0.55rem;
}

.pl-toggle span {
  flex: 1 1 0;
  padding: 0.35rem 0;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-subtle);
  text-align: center;
}

.pl-toggle .is-on {
  background: #ffffff;
  color: var(--text-main);
  box-shadow: 0 1px 3px rgba(9, 9, 11, 0.12);
}

.pl-tabs {
  display: flex;
  gap: 0.6rem;
  font-size: 0.6rem;
  color: var(--text-subtle);
  margin-bottom: 0.7rem;
}

.pl-tabs .is-on {
  color: var(--text-main);
  font-weight: 650;
}

.pl-card {
  border-radius: 14px;
  padding: 0.7rem 0.75rem;
  margin-bottom: 0.5rem;
}

.pl-pink {
  background: linear-gradient(150deg, #fde3ef 0%, #f9d0e4 100%);
}

.pl-green {
  background: linear-gradient(150deg, #e2f4d6 0%, #cdedbb 100%);
}

.pl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: #2a2233;
}

.pl-chip {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pl-price {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #2a2233;
  margin: 0.2rem 0 0.15rem;
}

.pl-price span {
  font-size: 0.6rem;
  font-weight: 500;
  opacity: 0.6;
  margin-left: 0.15rem;
}

.pl-note {
  font-size: 0.6rem;
  line-height: 1.35;
  color: rgba(42, 34, 51, 0.7);
}

.phone-screen-groups {
  background: #fffafc;
}

.gr-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.gr-close {
  color: var(--text-subtle);
}

.gr-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gr-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
}

.gr-av {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.gr-av.av1 { background: linear-gradient(150deg, #f3c6d8, #dd9fbb); }
.gr-av.av2 { background: linear-gradient(150deg, #cfe0f5, #9db9dd); }
.gr-av.av3 { background: linear-gradient(150deg, #e6dcc9, #c6b79b); }
.gr-av.av4 { background: linear-gradient(150deg, #d8e7d2, #aecaa4); }

.gr-row b {
  font-weight: 650;
}

.gr-row em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.6rem;
  color: var(--text-subtle);
}

.gr-row s {
  text-decoration: none;
  color: var(--text-subtle);
}

.gr-btn {
  margin-top: auto;
  padding: 0.65rem;
  border-radius: 999px;
  background: #b9436f;
  color: #fff5f8;
  font-size: 0.72rem;
  font-weight: 650;
  text-align: center;
}

.phone-screen-stack {
  background: linear-gradient(160deg, #eef1fb 0%, #f7eef7 100%);
  justify-content: center;
}

.ck-stack {
  position: relative;
  padding: 0.4rem 0.15rem;
}

.ck-back {
  position: absolute;
  left: 50%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
}

.ck-back-1 {
  width: 94%;
  height: 100%;
  top: -6px;
  transform: translateX(-50%);
}

.ck-back-2 {
  width: 86%;
  height: 100%;
  top: -12px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.35);
}

.ck-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 0.9rem 0.85rem;
  box-shadow: 0 16px 30px -22px rgba(9, 9, 11, 0.55);
}

.ck-dashes {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.7rem;
}

.ck-dashes i {
  flex: 1 1 0;
  height: 3px;
  border-radius: 3px;
  background: rgba(9, 9, 11, 0.1);
}

.ck-dashes .on {
  background: linear-gradient(90deg, #f7a35c, #f26d6d);
}

.ck-no {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-subtle);
  margin-bottom: 0.35rem;
}

.ck-question {
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.ck-hint {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.5rem;
}

.ck-options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.ck-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.ck-option i {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1.5px solid rgba(9, 9, 11, 0.2);
  font-style: normal;
  font-size: 0.55rem;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ck-option.is-picked {
  color: var(--text-main);
  font-weight: 600;
}

.ck-option.is-picked i {
  background: #3a3ad6;
  border-color: #3a3ad6;
  color: #ffffff;
}

.ck-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  font-size: 0.7rem;
  color: var(--text-subtle);
}

.ck-next {
  padding: 0.45rem 1.1rem;
  border-radius: 10px;
  background: #16161c;
  color: #ffffff;
  font-weight: 650;
  box-shadow: 3px 3px 0 rgba(9, 9, 11, 0.18);
}

.phone-screen-lettered,
.phone-screen-done {
  padding: 0;
  background: #2563eb;
  color: #ffffff;
}

.phone-screen-lettered .phone-status-bar,
.phone-screen-done .phone-status-bar {
  position: absolute;
  top: 0.9rem;
  left: 0.95rem;
  right: 0.95rem;
  z-index: 2;
  margin: 0;
  color: #ffffff;
}

.bl-top,
.dn-top {
  background: #ffffff;
  color: var(--text-main);
  padding: 2.5rem 0.95rem 1rem;
  border-radius: 0 0 18px 18px;
}

.bl-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 650;
  color: #2563eb;
  margin-bottom: 0.7rem;
}

.bl-name span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(9, 9, 11, 0.06);
  color: var(--text-subtle);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bl-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-subtle);
  margin-bottom: 0.5rem;
}

.bl-pager strong {
  font-size: 0.95rem;
  color: var(--text-main);
}

.bl-dashes {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
}

.bl-dashes i {
  flex: 1 1 0;
  height: 3px;
  border-radius: 3px;
  background: rgba(37, 99, 235, 0.18);
}

.bl-dashes .on {
  background: #2563eb;
}

.bl-question {
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.bl-sub {
  font-size: 0.63rem;
  line-height: 1.45;
  color: var(--text-subtle);
}

.bl-answers {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.95rem;
}

.bl-answer {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  color: #2563eb;
  font-size: 0.7rem;
  font-weight: 600;
}

.bl-answer i {
  font-style: normal;
  font-weight: 800;
  opacity: 0.55;
}

.dn-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.dn-head strong {
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.dn-head span {
  font-size: 0.68rem;
  color: var(--text-subtle);
}

.dn-list {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.9rem 0.95rem;
}

.dn-row {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
}

.dn-row b {
  font-weight: 650;
}

.dn-row em {
  font-style: normal;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.7);
}

.dn-btn {
  margin: 0 0.95rem 1rem;
  padding: 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.phone-screen-assess {
  background: linear-gradient(170deg, #f7ece4 0%, #efe2d8 100%);
  color: #2c2320;
}

.as-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(150deg, #cfd9e6, #9fb0c6);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 0.9rem;
}

.as-avatar.small {
  width: 26px;
  height: 26px;
  margin: 0;
}

.as-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: #e0453c;
  margin-bottom: 1.1rem;
}

.as-tips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.as-tips li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  line-height: 1.35;
}

.as-tips span {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffffff;
  font-family: Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.as-meta {
  margin-top: auto;
  font-size: 0.62rem;
  line-height: 1.5;
  text-align: center;
  opacity: 0.7;
  margin-bottom: 0.55rem;
}

.as-btn {
  display: block;
  padding: 0.7rem;
  border-radius: 6px;
  background: #1878f0;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 650;
  text-align: center;
}

.as-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(224, 69, 60, 0.2);
  margin-bottom: 0.8rem;
}

.as-bar i {
  display: block;
  width: 26%;
  height: 100%;
  border-radius: 4px;
  background: #e0453c;
}

.as-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.as-step {
  font-family: Georgia, serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #e0453c;
}

.as-lead {
  font-size: 0.62rem;
  line-height: 1.4;
  opacity: 0.7;
  margin-bottom: 0.9rem;
}

.as-statement {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.as-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.as-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  background: #ffffff;
  font-size: 0.7rem;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(44, 35, 32, 0.08);
}

.as-option::before {
  content: '';
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1.5px solid rgba(44, 35, 32, 0.25);
}

.as-option.is-picked::before {
  border-color: #ffffff;
  background: radial-gradient(circle, #ffffff 0 40%, transparent 41%);
}

.as-options-lg .as-option {
  padding: 0.7rem;
  line-height: 1.3;
}

.as-option.is-picked {
  background: #1878f0;
  color: #ffffff;
  font-weight: 600;
}

.phone-screen-dialog {
  background:
    repeating-linear-gradient(0deg, #f2f2f4 0 30px, #eeeef1 30px 31px),
    #f2f2f4;
  justify-content: center;
}

.dg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dg-card {
  width: 100%;
  padding: 0.9rem;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 20px 34px -20px rgba(9, 9, 11, 0.4);
}

.dg-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.dg-head strong {
  font-size: 0.85rem;
  font-weight: 700;
}

.dg-icons {
  display: flex;
  gap: 0.3rem;
}

.dg-icons i {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: rgba(9, 9, 11, 0.05);
  color: var(--text-subtle);
  font-style: normal;
  font-size: 0.62rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dg-question {
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.dg-fields {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.dg-field {
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  background: rgba(9, 9, 11, 0.04);
  color: var(--text-subtle);
  font-size: 0.68rem;
}

.dg-actions {
  display: flex;
  gap: 0.4rem;
}

.dg-btn {
  padding: 0.45rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(9, 9, 11, 0.12);
  font-size: 0.7rem;
  font-weight: 600;
}

.dg-btn.is-primary {
  background: #16161c;
  border-color: #16161c;
  color: #ffffff;
}

.phone-screen-community {
  background: #f7f8fa;
}

.cm-tag {
  align-self: flex-start;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: #dbe7fb;
  color: #2b5fb3;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cm-question {
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.cm-by {
  font-size: 0.58rem;
  color: var(--text-subtle);
  margin-bottom: 0.8rem;
}

.cm-by b {
  color: var(--text-muted);
}

.cm-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cm-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #ffffff;
  box-shadow: 0 2px 6px -4px rgba(9, 9, 11, 0.3);
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text-muted);
}

.cm-option i {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1.5px solid rgba(9, 9, 11, 0.18);
  font-style: normal;
  font-size: 0.55rem;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cm-option.is-picked {
  border-color: #2fc770;
  color: var(--text-main);
}

.cm-option.is-picked i {
  background: #2fc770;
  border-color: #2fc770;
  color: #ffffff;
}

.cm-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cm-btn {
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  background: #4fd18b;
  color: #06301b;
  font-size: 0.7rem;
  font-weight: 700;
}

.cm-jump {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-subtle);
}

.phone-screen-slider {
  background: #f7f7f8;
}

.sl-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sl-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1.4rem;
}

.sl-bubble {
  position: relative;
  align-self: flex-start;
  margin-left: 46%;
  transform: translateX(-50%);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  background: #101014;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
}

.sl-bubble::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(45deg);
  background: #101014;
}

.sl-track {
  position: relative;
  height: 4px;
  border-radius: 4px;
  background: rgba(9, 9, 11, 0.12);
  margin: 0.7rem 0 0.5rem;
}

.sl-fill {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: 4px;
  background: #1d4ed8;
}

.sl-knob {
  position: absolute;
  left: 46%;
  top: 50%;
  width: 13px;
  height: 13px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #1d4ed8;
}

.sl-ticks {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.sl-ticks i {
  width: 1px;
  height: 6px;
  background: rgba(9, 9, 11, 0.18);
}

.sl-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  color: var(--text-subtle);
}

.phone-screen-deadline {
  background: #fdfbfa;
}

.dl-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.dl-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.dl-field {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 0.5rem;
  border: 2px solid #1d4ed8;
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 600;
}

.dl-field em {
  font-style: normal;
  opacity: 0.35;
}

.dl-field .is-dim {
  color: var(--border-medium);
}

.dl-labels {
  display: flex;
  justify-content: space-around;
  font-size: 0.6rem;
  color: var(--text-subtle);
  margin: 0.4rem 0 1rem;
}

.dl-note {
  font-size: 0.6rem;
  line-height: 1.45;
  color: var(--text-subtle);
  margin-bottom: 0.9rem;
}

.dl-btn {
  padding: 0.65rem;
  border-radius: 10px;
  background: #1d4ed8;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 650;
}

.phone-screen-decision {
  background: #191a1c;
  color: #ffffff;
}

.dk-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dk-title {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 0.9rem;
}

.dk-panel {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.dk-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.6rem;
  border-radius: 9px;
  background: #ffffff;
  color: #16161c;
  font-size: 0.7rem;
  font-weight: 600;
}

.dk-option i {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(9, 9, 11, 0.07);
  font-style: normal;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dk-option b {
  margin-left: auto;
  font-weight: 700;
}

.dk-option.is-picked {
  background: #2fc23c;
  color: #08260c;
}

.dk-option.is-picked i {
  background: rgba(255, 255, 255, 0.45);
}

.dk-meta {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 0.8rem;
}

.phone-mockup {
  --tpl: #77b901;
  --tpl-light: #8bcf14;
  --tpl-text: #4a7300;
  --tpl-on: #132000;
  --tpl-soft: rgba(119, 185, 1, 0.14);
  --tpl-softer: rgba(119, 185, 1, 0.08);
  --tpl-mid: rgba(119, 185, 1, 0.2);
}

.phone-mockup[data-cat='meetings'] {
  --tpl: #4f46e5;
  --tpl-light: #6366f1;
  --tpl-text: #4338ca;
  --tpl-on: #ffffff;
  --tpl-soft: rgba(79, 70, 229, 0.13);
  --tpl-softer: rgba(79, 70, 229, 0.07);
  --tpl-mid: rgba(79, 70, 229, 0.2);
}

.phone-mockup[data-cat='rsvp'] {
  --tpl: #b9436f;
  --tpl-light: #d4638c;
  --tpl-text: #9c355c;
  --tpl-on: #ffffff;
  --tpl-soft: rgba(185, 67, 111, 0.13);
  --tpl-softer: rgba(185, 67, 111, 0.07);
  --tpl-mid: rgba(185, 67, 111, 0.2);
}

.phone-mockup[data-cat='nps'] {
  --tpl: #f0900b;
  --tpl-light: #fbbf24;
  --tpl-text: #9a5b06;
  --tpl-on: #2a1a05;
  --tpl-soft: rgba(240, 144, 11, 0.16);
  --tpl-softer: rgba(240, 144, 11, 0.09);
  --tpl-mid: rgba(240, 144, 11, 0.24);
}

.phone-mockup[data-cat='fun'] {
  --tpl: #7c4dff;
  --tpl-light: #9575ff;
  --tpl-text: #5b2fd6;
  --tpl-on: #ffffff;
  --tpl-soft: rgba(124, 77, 255, 0.13);
  --tpl-softer: rgba(124, 77, 255, 0.07);
  --tpl-mid: rgba(124, 77, 255, 0.2);
}

.dn-ask {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-muted);
  margin-top: 0.45rem;
}

.fun-ask {
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 1rem;
  font-size: 0.78rem;
  font-weight: 650;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.in-close {
  color: var(--text-subtle);
  font-size: 0.85rem;
}

.wed-night .wed-eyebrow,
.wed-night .wed-note {
  opacity: 0.55;
}

.wed-night .wed-sprig {
  opacity: 0.35;
}

.dark-bar-item + .dark-bar-item {
  margin-top: 0.65rem;
}

/* Pricing Anchor */
.price-anchor-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--accent-text);
  background: rgba(119, 185, 1, 0.14);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 5.5rem 0 6rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-card);
}

.faq-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(119, 185, 1, 0.14);
  color: var(--accent-text);
  font-size: 0.78rem;
  font-weight: 600;
}

.faq-heading {
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.faq-sub {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-item[open] {
  border-color: rgba(119, 185, 1, 0.4);
  box-shadow: 0 4px 18px -4px rgba(119, 185, 1, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-subtle);
  transition:
    transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
    color 200ms ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-text);
}

.faq-answer {
  padding: 0 1.5rem 1.35rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.faq-item.is-animating .faq-answer {
  overflow: hidden;
}

.faq-answer > * {
  transition:
    opacity 300ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:not([open]) .faq-answer > *,
.faq-item.is-closing .faq-answer > * {
  opacity: 0;
  transform: translateY(-6px);
}

.faq-item[open]:not(.is-closing) .faq-answer > * {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .faq-chevron,
  .faq-answer,
  .faq-answer > * {
    transition: none;
  }
}

.faq-answer p + p {
  margin-top: 0.65rem;
}

@media (max-width: 560px) {
  .top-nav {
    top: 0.6rem;
    padding: 0.6rem 0.85rem 0;
  }

  .nav-inner {
    width: 100%;
    justify-content: space-between;
    padding: 0.35rem 0.35rem 0.35rem 0.85rem;
    gap: 0.4rem;
  }

  .nav-brand img {
    height: 22px;
  }

  .nav-login {
    font-size: 0.8rem;
    padding: 0.4rem 0.5rem;
  }

  .nav-pill-btn {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
  }
}

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