:root {
  --bs-primary: #7900a8;
  --bs-primary-rgb: 121, 0, 168;
  --bs-body-color: #17131f;
  --bs-body-bg: #fbfafc;
  --bs-border-color: #e8e2ec;
  --ink: #17131f;
  --muted: #6f687b;
  --paper: #fbfafc;
  --surface: #ffffff;
  --line: #e8e2ec;
  --violet: #7900a8;
  --violet-dark: #510078;
  --violet-soft: #f4e8f8;
  --lime: #c6f66f;
  --coral: #ff8c73;
  --shadow: 0 28px 80px rgba(61, 17, 79, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 4%, rgba(198, 246, 111, 0.2), transparent 24rem),
    radial-gradient(circle at 2% 30%, rgba(121, 0, 168, 0.08), transparent 30rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(121, 0, 168, 0.28);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(232, 226, 236, 0.82);
  background: rgba(251, 250, 252, 0.88);
  backdrop-filter: blur(18px);
}

.site-header .navbar {
  min-height: 76px;
  --bs-navbar-color: var(--muted);
  --bs-navbar-hover-color: var(--violet);
  --bs-navbar-active-color: var(--violet);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #9700cb, #5f0089);
  box-shadow: 0 10px 24px rgba(121, 0, 168, 0.28);
  font-size: 17px;
  letter-spacing: -0.08em;
}

.nav-links {
  align-items: center;
  gap: 6px;
}

.nav-links .nav-link {
  padding: 10px 13px;
  border-radius: 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-links .nav-link:hover,
.nav-links .nav-link:focus-visible {
  color: var(--violet);
  background: var(--violet-soft);
}

.navbar-toggler {
  width: 46px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(121, 0, 168, 0.12);
}

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

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.language-switch button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: 800 12px/1 Inter, ui-sans-serif, system-ui, sans-serif;
}

.language-switch button[aria-pressed="true"] {
  color: #fff;
  background: var(--violet);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #8c00bd, #65008f);
  box-shadow: 0 14px 30px rgba(121, 0, 168, 0.23);
}

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

.hero {
  padding: 76px 0 88px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(121, 0, 168, 0.15);
  border-radius: 999px;
  color: var(--violet-dark);
  background: rgba(244, 232, 248, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(198, 246, 111, 0.28);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.5vw, 82px);
  line-height: 0.98;
}

.gradient-text {
  color: var(--violet);
  background: linear-gradient(110deg, #5f0089, #a500cf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-note span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--violet);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(121, 0, 168, 0.14);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 54px;
  border: 1px dashed rgba(121, 0, 168, 0.18);
}

.hero-orbit::after {
  inset: 118px;
  background: radial-gradient(circle, rgba(198, 246, 111, 0.34), rgba(121, 0, 168, 0.08) 65%, transparent 66%);
}

.phone {
  position: relative;
  z-index: 3;
  width: 302px;
  min-height: 612px;
  padding: 12px;
  border: 2px solid #2c2432;
  border-radius: 48px;
  background: #17131c;
  box-shadow: 0 42px 100px rgba(48, 10, 63, 0.3);
  transform: rotate(2deg);
}

.phone-screen {
  min-height: 584px;
  overflow: hidden;
  padding: 18px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0, rgba(198, 246, 111, 0.26), transparent 150px),
    #f8f6f9;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  margin: 1px 6px 22px;
  font-size: 10px;
  font-weight: 900;
}

.phone-greeting {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.phone-title {
  margin: 4px 0 14px;
  font: 800 22px/1.15 "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.05em;
}

.calorie-card {
  padding: 18px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, #8700b8, #5f0089);
}

.calorie-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.calorie-value {
  margin-top: 8px;
  font: 800 30px/1 "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif;
}

.calorie-value small {
  font-size: 12px;
  opacity: 0.7;
}

.mini-ring {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 6px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--lime);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  transform: rotate(18deg);
}

.mini-ring span {
  transform: rotate(-18deg);
}

.macro-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 14px;
}

.macro {
  padding: 10px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 9px;
}

.macro strong {
  display: block;
  margin-top: 3px;
  font-size: 12px;
}

.scan-card {
  position: relative;
  margin-top: 12px;
  min-height: 154px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 35%, #f3c56d 0 14px, transparent 15px),
    radial-gradient(circle at 56% 45%, #7fc65c 0 20px, transparent 21px),
    radial-gradient(circle at 68% 58%, #e98969 0 18px, transparent 19px),
    radial-gradient(circle at 43% 67%, #f8e1ad 0 30px, transparent 31px),
    linear-gradient(145deg, #3d243d, #151218);
}

.scan-frame {
  position: absolute;
  inset: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
}

.scan-label {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 19, 31, 0.74);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.meal-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.meal-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--violet-soft);
}

.meal-copy {
  flex: 1;
  font-size: 10px;
  font-weight: 800;
}

.meal-copy span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 600;
}

.meal-kcal {
  font-size: 10px;
  font-weight: 900;
}

.floating-card {
  position: absolute;
  z-index: 5;
  min-width: 176px;
  padding: 14px;
  border: 1px solid rgba(232, 226, 236, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  display: block;
  margin-top: 4px;
  font: 800 16px/1.2 "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif;
}

.floating-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.floating-card-one {
  top: 82px;
  left: 0;
  transform: rotate(-4deg);
}

.floating-card-two {
  right: -16px;
  bottom: 118px;
  transform: rotate(4deg);
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--violet-dark);
  background: var(--lime);
  font-size: 17px;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.proof-grid {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proof-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-icon {
  font-size: 20px;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: #f4f0f5;
}

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

.section-kicker {
  margin-bottom: 14px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.06;
}

.section-intro {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.step-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 18px 54px rgba(61, 17, 79, 0.06);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--violet);
  font: 800 14px/1 "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif;
}

.step-card h3 {
  margin-top: 54px;
  font-size: 26px;
}

.step-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.step-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -30px;
  top: -34px;
  border-radius: 50%;
  background: var(--violet-soft);
}

.row > div:nth-child(2) .step-card .step-decoration {
  background: rgba(198, 246, 111, 0.4);
}

.row > div:nth-child(3) .step-card .step-decoration {
  background: rgba(255, 140, 115, 0.25);
}

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

.feature-card {
  min-height: 340px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
}

.feature-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  background: var(--violet-soft);
  font-size: 22px;
}

.feature-card h3 {
  font-size: 30px;
}

.feature-card p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-visual {
  min-height: 230px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(145deg, #2b1730, #5b166f);
}

.analysis-chip {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--violet-dark);
  background: var(--lime);
  font-size: 10px;
  font-weight: 900;
}

.analysis-result {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.analysis-result strong {
  display: block;
  font: 800 25px/1.2 "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif;
}

.analysis-bars {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.analysis-bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.analysis-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.analysis-bar:nth-child(2) span {
  width: 68%;
  background: var(--coral);
}

.analysis-bar:nth-child(3) span {
  width: 44%;
  background: #d6b7f4;
}

.security-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 42px;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(130deg, #250f2d, #5e1072);
  box-shadow: var(--shadow);
}

.security-band h2 {
  max-width: 730px;
  font-size: clamp(34px, 4vw, 52px);
}

.security-band p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.security-seal {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 44px;
}

.download-card {
  position: relative;
  overflow: hidden;
  padding: 72px;
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(198, 246, 111, 0.32), transparent 260px),
    linear-gradient(135deg, #7800a5, #4f006f);
  box-shadow: 0 40px 100px rgba(77, 0, 101, 0.26);
}

.download-card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  bottom: -180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.download-card h2 {
  max-width: 760px;
}

.download-card p {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.store-button {
  min-width: 210px;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
}

.store-button[data-coming-soon] {
  cursor: default;
  opacity: 0.74;
}

.store-icon {
  font-size: 25px;
}

.store-copy small,
.store-copy strong {
  display: block;
}

.store-copy small {
  color: var(--muted);
  font-size: 10px;
}

.store-copy strong {
  margin-top: 2px;
  font-size: 15px;
}

.waitlist-card {
  padding: 56px;
}

.waitlist-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 52px;
}

.waitlist-copy h2 {
  max-width: 620px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.02;
}

.waitlist-copy p {
  max-width: 590px;
}

.waitlist-kicker {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.waitlist-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(198, 246, 111, 0.14);
}

.waitlist-benefits {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.waitlist-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 750;
}

.waitlist-benefits li::before {
  content: "✓";
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #36104a;
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.waitlist-store-buttons {
  margin-top: 30px;
}

.waitlist-store-buttons .store-button {
  min-width: 185px;
  min-height: 58px;
}

.waitlist-form-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(35, 6, 47, 0.28);
}

.waitlist-form {
  position: relative;
}

.waitlist-form-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

.waitlist-form-heading h3,
.waitlist-success h3 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
}

.waitlist-form-heading p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.waitlist-step {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--violet-dark);
  background: var(--violet-soft);
  font-size: 13px;
  font-weight: 900;
}

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

.waitlist-field {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: #342d3b;
  font-size: 12px;
  font-weight: 850;
}

.waitlist-field small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.waitlist-field-wide {
  grid-column: 1 / -1;
}

.waitlist-field input,
.waitlist-field select,
.waitlist-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ddd5e3;
  border-radius: 13px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fbfafc;
  font: 650 14px/1.4 Inter, ui-sans-serif, system-ui, sans-serif;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.waitlist-field textarea {
  min-height: 78px;
  resize: vertical;
}

.waitlist-field input:focus,
.waitlist-field select:focus,
.waitlist-field textarea:focus {
  border-color: var(--violet);
  outline: 0;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(121, 0, 168, 0.1);
}

.waitlist-consent {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.55;
}

.waitlist-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--violet);
}

.waitlist-consent a {
  color: var(--violet-dark);
  font-weight: 800;
}

.waitlist-submit {
  width: 100%;
  margin-top: 18px;
  cursor: pointer;
}

.waitlist-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.waitlist-email-note {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
  line-height: 1.45;
}

.waitlist-status {
  min-height: 19px;
  margin-top: 8px;
  color: var(--violet-dark);
  text-align: center;
  font-size: 12px;
  font-weight: 750;
}

.waitlist-status.is-error {
  color: #b42318;
}

.waitlist-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.waitlist-success {
  min-height: 480px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.waitlist-success-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #3b1260;
  background: var(--lime);
  box-shadow: 0 16px 34px rgba(101, 0, 142, 0.16);
  font-size: 30px;
  font-weight: 900;
}

.waitlist-success p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1040px) {
  .waitlist-layout {
    grid-template-columns: 1fr;
  }

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

  .waitlist-copy h2,
  .waitlist-copy p {
    margin-inline: auto;
  }

  .waitlist-kicker,
  .waitlist-benefits li {
    margin-inline: auto;
  }

  .waitlist-store-buttons {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .waitlist-card {
    padding: 32px 20px;
  }

  .waitlist-layout {
    gap: 34px;
  }

  .waitlist-form-panel {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .waitlist-form-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-field-wide {
    grid-column: auto;
  }

  .waitlist-store-buttons .store-button {
    width: 100%;
  }

  .waitlist-success {
    min-height: 360px;
  }
}

.site-footer {
  padding: 48px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}

.footer-copy {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.legal-hero {
  padding: 70px 0 44px;
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(44px, 7vw, 72px);
}

.legal-summary {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 72px;
  align-items: start;
  padding: 34px 0 110px;
}

.legal-nav {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.legal-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--violet);
  background: var(--violet-soft);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  scroll-margin-top: 120px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content section:first-child {
  padding-top: 0;
}

.legal-content h2 {
  font-size: 28px;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: #514a5a;
  line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-callout {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid rgba(121, 0, 168, 0.15);
  border-radius: 20px;
  background: var(--violet-soft);
}

.deletion-steps {
  display: grid;
  gap: 14px;
  counter-reset: deletion;
  margin-top: 24px;
}

.deletion-step {
  position: relative;
  padding: 22px 22px 22px 68px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  counter-increment: deletion;
}

.deletion-step::before {
  content: counter(deletion);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--violet);
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .nav-links {
    align-items: stretch;
    gap: 4px;
  }

  .site-header .navbar-collapse {
    margin-top: 10px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 44px rgba(61, 17, 79, 0.1);
  }

  .site-header .navbar-collapse .nav-actions {
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

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

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

  .hero-copy,
  .section-head {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-visual {
    min-height: 640px;
  }

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

  .proof-item {
    min-height: 74px;
  }

  .proof-item + .proof-item {
    border-left: 0;
  }

  .proof-item:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .step-card {
    min-height: 250px;
  }

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

  .security-band {
    grid-template-columns: 1fr;
  }

  .security-seal {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .site-header .navbar {
    min-height: 68px;
  }

  .nav .button {
    display: none;
  }

  .brand {
    font-size: 18px;
  }

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

  .hero {
    padding: 54px 0 62px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-visual {
    min-height: 570px;
    transform: scale(0.86);
    margin: -34px -30px;
  }

  .hero-orbit {
    width: 440px;
    height: 440px;
  }

  .phone {
    width: 284px;
  }

  .floating-card-one {
    left: -30px;
  }

  .floating-card-two {
    right: -38px;
  }

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

  .proof-item,
  .proof-item:nth-child(even),
  .proof-item:nth-child(n + 3) {
    border: 0;
    border-top: 1px solid var(--line);
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .section {
    padding: 78px 0;
  }

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

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    min-height: auto;
    padding: 25px;
  }

  .security-band {
    padding: 30px 24px;
  }

  .download-card {
    padding: 46px 24px;
    border-radius: 30px;
  }

  .store-button {
    width: 100%;
  }

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

  .footer-links {
    display: grid;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-hero {
    padding-top: 50px;
  }

  .legal-layout {
    padding-bottom: 78px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }
}

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

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