:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --secondary: #62666d;
  --tertiary: #858993;
  --line: #e5e5ea;
  --grouped: #f2f2f7;
  --grouped-alt: #f8f8fb;
  --surface: #ffffff;
  --blue: #0a84ff;
  --blue-deep: #0040a0;
  --blue-soft: #eaf4ff;
  --mint: #34c759;
  --mint-soft: #e9f8ee;
  --peach: #ff9f7f;
  --peach-soft: #fff0ea;
  --yellow: #ffcc00;
  --yellow-soft: #fff8d8;
  --pink: #ff2d55;
  --lavender: #af52de;
  --shadow: 0 24px 60px rgba(29, 29, 31, 0.14);
  --soft-shadow: 0 12px 28px rgba(29, 29, 31, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: inherit;
  text-rendering: geometricPrecision;
}

body::selection {
  color: #ffffff;
  background: var(--blue);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 12px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px 28px;
  border-bottom: 1px solid rgba(229, 229, 234, 0.72);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(242, 242, 247, 0.8);
}

.nav-links a,
.nav-action,
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links a {
  color: var(--secondary);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
  background: #ffffff;
}

.nav-action {
  justify-self: end;
  color: #ffffff;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(690px, calc(100svh - 110px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 38%, rgba(255, 255, 255, 0.38) 72%, rgba(255, 255, 255, 0.08) 100%),
    #f7f9fc;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 84px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scene-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(10, 132, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 132, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(610px, calc(100% - 48px));
  padding: 108px 0 80px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 84px;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--secondary);
  font-size: 21px;
  line-height: 1.45;
  font-weight: 560;
}

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

.primary-link {
  min-height: 50px;
  padding: 0 20px;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(10, 132, 255, 0.24);
}

.secondary-link {
  min-height: 50px;
  padding: 0 20px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.primary-link:hover,
.primary-link:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible,
.nav-action:hover,
.nav-action:focus-visible {
  transform: translateY(-1px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 34px 0 0;
}

.hero-facts div,
.feature-card,
.price-card,
.quote-panel {
  border: 1px solid rgba(229, 229, 234, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.hero-facts div {
  padding: 14px;
}

.hero-facts dt {
  color: var(--tertiary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 6px 0 0;
  font-size: 15px;
  font-weight: 850;
}

.phone {
  position: relative;
  width: 320px;
  height: 650px;
  border: 10px solid #111116;
  border-radius: 42px;
  background: #111116;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 104px;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background: #050507;
  transform: translateX(-50%);
}

.phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 18px 14px 24px;
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 24%, #f4f8ff 100%);
}

.hero-phone-a {
  position: absolute;
  top: 68px;
  right: max(80px, calc((100vw - 1180px) / 2));
  transform: rotate(3deg);
}

.hero-phone-b {
  position: absolute;
  top: 162px;
  right: max(390px, calc((100vw - 650px) / 2));
  width: 250px;
  height: 508px;
  transform: rotate(-6deg);
  opacity: 0.96;
}

.ios-status,
.app-header,
.panel-row,
.chat-head {
  display: flex;
  align-items: center;
}

.ios-status {
  position: relative;
  z-index: 4;
  justify-content: space-between;
  padding: 4px 12px 16px;
  font-size: 12px;
  font-weight: 850;
}

.status-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.status-icons span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #111116;
}

.app-header {
  gap: 10px;
  margin-bottom: 14px;
}

.app-header img,
.chat-head img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.app-header span,
.chat-head span {
  display: block;
  color: var(--tertiary);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.app-header strong,
.chat-head strong {
  display: block;
  font-size: 23px;
  line-height: 1;
}

.total-panel,
.coach-panel,
.bars-panel,
.receipt-card,
.field-stack label,
.chip-grid span {
  border-radius: 22px;
}

.total-panel {
  padding: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #0a84ff, #5ac8fa);
  box-shadow: 0 18px 32px rgba(10, 132, 255, 0.24);
}

.panel-row {
  justify-content: space-between;
  gap: 12px;
}

.panel-row span,
.panel-row b {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.amount {
  margin-top: 9px;
  font-size: 43px;
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.total-panel p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.mini-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.mini-metrics span {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
}

.coach-panel,
.bars-panel {
  margin-top: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.coach-panel .panel-row b,
.bars-panel .panel-row b {
  color: #a95c00;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--yellow-soft);
}

.coach-panel h3 {
  margin: 13px 0 0;
  font-size: 17px;
  line-height: 1.2;
}

.coach-panel p {
  margin: 7px 0 0;
  color: var(--secondary);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 640;
}

.bar-set {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 82px;
  margin-top: 16px;
}

.bar-set i {
  flex: 1;
  min-width: 0;
  height: 56%;
  border-radius: 999px 999px 8px 8px;
  background: var(--blue);
  transform-origin: bottom;
  animation: rise 800ms ease both;
}

.bar-set i:nth-child(2) {
  height: 42%;
  background: var(--peach);
  animation-delay: 80ms;
}

.bar-set i:nth-child(3) {
  height: 82%;
  background: var(--mint);
  animation-delay: 160ms;
}

.bar-set i:nth-child(4) {
  height: 38%;
  background: var(--lavender);
  animation-delay: 240ms;
}

.bar-set i:nth-child(5) {
  height: 66%;
  background: var(--yellow);
  animation-delay: 320ms;
}

.bar-set i:nth-child(6) {
  height: 54%;
  background: var(--pink);
  animation-delay: 400ms;
}

.phone-chat .phone-screen {
  padding: 0;
  background: #f7f7fa;
}

.chat-head {
  gap: 10px;
  padding: 52px 14px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 250, 0.9);
}

.chat-head strong {
  font-size: 16px;
}

.chat-body {
  display: grid;
  gap: 8px;
  padding: 16px 12px;
}

.bubble {
  width: fit-content;
  max-width: 210px;
  padding: 10px 12px;
  border-radius: 20px;
  font-size: 13px;
  line-height: 1.25;
  box-shadow: 0 5px 14px rgba(29, 29, 31, 0.05);
}

.bubble.ai {
  background: #ffffff;
}

.bubble.me {
  justify-self: end;
  color: #ffffff;
  background: var(--blue);
}

.receipt-card {
  width: 220px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(29, 29, 31, 0.08);
}

.receipt-card strong {
  display: block;
  margin-bottom: 10px;
}

.receipt-card dl {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 10px;
  border-radius: 16px;
  background: var(--grouped);
}

.receipt-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.receipt-card dt,
.receipt-card dd {
  margin: 0;
  font-size: 11px;
}

.receipt-card dt {
  color: var(--tertiary);
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-card dd {
  font-weight: 800;
}

.receipt-card button,
.save-button {
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  border: 0;
  border-radius: 18px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 900;
}

.section {
  padding: 92px 24px;
}

.section:nth-of-type(even) {
  background: var(--grouped-alt);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.product-grid,
.ai-grid,
.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.section-copy h2 {
  max-width: 690px;
  margin: 0;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 560;
}

.wide {
  max-width: 850px;
}

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

.feature-card,
.price-card {
  padding: 20px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 950;
}

.feature-card h3,
.price-card h3 {
  margin: 18px 0 0;
  font-size: 21px;
  line-height: 1.1;
}

.feature-card p,
.price-card p {
  margin: 10px 0 0;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.5;
}

.showcase-phone {
  margin-inline: auto;
  transform: rotate(-2deg);
}

.phone-add .phone-screen {
  background: linear-gradient(180deg, #fbfbfd, #f2f2f7);
}

.add-title {
  margin: 20px 0;
}

.add-title h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
}

.add-title p {
  margin: 7px 0 0;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 760;
}

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

.field-stack label {
  display: grid;
  gap: 7px;
  padding: 12px;
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.field-stack span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 780;
  text-transform: none;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip-grid span {
  padding: 9px 11px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 850;
}

.chip-grid span:first-child {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.save-button {
  margin-top: 16px;
}

.quote-panel {
  margin-top: 26px;
  padding: 22px;
  border-left: 5px solid var(--blue);
}

.quote-panel p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 800;
}

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

.price-card {
  min-height: 210px;
  box-shadow: none;
}

.price-card.featured {
  border-color: rgba(10, 132, 255, 0.24);
  background: var(--blue-soft);
}

.price {
  color: var(--ink) !important;
  font-size: 28px !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
  font-variant-numeric: tabular-nums;
}

.launch-section {
  color: #ffffff;
  background: #101115 !important;
}

.launch-grid {
  grid-template-columns: minmax(0, 1fr) auto;
}

.launch-section .eyebrow {
  color: #8ec8ff;
}

.launch-section h2 {
  color: #ffffff;
}

.launch-section p {
  color: rgba(255, 255, 255, 0.72) !important;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.store-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 820;
}

.launch-link {
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 28px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 180px;
  height: auto;
}

.site-footer p {
  margin: 0;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
}

@keyframes rise {
  from {
    transform: scaleY(0.2);
    opacity: 0.4;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: min(650px, calc(100svh - 100px));
  }

  .hero-copy {
    width: min(560px, calc(100% - 48px));
    padding-top: 88px;
  }

  h1 {
    font-size: 68px;
  }

  .hero-phone-a {
    right: -42px;
    opacity: 0.86;
  }

  .hero-phone-b {
    right: 220px;
    opacity: 0.32;
  }

  .product-grid,
  .ai-grid,
  .launch-grid {
    grid-template-columns: 1fr;
  }

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

  .launch-link {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 10px 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-action {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .hero {
    min-height: min(590px, calc(100svh - 92px));
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 54%, rgba(255, 255, 255, 0.3) 100%),
      #f7f9fc;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 54px 0 52px;
  }

  h1 {
    font-size: 54px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hero-phone-a {
    top: 292px;
    right: -90px;
    width: 230px;
    height: 468px;
    opacity: 0.5;
  }

  .hero-phone-b {
    display: none;
  }

  .section {
    padding: 70px 16px;
  }

  .section-copy h2 {
    font-size: 34px;
  }

  .section-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .phone {
    width: min(100%, 318px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 16px;
  }
}

@media (max-width: 420px) {
  .brand-link span {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  .hero-actions a {
    width: 100%;
  }

  .amount {
    font-size: 36px;
  }

  .phone {
    height: 626px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
