:root {
  --bg: #060606;
  --surface: rgba(16, 16, 16, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --surface-light: #f5f7fb;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(98, 222, 255, 0.3);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-faint: rgba(255, 255, 255, 0.46);
  --primary: #29d5ff;
  --primary-soft: rgba(41, 213, 255, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(41, 213, 255, 0.14), transparent 26%),
      radial-gradient(circle at top right, rgba(56, 189, 248, 0.1), transparent 22%),
      linear-gradient(180deg, #050505 0%, #080808 100%);
}

section[id] {
  scroll-margin-top: 128px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
  opacity: 0.32;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.topbar,
.hero,
.logo-strip,
.section-grid,
.timeline,
.updates-signup,
.download,
.site-footer {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 40px), var(--container));
  padding: 12px 18px;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.24);
  transition: padding 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
  overflow: visible;
}

.topbar.is-scrolled {
  padding: 10px 16px;
  border-color: rgba(41, 213, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(30, 112, 255, 0.14));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--text-faint);
  font-size: 0.78rem;
}

.lang-select {
  appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 28px 6px 10px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 180ms ease, color 180ms ease;
}

.lang-select:hover,
.lang-select:focus-visible {
  border-color: var(--border-strong);
  color: var(--text);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 999px;
  box-shadow: none;
  flex-shrink: 1;
  min-width: 0;
}

.site-nav a {
  position: relative;
  padding: 10px 11px;
  color: var(--text-soft);
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.91rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.site-nav .nav-link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #03141a;
  background: linear-gradient(135deg, #7ce7ff, var(--primary));
  font-weight: 700;
  box-shadow:
    0 18px 36px rgba(41, 213, 255, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  border-color: transparent;
  padding: 11px 20px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: linear-gradient(135deg, #9cebff, #40dbff);
  box-shadow:
    0 22px 44px rgba(41, 213, 255, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  filter: saturate(1.06);
}

.nav-cta-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface);
  color: var(--text);
  align-items: center;
  justify-content: center;
  gap: 4.5px;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 120ms ease;
  position: relative;
  overflow: hidden;
}

.nav-toggle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(41, 213, 255, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 200ms ease;
}

.nav-toggle:hover::after,
.nav-toggle.is-active::after {
  opacity: 1;
}

.nav-toggle:active {
  transform: scale(0.93);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 180ms ease,
              width 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle span:nth-child(2) {
  width: 14px;
  align-self: flex-end;
  margin-right: 2px;
}

.nav-toggle.is-active span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  gap: 40px;
  align-items: center;
  padding: 48px 0 74px;
}

.eyebrow,
.section-kicker,
.panel-head,
.feature-badge,
.timeline-card span,
.surface-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #a4eeff;
  background: var(--primary-soft);
  border: 1px solid rgba(41, 213, 255, 0.18);
}

.eyebrow-dot,
.panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8bedff, #29d5ff);
  box-shadow: 0 0 20px rgba(41, 213, 255, 0.7);
}

.hero h1,
.section-heading h2,
.updates-copy h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(2.9rem, 4.8vw, 4.1rem);
  line-height: 0.98;
  max-width: 10.5ch;
}

.hero-text,
.section-heading p,
.updates-copy p,
.site-footer p,
.form-note {
  color: var(--text-soft);
  line-height: 1.65;
}

.hero-text {
  max-width: 52ch;
  margin: 20px 0 28px;
  font-size: 1.05rem;
}

code {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #a5efff;
  font-family: inherit;
  font-size: 0.92em;
}

.hero-actions,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.store-button {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button:hover,
.button:focus-visible,
.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #04161c;
  background: linear-gradient(135deg, #7ee8ff, #29d5ff 70%);
  box-shadow:
    0 28px 56px rgba(41, 213, 255, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  cursor: pointer;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  animation: cta-glow 3.2s ease infinite;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow:
    0 32px 60px rgba(41, 213, 255, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.26) inset;
  filter: saturate(1.08);
  animation-play-state: paused;
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-block {
  width: 100%;
}

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

.stat-card,
.feature-card,
.timeline-card,
.updates-form,
.floating-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 20px;
  border-radius: 24px;
  overflow: hidden;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(0.95rem, 1.45vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
  line-height: 1.15;
}

.stat-card span {
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
}

.orb-left {
  top: 10%;
  left: -7%;
  width: 180px;
  height: 180px;
  background: rgba(41, 213, 255, 0.18);
}

.orb-right {
  right: 2%;
  bottom: 4%;
  width: 220px;
  height: 220px;
  background: rgba(96, 165, 250, 0.16);
}

.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 22px 0 26px;
}

.phone-frame {
  position: relative;
  width: min(100%, 420px);
  padding: 16px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.45);
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 14px;
  color: var(--text-faint);
  font-size: 0.82rem;
}

.phone-title {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.phone-signal,
.phone-pill {
  display: inline-block;
  border-radius: 999px;
}

.phone-signal {
  width: 44px;
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.phone-pill {
  width: 64px;
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.phone-surface {
  padding: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(41, 213, 255, 0.08), transparent 30%),
    #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.surface-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.surface-header h2 {
  margin: 6px 0 0;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.surface-filter {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-size: 0.85rem;
}

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

.mock-card {
  padding: 14px;
  border-radius: 20px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-card h3 {
  margin: 14px 0 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.mock-card p {
  margin: 0 0 10px;
  color: var(--text-soft);
}

.mock-card span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #9cedff;
  background: rgba(41, 213, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 700;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.mock-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--surface-light);
  min-height: 92px;
  padding: 18px;
}

.mock-logo-panel.dark {
  background: #252733;
}

.mock-logo-panel img {
  width: min(78%, 150px);
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.bottom-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-tabs span {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.8rem;
}

.bottom-tabs .active {
  color: var(--text);
}

.floating-panel {
  position: absolute;
  right: -8%;
  bottom: 10%;
  width: min(240px, 44vw);
  padding: 20px;
  border-radius: 24px;
  backdrop-filter: blur(14px);
}

.floating-panel ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--text-soft);
}

.floating-panel strong {
  display: block;
  color: var(--text);
  margin-bottom: 3px;
}

.logo-strip,
.timeline,
.download {
  padding: 32px 0 90px;
}

.section-grid,
.updates-signup {
  padding: 10px 0 90px;
}

.live-feed,
.pitch-section,
.media-showcase,
.pricing-contact {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding: 10px 0 90px;
}

/* ─── Pitch Deck Showcase ─── */
.pitch-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  margin-top: 14px;
}

.pitch-deck-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
  /* bottom padding makes room for the rotated ghost cards */
  padding-bottom: 14px;
}

.pitch-ghost {
  position: absolute;
  inset: 0;
  bottom: 14px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.pitch-ghost-back {
  transform: rotate(-2.4deg) translateY(10px);
  z-index: 0;
  opacity: 0.55;
}
.pitch-ghost-mid {
  transform: rotate(1.3deg) translateY(5px);
  z-index: 1;
  opacity: 0.75;
}

.pitch-cover {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(145deg, #07101c 0%, #0c1c2e 55%, #07101c 100%);
  border: 1px solid rgba(41, 213, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 28px 80px rgba(0, 0, 0, 0.55),
    0 0 100px rgba(41, 213, 255, 0.05);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.pitch-cover:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow:
    inset 0 0 0 1px rgba(41, 213, 255, 0.16),
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 140px rgba(41, 213, 255, 0.11);
}

/* Dot-grid + colour orbs */
.pitch-cover-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.pitch-cover-bg::before,
.pitch-cover-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.pitch-cover-bg::before {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(41, 213, 255, 0.11) 0%, transparent 65%);
  top: -110px;
  right: -70px;
}
.pitch-cover-bg::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(100, 60, 255, 0.09) 0%, transparent 65%);
  bottom: -90px;
  left: 6%;
}

.pitch-cover-logo {
  width: clamp(46px, 6vw, 62px);
  height: clamp(46px, 6vw, 62px);
  border-radius: clamp(14px, 2vw, 22px);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 22px rgba(41, 213, 255, 0.24));
  transition: transform 0.3s ease;
}
.pitch-cover:hover .pitch-cover-logo {
  transform: scale(1.08);
}

.pitch-cover-copy {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.pitch-cover-copy strong {
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.pitch-cover-copy span {
  font-size: clamp(0.66rem, 1.2vw, 0.8rem);
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Slide-count dots at bottom */
.pitch-page-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.pitch-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.pitch-dot.active {
  background: var(--primary);
  box-shadow: 0 0 8px rgba(41, 213, 255, 0.6);
}

/* Hover overlay */
.pitch-hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 10, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.24s ease;
}
.pitch-cover:hover .pitch-hover-overlay {
  opacity: 1;
}

.pitch-open-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 50px;
  background: var(--primary);
  color: #000;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transform: translateY(10px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pitch-cover:hover .pitch-open-btn {
  transform: translateY(0);
}

.pitch-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
}

.section-heading h2,
.updates-copy h2 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 0.98;
  margin-top: 10px;
}

.section-heading p,
.updates-copy p {
  margin: 16px 0 0;
  font-size: 1rem;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
}

.logo-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 110px;
  padding: 16px;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
}

.company-feed-home {
  margin-top: 22px;
}

.feature-grid,
.timeline-grid {
  display: grid;
  gap: 18px;
}

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

.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.timeline-card {
  padding: 24px;
  border-radius: 26px;
}

.feature-card h3,
.timeline-card h3 {
  margin: 18px 0 12px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.timeline-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.feature-badge,
.timeline-card span {
  color: #8beeff;
}

.page-hero {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding: 48px 0 72px;
}

.page-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.feed-grid,
.company-feed {
  display: grid;
  gap: 18px;
}

.feed-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coming-soon-panel {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(41, 213, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(41, 213, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--surface);
  box-shadow: var(--shadow);
}

.coming-soon-panel h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  font-size: 1rem;
}

.coming-soon-panel h3::before {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(41, 213, 255, 0.55);
  animation: live-dot 2.4s ease infinite;
}

.coming-soon-panel p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.company-feed {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feed-card,
.company-card,
.media-card,
.pricing-card,
.contact-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feed-card,
.company-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
}

.feed-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 94px;
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-light);
}

.feed-logo.dark {
  background: #252733;
}

.feed-logo img {
  width: min(76%, 148px);
  max-height: 40px;
  object-fit: contain;
}

.feed-meta h3,
.company-card h3,
.media-card h3,
.pricing-card h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.feed-meta p,
.company-card p,
.media-card p,
.pricing-card p {
  margin: 6px 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.feed-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feed-chips span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #9cedff;
  background: rgba(41, 213, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 700;
}

.feed-card small {
  color: var(--text-faint);
}

.feed-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-weight: 700;
  color: #a3efff;
}

.feed-link:hover,
.feed-link:focus-visible {
  color: var(--text);
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 18px;
}

.media-card {
  border-radius: 28px;
  padding: 24px;
}

.media-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.media-head span {
  color: #8beeff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.media-head strong {
  font-size: 1rem;
}

.screenshot-panel,
.video-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screenshot-panel {
  padding: 18px;
}

.shot-window {
  border-radius: 22px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.shot-topbar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
}

.shot-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.shot-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 330px;
}

.shot-sidebar {
  padding: 18px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.shot-brand,
.shot-link,
.shot-card {
  border-radius: 14px;
}

.shot-brand {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #29d5ff, #0a7ea4 72%);
}

.shot-link {
  height: 32px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.shot-link.active {
  background: rgba(41, 213, 255, 0.18);
}

.shot-content {
  padding: 18px;
  display: grid;
  gap: 16px;
}

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

.shot-card {
  min-height: 116px;
  background: rgba(255, 255, 255, 0.05);
}

.shot-card.large {
  min-height: 150px;
}

.shot-card.accent {
  background: rgba(41, 213, 255, 0.16);
}

.video-shell {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 28px;
  gap: 18px;
}

.video-glow {
  position: absolute;
  inset: auto auto 16% -6%;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(41, 213, 255, 0.18);
  filter: blur(28px);
}

.play-button {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-button span {
  margin-left: 4px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #ffffff;
}

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

.pricing-card {
  padding: 24px;
  border-radius: 28px;
}

.pricing-card-featured {
  border-color: rgba(41, 213, 255, 0.24);
  box-shadow: 0 30px 90px rgba(41, 213, 255, 0.14);
}

.plan-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(41, 213, 255, 0.14);
  color: #9cedff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--text-soft);
}

.pricing-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(41, 213, 255, 0.45);
}

.contact-panel {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
}

.contact-panel-page {
  width: min(calc(100% - 40px), var(--container));
  margin: 10px auto 90px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button em {
  margin-left: auto;
  font-style: normal;
  color: #9cedff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(41, 213, 255, 0.2);
  background: rgba(10, 10, 10, 0.94);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.skeleton-card {
  overflow: hidden;
}

.skeleton-block,
.skeleton-line,
.skeleton-chip {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
}

.skeleton-block::after,
.skeleton-line::after,
.skeleton-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  animation: shimmer 1.4s infinite;
}

.skeleton-block {
  min-height: 94px;
  border-radius: 18px;
}

.skeleton-line {
  height: 14px;
  border-radius: 999px;
}

.skeleton-line.short {
  width: 58%;
}

.skeleton-chip {
  width: 86px;
  height: 28px;
  border-radius: 999px;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

@keyframes cta-glow {
  0%, 100% {
    box-shadow:
      0 28px 56px rgba(41, 213, 255, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  }
  50% {
    box-shadow:
      0 28px 56px rgba(41, 213, 255, 0.38),
      0 0 0 1px rgba(255, 255, 255, 0.24) inset,
      0 0 0 5px rgba(41, 213, 255, 0.1);
  }
}

@keyframes live-dot {
  0% { box-shadow: 0 0 0 0 rgba(41, 213, 255, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(41, 213, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(41, 213, 255, 0); }
}

.updates-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 24px;
  align-items: start;
}

.updates-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 28px;
}

.updates-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.updates-form input,
.updates-form select,
.updates-form textarea {
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.updates-form input:focus,
.updates-form select:focus,
.updates-form textarea:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(41, 213, 255, 0.12);
}

.updates-form textarea {
  min-height: 140px;
  padding: 16px;
  resize: vertical;
}

.updates-form option {
  color: #111111;
}

.form-note {
  margin: 0;
  min-height: 24px;
  font-size: 0.92rem;
}

.form-note.success {
  color: #9bf4a6;
}

.form-note.error {
  color: #ff8e8e;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  min-height: 72px;
  padding: 0 20px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.download-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.device-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(250px, 0.85fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(41, 213, 255, 0.08), transparent 26%),
    rgba(16, 16, 16, 0.9);
  box-shadow: var(--shadow);
}

.device-preview-copy {
  display: grid;
  gap: 10px;
}

.device-preview-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(41, 213, 255, 0.14);
  color: #9cedff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-preview-copy strong {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.device-preview-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.device-shell {
  position: relative;
  justify-self: end;
  width: min(100%, 270px);
  padding: 12px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
}

.ios-shell {
  padding-top: 18px;
}

.android-shell {
  border-radius: 28px;
}

.device-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 96px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #030303;
  z-index: 2;
}

.android-camera {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  z-index: 2;
}

.device-screen {
  display: grid;
  gap: 12px;
  padding: 18px 16px 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(41, 213, 255, 0.08), transparent 28%),
    #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.device-status,
.device-header-line,
.device-tabbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.device-status {
  color: var(--text-faint);
  font-size: 0.76rem;
}

.device-header-line strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.device-header-line span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.device-search,
.device-cta-bar {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
  font-size: 0.83rem;
}

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

.device-mini-card {
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.device-mini-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 14px;
  background: var(--surface-light);
}

.device-mini-logo img {
  width: min(74%, 78px);
  max-height: 28px;
  object-fit: contain;
}

.device-mini-card strong,
.status-row strong {
  display: block;
  font-size: 0.84rem;
  letter-spacing: -0.02em;
}

.device-mini-card span,
.status-row small {
  color: var(--text-soft);
  font-size: 0.76rem;
}

.device-tabbar {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-faint);
  font-size: 0.76rem;
}

.device-tabbar .active {
  color: var(--text);
}

.status-stack {
  display: grid;
  gap: 10px;
}

.status-row {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 999px;
}

.status-dot.applied {
  background: #29d5ff;
  box-shadow: 0 0 18px rgba(41, 213, 255, 0.55);
}

.status-dot.reviewing {
  background: #fbbf24;
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.45);
}

.status-dot.accepted {
  background: #34d399;
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.45);
}

.store-icon {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.store-copy {
  display: grid;
  gap: 2px;
}

.store-copy small {
  color: var(--text-faint);
  font-size: 0.76rem;
}

.store-copy strong {
  font-size: 1.15rem;
}

.play-badge {
  position: relative;
  width: 34px;
  height: 34px;
}

.play-badge i {
  position: absolute;
  display: block;
  border-style: solid;
}

.play-badge i:nth-child(1) {
  top: 1px;
  left: 0;
  border-width: 16px 0 16px 28px;
  border-color: transparent transparent transparent #36c5f0;
}

.play-badge i:nth-child(2) {
  top: 4px;
  left: 5px;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #34d399;
}

.play-badge i:nth-child(3) {
  top: 9px;
  left: 7px;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fbbf24;
}

.site-footer {
  padding: 32px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top,
.footer-bottom {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.footer-top {
  align-items: start;
  padding-bottom: 28px;
}

.footer-brand {
  max-width: 430px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

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

.footer-links h3 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a,
.footer-links span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-soft);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-links a {
  width: fit-content;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.page-stack {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding: 0 0 90px;
}

.support-grid,
.policy-list {
  display: grid;
  gap: 18px;
}

.support-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-card,
.policy-section {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.support-card h3,
.policy-section h2 {
  margin: 18px 0 10px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.support-card p,
.policy-section p,
.policy-section li {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.support-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #04161c;
  font-weight: 800;
  background: linear-gradient(135deg, #7ee8ff, #29d5ff);
  box-shadow: 0 18px 30px rgba(41, 213, 255, 0.18);
}

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

.policy-section {
  scroll-margin-top: 128px;
}

.policy-section ul {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.support-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.support-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 600;
}

.support-list a::after {
  content: ">";
  color: var(--text-faint);
}

.support-list a:hover,
.support-list a:focus-visible {
  border-color: rgba(41, 213, 255, 0.2);
}

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

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

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

  .logo-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .company-feed,
  .pricing-grid,
  .media-grid,
  .download-showcase,
  .support-grid,
  .policy-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .device-preview {
    grid-template-columns: 1fr;
  }

  .device-shell {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(290px, calc(100vw - 32px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    padding: 8px;
    border: 1px solid rgba(122, 231, 255, 0.14);
    border-radius: 22px;
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    background:
      radial-gradient(circle at top left, rgba(41, 213, 255, 0.09), transparent 28%),
      linear-gradient(160deg, rgba(14, 17, 24, 0.97), rgba(7, 9, 14, 0.98));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 8px 16px rgba(0, 0, 0, 0.2),
      0 24px 48px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top right;
    transition: opacity 220ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 180ms ease, transform 180ms ease,
                background-color 140ms ease, color 140ms ease;
  }

  .site-nav.is-open a:nth-child(1) { opacity: 1; transform: none; transition-delay: 40ms; }
  .site-nav.is-open a:nth-child(2) { opacity: 1; transform: none; transition-delay: 70ms; }
  .site-nav.is-open a:nth-child(3) { opacity: 1; transform: none; transition-delay: 100ms; }
  .site-nav.is-open a:nth-child(4) { opacity: 1; transform: none; transition-delay: 130ms; }
  .site-nav.is-open a:nth-child(5) { opacity: 1; transform: none; transition-delay: 160ms; }
  .site-nav.is-open a:nth-child(6) { opacity: 1; transform: none; transition-delay: 190ms; }

  .header-actions {
    margin-left: 0;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 6px;
  }

  .site-nav a {
    text-align: left;
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.96rem;
    border-radius: 14px;
  }

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

  .hero-text {
    margin-inline: auto;
  }

  .hero-stats,
  .feature-grid,
  .updates-signup,
  .footer-top,
  .footer-bottom,
  .support-grid,
  .policy-list {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .floating-panel {
    display: none;
  }

  .split-heading,
  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .download-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar,
  .hero,
  .logo-strip,
  .pitch-section,
  .section-grid,
  .timeline,
  .updates-signup,
  .download,
  .site-footer,
  .page-stack {
    width: min(calc(100% - 24px), var(--container));
  }

  .topbar {
    top: 12px;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 22px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .eyebrow {
    width: fit-content;
    margin-inline: auto;
    padding: 8px 12px;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .hero {
    padding-top: 22px;
    gap: 20px;
  }

  .hero-text {
    max-width: 34ch;
    margin-top: 18px;
    margin-bottom: 20px;
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .button {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
  }

  .hero-stats {
    display: none;
  }

  .hero-stats,
  .logo-row,
  .timeline-grid,
  .footer-links,
  .feed-grid,
  .company-feed,
  .pricing-grid,
  .feature-grid,
  .support-grid,
  .policy-list {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 2px;
  }

  .orb-left,
  .orb-right {
    display: none;
  }

  .phone-stage {
    padding: 8px 0 0;
  }

  .phone-frame {
    width: min(100%, 300px);
    padding: 10px;
    border-radius: 30px;
  }

  .phone-header {
    padding: 4px 8px 10px;
    font-size: 0.74rem;
  }

  .phone-signal {
    width: 34px;
    height: 8px;
  }

  .phone-pill {
    width: 48px;
    height: 8px;
  }

  .phone-surface {
    padding: 12px;
    border-radius: 22px;
  }

  .surface-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .surface-header h2 {
    margin-top: 4px;
    font-size: 1.3rem;
  }

  .surface-filter {
    padding: 7px 10px;
    font-size: 0.74rem;
  }

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

  .mock-grid .mock-card:nth-child(n + 3) {
    display: none;
  }

  .mock-card {
    padding: 10px;
    border-radius: 16px;
  }

  .mock-card h3 {
    margin: 10px 0 6px;
    font-size: 0.8rem;
  }

  .mock-card p {
    margin-bottom: 6px;
    font-size: 0.72rem;
  }

  .mock-card span {
    padding: 5px 8px;
    font-size: 0.62rem;
  }

  .mock-logo-panel {
    min-height: 64px;
    padding: 10px;
    border-radius: 14px;
  }

  .mock-logo-panel img {
    max-height: 28px;
  }

  .bottom-tabs {
    margin-top: 10px;
    padding-top: 10px;
  }

  .bottom-tabs span {
    font-size: 0.68rem;
  }

  .store-actions {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .device-preview {
    padding: 18px;
    border-radius: 26px;
  }

  .device-shell {
    width: 100%;
    justify-self: stretch;
  }

  .device-card-grid {
    grid-template-columns: 1fr;
  }

  .shot-body {
    grid-template-columns: 1fr;
  }

  .shot-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 420px) {
  .pitch-actions {
    flex-direction: column;
    width: 100%;
  }
  .pitch-actions .button {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .phone-frame {
    width: min(100%, 274px);
  }

  .surface-filter {
    display: none;
  }

  .site-nav {
    top: calc(100% + 8px);
    right: 12px;
    width: min(250px, calc(100vw - 24px));
    padding: 10px;
    border-radius: 18px;
  }
}
