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

:root {
  --bg: #0A1120;
  --bg-raised: #101A2E;
  --surface-glass: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.10);
  --stroke-top: rgba(255, 255, 255, 0.22);
  --text: #EDF1F7;
  --text-secondary: #93A0B4;
  --blue: #4D80FF;
  --violet: #9966FF;
  --gradient-primary: linear-gradient(135deg, #4D80FF, #9966FF);
  --mint: #4BE6A0;
  --teal: #2FBFA0;
  --gradient-mint: linear-gradient(180deg, #4BE6A0, #2FBFA0);
  --record: #FF4D66;
  --amber: #FFA64D;

  --maxw: 1100px;
  --prose: 68ch;
  --radius-card: 16px;
  --radius-btn: 12px;
  --radius-pill: 999px;
  --shadow-glow: 0 8px 32px rgba(77, 128, 255, 0.35);

  --space-section: clamp(64px, 11vw, 128px);
  --nav-h: 60px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bg-raised);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
  z-index: 200;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: var(--space-section);
  position: relative;
}

.section--tight {
  padding-block: clamp(40px, 7vw, 72px);
}

.prose {
  max-width: var(--prose);
}

.text-secondary {
  color: var(--text-secondary);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  background: var(--surface-glass);
  border: 1px solid var(--stroke);
  border-top-color: var(--stroke-top);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.aurora {
  position: relative;
  isolation: isolate;
}

.aurora::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(42% 44% at 20% 30%, rgba(102, 153, 255, 0.20) 0%, rgba(102, 153, 255, 0) 100%),
    radial-gradient(40% 42% at 80% 20%, rgba(178, 102, 255, 0.16) 0%, rgba(178, 102, 255, 0) 100%),
    radial-gradient(46% 44% at 50% 95%, rgba(217, 128, 242, 0.12) 0%, rgba(217, 128, 242, 0) 100%);
}

.glass {
  background: var(--surface-glass);
  border: 1px solid var(--stroke);
  border-top-color: var(--stroke-top);
  border-radius: var(--radius-card);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .glass--blur {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(77, 128, 255, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--stroke);
  border-top-color: var(--stroke-top);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--surface-glass);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.9375rem;
}

.appstore-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: transform 0.18s ease;
}

.appstore-badge:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.appstore-badge svg {
  height: 54px;
  width: auto;
  border-radius: 12px;
}

.appstore-badge .badge-caption {
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.01em;
  padding-left: 2px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  background: var(--surface-glass);
  border: 1px solid var(--stroke);
  border-top-color: var(--stroke-top);
  padding: 6px 15px;
  border-radius: var(--radius-pill);
}

.mint-check {
  color: var(--mint);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 17, 32, 0.72);
  border-bottom: 1px solid var(--stroke);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header {
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    backdrop-filter: saturate(160%) blur(18px);
    background: rgba(10, 17, 32, 0.55);
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(56px, 9vw, 112px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero .subhead {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  max-width: 40ch;
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.see-how {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.see-how:hover {
  color: var(--mint);
  text-decoration: none;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.audience-bar {
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.audience-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding-block: 28px;
}

.audience-bar .label {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.steps {
  counter-reset: step;
}

.step-card {
  padding: 28px;
  position: relative;
}

.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.step-card h3 {
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.feature-card {
  padding: 26px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(75, 230, 160, 0.10);
  border: 1px solid rgba(75, 230, 160, 0.22);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--mint);
  color: var(--mint);
}

.feature-icon.blue {
  background: rgba(77, 128, 255, 0.12);
  border-color: rgba(77, 128, 255, 0.28);
}

.feature-icon.blue svg {
  stroke: var(--blue);
  color: var(--blue);
}

.feature-card h3 {
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 1rem;
}

.privacy-section .container {
  position: relative;
}

.privacy-lead {
  font-size: 1.25rem;
  color: var(--text);
  max-width: 60ch;
  margin-bottom: 40px;
}

.privacy-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.privacy-tile {
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.privacy-tile .tile-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(75, 230, 160, 0.12);
  border: 1px solid rgba(75, 230, 160, 0.26);
}

.privacy-tile .tile-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--mint);
}

.privacy-tile p {
  margin: 0;
  font-weight: 500;
  align-self: center;
}

.compliance-note {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  border-left: 2px solid var(--mint);
  padding-left: 18px;
  max-width: 60ch;
  margin-bottom: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  max-width: 860px;
  margin-inline: auto;
}

.price-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-raised), var(--bg-raised)) padding-box,
    var(--gradient-primary) border-box;
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.price-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1;
}

.price-amount .price-note {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 6px;
}

.price-list {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-secondary);
}

.price-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230A1120' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.price-card .btn,
.price-card .appstore-badge {
  margin-top: auto;
}

.price-foot {
  text-align: center;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 28px;
}

.req-strip {
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 0.975rem;
}

.req-strip .req-icon {
  flex: 0 0 auto;
  color: var(--amber);
  font-size: 1.2rem;
  line-height: 1.4;
}

.req-strip p {
  margin: 0;
}

.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 0 24px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
}

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

.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.faq-item .faq-body {
  color: var(--text-secondary);
  padding-bottom: 22px;
  margin-top: -4px;
}

.faq-item .faq-body p:last-child {
  margin-bottom: 0;
}

.updates-card {
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.updates-card h2 {
  margin-bottom: 12px;
}

.updates-card .updates-sub {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 460px;
  margin-inline: auto;
}

.waitlist-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  font: inherit;
  font-size: 1rem;
  padding: 13px 18px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--stroke);
  border-top-color: var(--stroke-top);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--text-secondary);
}

.waitlist-form input[type="email"]:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.updates-fallback {
  margin-top: 18px;
  font-size: 0.925rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

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

.final-cta h2 {
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 28px;
}

.final-cta .appstore-badge {
  align-items: center;
}

.site-footer {
  border-top: 1px solid var(--stroke);
  padding-block: 48px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.footer-sep {
  color: var(--text-secondary);
  opacity: 0.5;
}

.footer-note {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
  max-width: 60ch;
}

.mockup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.airplane-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mint);
  background: rgba(75, 230, 160, 0.10);
  border: 1px solid rgba(75, 230, 160, 0.30);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
}

.airplane-label svg {
  width: 15px;
  height: 15px;
  stroke: var(--mint);
}

.phone {
  width: 300px;
  max-width: 82vw;
  flex-shrink: 0;
  aspect-ratio: 300 / 640;
  border-radius: 46px;
  padding: 12px;
  background: linear-gradient(160deg, #1b2540, #0c1424);
  border: 1px solid var(--stroke);
  border-top-color: var(--stroke-top);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.4);
  position: relative;
}

.phone-screen {
  height: 100%;
  border-radius: 34px;
  background: #0D1526;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.dynamic-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #05080f;
  border-radius: var(--radius-pill);
  z-index: 5;
}

.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.status-bar .status-right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-bar .airplane-icon {
  width: 15px;
  height: 15px;
  color: var(--mint);
}

.rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--record);
  flex: 0 0 auto;
}

/* Library screen */
.lib-screen {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 4px 15px 0;
  background: radial-gradient(125% 55% at 50% -8%, rgba(103, 84, 196, 0.30), transparent 62%);
}

.lib-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3px 1px 9px;
}

.lib-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.lib-add {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(150, 128, 220, 0.5);
  background: rgba(255, 255, 255, 0.03);
  color: #d4dae8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.lib-add svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.lib-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-secondary);
  font-size: 0.86rem;
  margin-bottom: 13px;
}

.lib-search svg {
  width: 15px;
  height: 15px;
  stroke: var(--text-secondary);
  flex: 0 0 auto;
}

.lib-sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 2px 2px 7px;
}

.lib-sec-head svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-secondary);
}

.lib-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 13px;
}

.lib-ico {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lib-ico.folder svg {
  width: 23px;
  height: 23px;
  color: var(--violet);
}

.lib-ico.doc {
  color: var(--text-secondary);
}

.lib-ico.doc svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
}

.lib-card-text {
  flex: 1;
  min-width: 0;
  font-size: 0.94rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.22;
}

.lib-card-text span {
  display: block;
  margin-top: 3px;
  font-weight: 500;
  font-size: 0.76rem;
  color: var(--text-secondary);
}

.lib-card .chev {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.4);
  flex: 0 0 auto;
}

.rec-card {
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 9px;
  z-index: 3;
  padding: 12px 14px 13px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(64, 70, 92, 0.86), rgba(30, 34, 52, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 -12px 34px rgba(13, 21, 38, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rec-ghost-badge {
  position: absolute;
  top: -13px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: rgba(38, 42, 60, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.rec-ghost-badge svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-secondary);
}

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

.rec-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--record);
  font-variant-numeric: tabular-nums;
}

.rec-bookmark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 166, 77, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.rec-bookmark svg {
  width: 13px;
  height: 16px;
  fill: var(--amber);
}

.rec-transcript {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.rec-transcript .rt-1 {
  color: #eef1f7;
  font-weight: 500;
}

.rec-transcript .rt-2 {
  color: rgba(210, 216, 230, 0.55);
}

.lib-tabbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 15px;
}

.tab-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
}

.tab svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
}

.tab.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.tab-rec {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #ff6a7d, #f5324e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(255, 77, 102, 0.6);
}

.tab-rec-stop {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: #fff;
}

.press-facts {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 0;
}

.press-facts th,
.press-facts td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--stroke);
  vertical-align: top;
}

.press-facts th {
  color: var(--text-secondary);
  font-weight: 600;
  width: 34%;
  white-space: nowrap;
}

.press-facts tr:last-child th,
.press-facts tr:last-child td {
  border-bottom: none;
}

.asset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.asset-row img {
  width: 128px;
  height: 128px;
  border-radius: 24px;
  border: 1px solid var(--stroke);
}

.status-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  background: rgba(255, 166, 77, 0.12);
  border: 1px solid rgba(255, 166, 77, 0.28);
  padding: 3px 11px;
  border-radius: var(--radius-pill);
}

.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  margin-top: 8px;
}

.page-hero {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(24px, 4vw, 40px);
}

.page-hero .lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 60ch;
  margin-bottom: 0;
}

.contact-card {
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 40px;
}

.contact-card .contact-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.contact-card a {
  font-size: 1.15rem;
  font-weight: 600;
}

.doc h2 {
  margin-top: 44px;
  padding-top: 8px;
}

.doc h2:first-of-type {
  margin-top: 0;
}

.doc ul {
  padding-left: 22px;
}

.doc li {
  margin-bottom: 10px;
}

.doc .effective {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 40px 20px;
}

.error-page img {
  width: 84px;
  height: 84px;
  border-radius: 20px;
}

.error-page h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  max-width: 20ch;
}

.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;
}

.section--flush-top {
  padding-top: 0;
}

.panel {
  padding: clamp(22px, 4vw, 28px);
}

.panel--table {
  padding: 8px;
}

.doc-list {
  padding-left: 22px;
  margin: 0;
}

.doc-list li {
  margin-bottom: 12px;
}

.doc-list li:last-child {
  margin-bottom: 0;
}

.asset-info h3 {
  margin-bottom: 6px;
}

.asset-info p {
  margin-bottom: 12px;
}

.section-head--sm {
  margin-bottom: 24px;
}

.mt-lg {
  margin-top: 36px;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .waitlist-form input[type="email"] {
    flex: 1 1 auto;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }

  .hero .subhead {
    max-width: 46ch;
  }

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

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

  .mockup-wrap {
    flex-direction: row-reverse;
    align-items: center;
    gap: 22px;
    justify-content: center;
  }

  .airplane-label {
    writing-mode: horizontal-tb;
  }
}

.anim-ready .rec-card {
  animation: recCardIn 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.anim-ready .rec-dot {
  animation: recPulse 1.4s ease-in-out infinite;
}

@keyframes recCardIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes recPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 77, 102, 0.55); }
  70% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255, 77, 102, 0); }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .anim-ready .rec-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
