@font-face {
  font-family:Inter;
  src:url('assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight:400;
  font-display:swap
}

@font-face {
  font-family:Inter;
  src:url('assets/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight:600;
  font-display:swap
}

@font-face {
  font-family:Inter;
  src:url('assets/fonts/Inter-Bold.ttf') format('truetype');
  font-weight:700;
  font-display:swap
}

:root {
  --page-width:1440px;
  --gutter:clamp(24px,5vw,88px);
  --section-space:clamp(72px,8vw,128px);
  --display:clamp(40px,5.1vw,76px);
  --copy:clamp(17px,1.6vw,23px);
  --leading:1.5;
  --paper-shadow:0 12px 36px color-mix(in srgb,var(--ink) 11%,transparent);
  --phone-rim:var(--ink);
  --phone-edge:var(--ink-muted)
}

* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:24px
}
body {
  margin:0;
  background:var(--surface);
  color:var(--ink);
  font-family:Inter,sans-serif;
  -webkit-font-smoothing:antialiased
}
h1,h2,h3,p,figure {
  margin:0
}
h1,h2,h3 {
  font-weight:700;
  overflow-wrap:anywhere
}
h2 {
  font-size:var(--display);
  letter-spacing:-.055em;
  line-height:1.07;
  text-wrap:balance
}
p {
  line-height:var(--leading);
  overflow-wrap:anywhere
}
a {
  color:inherit;
  text-decoration:none
}
button {
  font:inherit
}
img {
  display:block;
  max-width:100%;
  height:auto
}
a,button {
  -webkit-tap-highlight-color:transparent
}
a:focus-visible,button:focus-visible {
  outline:3px solid var(--ink);
  outline-offset:5px
}
mark {
  background:var(--accent-soft);
  color:inherit;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone
}
.wrap {
  max-width:var(--page-width);
  margin-inline:auto;
  padding-inline:var(--gutter)
}
.section {
  padding-block:var(--section-space)
}
.skip-link {
  position:absolute;
  top:10px;
  left:10px;
  z-index:10;
  background:var(--ink);
  color:var(--panel);
  padding:12px 18px;
  transform:translateY(-180%)
}
.skip-link:focus {
  transform:none
}
.brand {
  max-width:100%;
  overflow-wrap:anywhere;
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:clamp(23px,2.1vw,30px);
  font-weight:700;
  letter-spacing:-.05em
}
.brand img {
  flex:none;
  width:80px;
  height:auto
}
.header {
  min-height:100px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:28px
}
.header nav {
  display:flex;
  align-items:center;
  gap:clamp(20px,3vw,48px);
  color:var(--ink-muted);
  font-size:15px
}
.header nav a {
  display:inline-flex;
  min-height:44px;
  align-items:center
}
.header nav a:hover,.footer a:hover {
  text-decoration:underline;
  text-underline-offset:5px
}
.menu-toggle {
  border:0;
  background:none;
  color:var(--ink);
  min-height:44px;
  padding:10px 0
}
.menu-toggle span {
  margin-left:8px
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  min-height:54px;
  padding:15px 24px;
  background:var(--accent);
  border-radius:var(--radius-button);
  font-size:17px;
  line-height:1.4;
  font-weight:600;
  transition:background .18s,transform .18s
}
.button:hover {
  background:color-mix(in srgb,var(--accent) 86%,var(--ink));
  transform:translateY(-2px)
}
.button span {
  font-size:26px;
  line-height:1
}
.button-white {
  background:var(--panel)
}
.button-white:hover {
  background:var(--surface)
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:24px;
  min-height:44px;
  padding-block:8px;
  font-weight:600;
  font-size:17px;
  text-decoration:underline;
  text-underline-offset:7px
}
.text-link:hover {
  text-decoration-thickness:2px
}
.availability {
  font-size:14px;
  color:var(--ink-muted)
}

.hero {
  padding-top:36px;
  overflow:hidden
}
.hero h1 {
  font-size:clamp(50px,7.5vw,108px);
  line-height:1.04;
  letter-spacing:-.065em;
  position:relative;
  z-index:1
}
.hero-intro {
  width:47%;
  margin-left:auto;
  margin-top:-5.1em;
  position:relative;
  z-index:2
}
.hero-intro>p {
  font-size:var(--copy);
  color:var(--ink-muted);
  max-width:590px
}
.hero-actions {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:18px;
  margin-top:24px
}
.hero-scene {
  height:clamp(370px,38vw,580px);
  position:relative;
  margin-top:40px;
  isolation:isolate
}
.hero-scene:after {
  content:'';
  position:absolute;
  z-index:3;
  inset:auto -100vw 0;
  height:72px;
  background:linear-gradient(transparent,var(--surface));
  pointer-events:none
}
.phone {
  padding:9px;
  background:var(--phone-rim);
  border:2px solid var(--phone-edge);
  border-radius:44px;
  box-shadow:var(--paper-shadow);
  overflow:hidden;
  line-height:0
}
.phone img {
  width:100%;
  border-radius:33px
}
.hero-phone {
  position:absolute;
  left:2%;
  top:10px;
  width:35%;
  max-width:400px;
  transform:rotate(-9deg);
  transform-origin:center top;
  z-index:2
}
.document {
  background:var(--panel);
  position:relative;
  box-shadow:var(--paper-shadow)
}
.document img {
  width:100%;
  height:auto
}
.paper-fold {
  position:absolute;
  top:0;
  right:0;
  width:8%;
  aspect-ratio:1;
  background:linear-gradient(45deg,var(--accent) 49.5%,var(--surface) 50%);
  filter:drop-shadow(-3px 4px 3px color-mix(in srgb,var(--ink) 10%,transparent))
}
.hero-document {
  position:absolute;
  top:18px;
  right:1%;
  width:59%;
  transform:rotate(4deg);
  z-index:1
}
.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:56px
}
.section-heading>p {
  font-size:var(--copy);
  color:var(--ink-muted);
  padding-bottom:5px
}
.steps {
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:32px
}
.steps>li {
  min-width:0
}
.step-art {
  position:relative;
  height:clamp(310px,32vw,430px);
  overflow:hidden;
  margin-bottom:28px
}
.step-art:after {
  content:'';
  position:absolute;
  inset:auto 0 0;
  height:35px;
  background:linear-gradient(transparent,var(--surface));
  pointer-events:none
}
.step-art .phone {
  width:90%;
  margin:0 auto;
  max-width:295px;
  border-radius:36px;
  padding:7px
}
.step-art .phone img {
  border-radius:27px
}
.step-art .document {
  width:90%;
  margin:30px auto 0
}
.document-art .document {
  transform:rotate(3deg)
}
.share-art .document {
  width:73%;
  margin-top:38px;
  transform:rotate(-5deg)
}
.share-caption {
  position:absolute;
  bottom:28px;
  left:0;
  right:0;
  display:flex;
  align-items:center;
  gap:16px;
  background:var(--panel);
  padding:22px 20px;
  border-radius:var(--radius-card);
  box-shadow:var(--paper-shadow);
  font-size:18px;
  font-weight:600;
  z-index:1
}
.share-caption svg {
  width:25px;
  height:25px;
  flex:none
}
.step-copy {
  border-top:1px solid var(--line);
  padding-top:22px
}
.step-copy h3 {
  font-size:20px;
  letter-spacing:-.035em;
  line-height:1.35;
  display:flex;
  gap:12px
}
.step-copy h3 span {
  color:var(--ink-muted);
  font-size:15px;
  padding-top:4px;
  font-weight:400
}
.step-copy p {
  font-size:17px;
  color:var(--ink-muted);
  margin-top:12px
}
.tracking-band {
  background:var(--accent-soft)
}
.tracking {
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:clamp(50px,9vw,145px);
  align-items:center
}
.tracking-phone {
  width:100%;
  max-width:340px;
  justify-self:center
}
.tracking-copy h2 {
  margin-bottom:30px
}
.tracking-copy>p {
  font-size:var(--copy);
  color:var(--ink-muted);
  max-width:590px
}
.tracking-copy .text-link {
  margin-top:54px
}
.dossiers {
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:64px;
  align-items:center;
  overflow:hidden
}
.dossiers h2 {
  font-size:clamp(38px,4.2vw,60px);
  line-height:1.13
}
.dossiers-copy>p {
  font-size:var(--copy);
  color:var(--ink-muted);
  margin-top:28px
}
.dossier-note {
  border-top:1px solid var(--line);
  padding-top:28px;
  margin-top:36px
}
.dossier-note h3 {
  font-size:21px;
  letter-spacing:-.03em
}
.dossier-note p {
  font-size:18px;
  color:var(--ink-muted);
  margin-top:8px
}
.dossiers-copy .text-link {
  margin-top:24px
}
.document-stack {
  position:relative;
  height:680px;
  min-width:0;
  overflow:hidden
}
.folder {
  position:absolute;
  inset:14px -18px 15px 12px;
  border-radius:8px;
  background:var(--panel-muted);
  transform:rotate(-6deg);
  box-shadow:var(--paper-shadow)
}
.document-stack .document {
  position:absolute;
  width:95%;
  right:0
}
.due-document {
  top:0;
  transform:rotate(6deg)
}
.receipt-document {
  top:280px;
  transform:rotate(6deg)
}
.document-stack:after {
  content:'';
  position:absolute;
  inset:auto -100px -4px;
  height:50px;
  background:linear-gradient(transparent,var(--surface));
  pointer-events:none
}
.pricing {
  padding-top:50px
}
.pricing>h2 {
  font-size:clamp(35px,4.25vw,62px);
  margin-bottom:54px
}
.plans {
  display:grid;
  grid-template-columns:.9fr 1.3fr;
  background:var(--panel);
  border-radius:var(--radius-card);
  overflow:hidden;
  box-shadow:var(--paper-shadow);
  position:relative
}
.plan {
  padding:clamp(28px,3.4vw,52px)
}
.plan h3 {
  font-weight:400;
  font-size:26px;
  color:var(--ink-muted)
}
.plan .price {
  font-size:clamp(38px,4.2vw,60px);
  font-weight:700;
  letter-spacing:-.05em;
  line-height:1.15;
  margin-top:20px
}
.plan .price span {
  font-size:.6em;
  letter-spacing:-.025em
}
.plan ul {
  list-style:none;
  padding:22px 0 0;
  margin:26px 0 0;
  border-top:1px solid var(--line);
  display:grid;
  gap:15px;
  font-size:19px;
  line-height:1.45
}
.plan li {
  overflow-wrap:anywhere;
  position:relative;
  padding-left:26px
}
.plan li:before {
  content:'✓';
  position:absolute;
  left:0;
  font-size:18px
}
.plan-note {
  font-size:16px;
  color:var(--ink-muted);
  margin-top:24px;
  max-width:360px
}
.essential-plan {
  background:var(--accent-soft);
  border-left:1px solid var(--line)
}
.plan-benefit {
  font-size:clamp(30px,3.3vw,48px);
  line-height:1.12;
  font-weight:700;
  letter-spacing:-.045em;
  margin-top:10px
}
.essential-plan .price {
  font-size:38px;
  margin:0
}
.price-line {
  margin-top:24px;
  padding-top:24px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:10px 24px
}
.monthly {
  font-size:18px;
  color:var(--ink-muted)
}
.essential-plan ul {
  grid-template-columns:1fr 1fr;
  font-size:17px;
  gap:15px 25px
}
.essential-plan .button {
  margin-top:30px
}
.essential-plan .plan-note {
  font-size:14px;
  margin-top:12px
}
.launch-band {
  background:var(--accent)
}
.launch {
  padding-block:clamp(65px,8vw,120px);
  display:grid;
  grid-template-columns:1.2fr 1fr;
  align-items:center;
  gap:60px
}
.launch h2 {
  font-size:clamp(34px,4.25vw,60px)
}
.launch-intro {
  font-size:21px;
  font-weight:600;
  margin-bottom:22px
}
.launch-note {
  font-size:16px;
  color:var(--ink);
  margin-top:22px
}
.footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding-block:40px
}
.footer nav {
  display:flex;
  flex-wrap:wrap;
  gap:14px 26px;
  font-size:14px;
  color:var(--ink-muted)
}
.footer nav a {
  display:flex;
  align-items:center;
  min-height:44px
}
.store img {
  height:46px;
  width:auto
}
.stores {
  display:flex;
  flex-wrap:wrap;
  gap:15px
}
.launch-action .stores {
  margin-block:20px
}

@media(min-width:761px) {
  .menu-toggle:not([hidden]) {
  display:none
}

}

@media(max-width:1099px) {
  .hero-intro {
  margin-top:24px;
  width:70%;
  margin-left:0
}
.hero h1 {
  font-size:clamp(50px,7.9vw,84px)
}
.hero-scene {
  margin-top:35px;
  height:410px
}
.tracking {
  gap:50px
}
.dossiers {
  gap:30px
}
.document-stack {
  height:560px
}
.receipt-document {
  top:230px
}
.essential-plan ul {
  grid-template-columns:1fr
}
.launch {
  gap:32px
}
.launch-intro {
  font-size:18px
}
.footer {
  gap:25px
}

}

@media(max-width:760px) {
  :root {
  --section-space:64px;
  --gutter:24px
}
.header {
  min-height:84px;
  flex-wrap:wrap;
  gap:0
}
.header nav {
  width:100%;
  gap:10px 25px;
  flex-wrap:wrap;
  padding-bottom:12px
}
.menu-toggle:not([hidden])~nav {
  display:none
}
.menu-toggle[aria-expanded='true']~nav {
  display:flex
}
.hero {
  padding-top:28px
}
.hero h1 {
  font-size:clamp(42px,9.3vw,62px);
  letter-spacing:-.06em;
  line-height:1.06
}
.hero-intro {
  width:100%;
  margin-top:24px
}
.hero-intro>p {
  font-size:18px
}
.hero-actions {
  gap:16px;
  margin-top:22px
}
.hero-actions .availability {
  font-size:13px
}
.button {
  font-size:16px;
  padding:14px 18px;
  min-height:52px;
  gap:18px
}
.hero-scene {
  height:370px;
  margin-top:40px
}
.hero-phone {
  width:57%;
  top:0;
  left:1%;
  border-radius:25px;
  padding:5px
}
.hero-phone img {
  border-radius:18px
}
.hero-document {
  width:73%;
  top:78px;
  right:-14%
}
.hero-scene:after {
  height:45px
}
.section-heading {
  display:block;
  margin-bottom:30px
}
.section-heading>p {
  font-size:18px;
  margin-top:20px
}
.section-heading>p br {
  display:none
}
.steps {
  display:flex;
  flex-direction:column;
  gap:35px
}
.steps>li {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  align-items:center;
  gap:23px
}
.step-art {
  height:245px;
  margin:0
}
.step-art .phone {
  width:100%;
  border-radius:22px;
  padding:4px
}
.step-art .phone img {
  border-radius:16px
}
.step-art .document {
  width:94%;
  margin-top:20px
}
.step-copy {
  border:0;
  padding:0
}
.step-copy h3 {
  font-size:19px;
  display:block
}
.step-copy h3 span {
  display:block;
  font-size:13px;
  padding:0;
  margin-bottom:7px
}
.step-copy p {
  font-size:15px;
  margin-top:10px
}
.share-caption {
  padding:14px 9px;
  gap:7px;
  bottom:22px;
  border-radius:12px;
  font-size:12px
}
.share-caption svg {
  width:17px;
  height:17px
}
.tracking {
  display:flex;
  flex-direction:column-reverse;
  gap:36px
}
.tracking-copy {
  width:100%
}
.tracking-copy h2 {
  margin-bottom:20px
}
.tracking-copy>p {
  font-size:18px
}
.tracking-copy .text-link {
  margin-top:24px
}
.tracking-phone {
  width:76%;
  max-width:300px;
  padding:7px;
  border-radius:35px
}
.tracking-phone img {
  border-radius:27px
}
.dossiers {
  display:block;
  padding-bottom:35px
}
.dossiers h2 {
  font-size:38px
}
.dossiers h2 br:first-of-type {
  display:none
}
.dossiers-copy>p {
  font-size:18px;
  margin-top:22px
}
.dossier-note {
  margin-top:25px;
  padding-top:23px
}
.dossier-note h3 {
  font-size:20px
}
.dossier-note p {
  font-size:16px
}
.document-stack {
  height:500px;
  margin-top:35px
}
.document-stack .document {
  width:89%;
  right:5%
}
.receipt-document {
  top:205px
}
.folder {
  inset:10px 8px 15px
}
.pricing {
  padding-top:40px
}
.pricing>h2 {
  font-size:34px;
  margin-bottom:30px
}
.plans {
  grid-template-columns:1fr
}
.plan {
  padding:28px
}
.plan h3 {
  font-size:22px
}
.plan .price {
  font-size:42px
}
.plan ul {
  font-size:17px;
  gap:12px;
  margin-top:22px;
  padding-top:20px
}
.plan-note {
  font-size:15px;
  margin-top:20px
}
.essential-plan {
  border-left:0;
  border-top:1px solid var(--line)
}
.plan-benefit {
  font-size:34px
}
.essential-plan .price {
  font-size:35px
}
.price-line {
  margin-top:22px;
  padding-top:20px
}
.essential-plan ul {
  grid-template-columns:1fr;
  gap:12px;
  font-size:16px
}
.essential-plan .button {
  width:100%;
  margin-top:26px
}
.launch {
  display:block;
  padding-block:58px
}
.launch h2 {
  font-size:37px;
  line-height:1.12
}
.launch-action {
  margin-top:30px
}
.launch-intro {
  font-size:18px
}
.launch-note {
  font-size:15px
}
.footer {
  display:block;
  padding-block:30px
}
.footer nav {
  margin-top:20px;
  gap:0 25px
}
.text-link {
  font-size:16px
}

}

@media(max-width:374px) {
  .hero h1 {
  font-size:39px
}
.hero-scene {
  height:320px
}
.hero-actions {
  align-items:flex-start;
  flex-direction:column
}
.steps>li {
  gap:17px
}
.step-art {
  height:220px
}
.step-copy h3 {
  font-size:17px
}
.step-copy p {
  font-size:14px
}
.share-caption {
  font-size:11px
}
.document-stack {
  height:450px
}
.receipt-document {
  top:185px
}
.plan {
  padding:24px
}
.brand {
  font-size:23px
}
.header nav {
  font-size:14px
}
.dossiers h2 {
  font-size:34px
}
.launch h2 {
  font-size:34px
}

}

@media(prefers-reduced-motion:reduce) {
  html {
  scroll-behavior:auto
}
.button {
  transition:none
}
.button:hover {
  transform:none
}

}
