@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-variable.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --navy: #042257;
  --deep-navy: #071b3d;
  --blue: #2563eb;
  --strong-blue: #1d4ed8;
  --pale-blue: #dbeafe;
  --very-pale-blue: #eff6ff;
  --page: #f8fafc;
  --white: #ffffff;
  --soft: #f2f4f7;
  --text-secondary: #667085;
  --text-muted: #98a2b3;
  --border: #d0d5dd;
  --card-border: #e2e8f0;
  --green: #047857;
  --green-soft: #dcfce7;
  --pink-soft: #fce7f3;
  --yellow: #facc15;
  --shadow: 0 22px 55px rgba(4, 34, 87, 0.14);
  --font: "DM Sans", "Avenir Next", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--page);
  color: var(--deep-navy);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.shell { width: min(1240px, calc(100% - 56px)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 100;
  transform: translateY(-150%); border-radius: 10px;
  background: var(--navy); color: var(--white); padding: 10px 14px; font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(37, 99, 235, .3); outline-offset: 4px; }

.site-header { padding: 22px 0 8px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand {
  align-items: center;
  column-gap: 8px;
  display: inline-grid;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  line-height: 1;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
}
.brand__symbol,
.brand__wordmark {
  display: block;
  flex: none;
  max-width: none;
  width: auto;
}
.brand--header .brand__symbol { height: 30px; }
.brand--header .brand__wordmark { height: 27px; }
.brand--footer { column-gap: 5px; }
.brand--footer .brand__symbol { height: 18px; }
.brand--footer .brand__wordmark { height: 16px; }
.brand-i { position: relative; display: inline-block; color: var(--blue); }
.brand-i::after {
  content: "i";
  position: absolute;
  inset: 0;
  color: var(--navy);
  clip-path: inset(28% 0 0 0);
  pointer-events: none;
}
.header-nav { display: flex; gap: 32px; }
.header-nav a {
  color: var(--text-secondary); font-size: 14px; font-weight: 700;
  text-decoration: none; transition: color 160ms ease;
}
.header-nav a:hover, .header-nav a:focus-visible { color: var(--navy); }

.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(470px, 1.06fr);
  align-items: center;
  gap: 46px;
  padding-block: 32px 58px;
}
.hero-copy { position: relative; z-index: 4; padding-left: 14px; }
.eyebrow {
  margin: 0 0 14px; color: var(--blue); font-size: 12px;
  font-weight: 850; letter-spacing: .125em; text-transform: uppercase;
}
.eyebrow.centred { text-align: center; }
h1, h2, h3 { margin-top: 0; color: var(--navy); font-family: var(--font); font-style: normal; }
h1 {
  max-width: 570px;
  margin-bottom: 0;
  font-size: clamp(66px, 6.1vw, 82px);
  font-weight: 900;
  letter-spacing: -.058em;
  line-height: .94;
}
h1 .accent-word, .final-cta h2 span { color: var(--blue); }
.hero-intro {
  margin: 28px 0 0; color: var(--text-secondary);
  font-size: clamp(17px, 1.55vw, 19px); line-height: 1.55;
}
.scribble {
  display: block; height: 7px; border-top: 4px solid var(--blue);
  border-radius: 50%; transform: rotate(-2deg);
}
.hero-scribble { width: 176px; margin: 3px 0 0 122px; }
.store-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 27px; }
.store-badge {
  min-width: 158px; min-height: 54px; display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--card-border); border-radius: 14px; background: var(--white);
  color: var(--deep-navy); padding: 8px 13px; text-align: left;
  box-shadow: 0 8px 22px rgba(4,34,87,.07); cursor: not-allowed;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(4,34,87,.1); }
.store-badge .store-logo { width: 23px; height: 23px; flex: 0 0 auto; object-fit: contain; }
.store-badge .store-logo-app-store { border-radius: 5px; }
.store-badge span { display: grid; gap: 1px; }
.store-badge small { color: var(--text-secondary); font-size: 9px; font-weight: 700; }
.store-badge strong { color: var(--navy); font-size: 14px; line-height: 1.1; }

.hero-visual { position: relative; min-height: 515px; isolation: isolate; }
.photo-frame {
  position: absolute; z-index: 1; top: 48px; right: 0; width: 76%; aspect-ratio: 4 / 3;
  overflow: hidden; border: 7px solid var(--white); border-radius: 31px;
  background: var(--soft); box-shadow: 0 20px 48px rgba(4,34,87,.12);
  transform: rotate(2.2deg);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.phone {
  position: relative; overflow: hidden; border: 6px solid #0a2757;
  border-radius: 41px; background: var(--white); padding: 7px 5px 5px;
  box-shadow: 0 28px 62px rgba(4,34,87,.2);
}
.phone::after {
  content: ""; position: absolute; inset: 5px; border: 1px solid rgba(255,255,255,.6);
  border-radius: 31px; pointer-events: none;
}
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; }
.phone-speaker, .phone-island {
  position: absolute; z-index: 3; top: 12px; left: 50%; width: 45px; height: 7px;
  transform: translateX(-50%); border-radius: 999px; background: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,.24);
}
.phone-hero {
  position: absolute; z-index: 3; left: 4%; bottom: 1px;
  width: 44%; aspect-ratio: 1 / 2; transform: rotate(-1.5deg);
  animation: phone-float 5.5s ease-in-out infinite;
}
.settled-card {
  position: absolute; z-index: 5; right: 1%; bottom: 48px;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--card-border); border-radius: 16px;
  background: rgba(255,253,243,.98); padding: 12px 15px;
  box-shadow: 0 14px 32px rgba(4,34,87,.12);
  animation: settled-float 4.8s ease-in-out infinite;
}
.settled-card span:last-child { display: grid; gap: 1px; }
.settled-card strong { color: var(--navy); font-size: 14px; }
.settled-card small { color: var(--text-secondary); font-size: 10px; }
.settled-check {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; background: var(--green-soft); color: var(--green); font-weight: 900;
}
.doodle-heart { position: absolute; z-index: 4; right: 8%; top: 6px; color: var(--blue); font-size: 34px; transform: rotate(9deg); }
.hero-visual::after {
  content: ""; position: absolute; z-index: 0; width: 18px; height: 18px;
  right: 4%; top: 38%; border-radius: 5px; background: #fde68a; transform: rotate(18deg);
}

.steps-section { background: var(--white); padding: 78px 0 88px; }
.steps-section h2, .showcase-copy h2, .final-cta h2 {
  margin-bottom: 0; font-weight: 900; letter-spacing: -.045em; line-height: 1.02;
}
.steps-section h2 { text-align: center; font-size: clamp(40px, 4.6vw, 58px); }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin-top: 49px; }
.step-connector {
  position: absolute; z-index: 0; left: 16%; right: 16%; top: 43px; height: 44px;
  border-top: 2px dashed #bfdbfe; border-radius: 50%; transform: rotate(-1deg);
}
.step { position: relative; z-index: 1; text-align: center; }
.step::after { content: '✦'; position: absolute; top: 4px; left: calc(50% + 48px); color: #60a5fa; font-size: 15px; transform: rotate(14deg); }
.step:nth-of-type(2)::after { color: #f9a8d4; }
.step:nth-of-type(3)::after { color: #34d399; }
.step-visual { position: relative; width: 88px; margin: 0 auto 18px; }
.step-icon {
  width: 84px; height: 84px; display: grid; place-items: center; margin-inline: auto;
  border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}
.step-icon svg { width: 43px; height: 43px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.step-blue { background: var(--pale-blue); color: var(--strong-blue); }
.step-pink { background: var(--pink-soft); color: #be185d; }
.step-green { background: var(--green-soft); color: var(--green); }
.step-number {
  position: absolute; top: 54px; left: calc(50% - 68px); right: auto; width: 26px; height: 26px;
  display: grid; place-items: center; border: 3px solid var(--white); border-radius: 50%;
  background: var(--navy); color: var(--white); font-size: 11px; font-weight: 900;
}
.step h3 { margin-bottom: 8px; font-size: 20px; letter-spacing: -.02em; }
.step p { max-width: 250px; margin: auto; color: var(--text-secondary); font-size: 15px; line-height: 1.55; }

.showcase-section { overflow: hidden; background: var(--very-pale-blue); padding: 78px 0 70px; }
.showcase-grid { min-height: 555px; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 54px; }
.showcase-copy { position: relative; padding-left: 16px; }
.showcase-copy h2 { font-size: clamp(54px, 5.8vw, 72px); }
.showcase-copy > p:last-of-type { max-width: 420px; margin: 24px 0 0; color: var(--text-secondary); font-size: 17px; line-height: 1.6; }
.showcase-scribble { width: 142px; margin: 6px 0 0 34px; }
.feature-points { display: grid; gap: 11px; margin-top: 24px; color: var(--navy); font-size: 14px; font-weight: 750; }
.feature-points span { display: flex; align-items: center; gap: 8px; }
.feature-points b { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--green); font-size: 12px; }
.showcase-phones { position: relative; min-height: 535px; }
.phone-feature { position: absolute; width: min(36%, 238px); aspect-ratio: 1 / 2; border-radius: 38px; }
.phone-feature-one { left: 18%; top: 3px; transform: rotate(-3deg); }
.phone-feature-two { right: 13%; top: 12px; transform: rotate(2deg); }
.showcase-arrow { position: absolute; left: 4%; top: 31%; color: var(--blue); font-size: 43px; transform: rotate(-13deg); }
.showcase-heart { position: absolute; right: 3%; top: 2%; color: var(--blue); font-size: 33px; transform: rotate(10deg); }
.showcase-phones::after { content: ""; position: absolute; left: 6%; bottom: 16%; width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); box-shadow: 16px 8px 0 #86efac; }

.final-cta { background: var(--white); padding: 56px 0 52px; text-align: center; }
.cta-inner { position: relative; }
.final-cta h2 { font-size: clamp(46px, 5.6vw, 68px); }
.final-cta p { display: none; }
.cta-scribble { width: 86px; margin: 4px auto 0; transform: translateX(-69px) rotate(-2deg); }
.store-row-centred { justify-content: center; margin-top: 24px; }
.tiny-spark { position: absolute; left: 22%; top: -15px; color: var(--yellow); font-size: 27px; transform: rotate(12deg); }

.site-footer { border-top: 1px solid var(--card-border); background: var(--white); padding: 20px 0 24px; }
.footer-inner { display: flex; align-items: center; justify-content: center; gap: 20px; color: var(--text-muted); font-size: 12px; }
.footer-placeholder { cursor: default; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 500ms ease, transform 500ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes phone-float { 0%,100% { transform: rotate(-1.5deg) translateY(0); } 50% { transform: rotate(-1.5deg) translateY(-6px); } }
@keyframes settled-float { 0%,100% { transform: translateY(0) rotate(.5deg); } 50% { transform: translateY(-4px) rotate(-.5deg); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: .9fr 1.1fr; gap: 20px; min-height: 570px; }
  h1 { font-size: clamp(58px, 7vw, 70px); }
  .hero-visual { min-height: 470px; }
  .showcase-grid { gap: 24px; }
  .showcase-phones { min-height: 480px; }
  .phone-feature { width: 40%; }
  .phone-feature-one { left: 8%; }
  .phone-feature-two { right: 4%; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 32px), 620px); }
  .site-header { padding-top: 18px; }
  .brand--header { column-gap: 6px; }
  .brand--header .brand__symbol { height: 25px; }
  .brand--header .brand__wordmark { height: 23px; }
  .header-nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 24px; min-height: auto; padding-block: 46px 48px; text-align: center; }
  .hero-copy { padding-left: 0; }
  h1 { max-width: 100%; font-size: clamp(45px, 13.2vw, 60px); line-height: .95; letter-spacing: -.055em; }
  .hero-intro { margin-top: 24px; }
  .desktop-break { display: none; }
  .hero-scribble { margin-inline: auto; transform: translateX(38px) rotate(-2deg); }
  .store-row { justify-content: center; }
  .hero-visual { min-height: 405px; width: min(100%, 540px); margin-inline: auto; }
  .photo-frame { top: 38px; right: 1%; width: 76%; border-width: 6px; border-radius: 25px; }
  .phone { border-width: 5px; padding: 6px 4px 4px; }
  .phone-hero { width: 42%; left: 4%; }
  .settled-card { right: 1%; bottom: 25px; }
  .doodle-heart { right: 4%; font-size: 28px; }
  .steps-section { padding: 62px 0 66px; }
  .steps-section h2 { font-size: 42px; }
  .steps { grid-template-columns: 1fr; gap: 37px; margin-top: 42px; }
  .step-connector { display: none; }
  .step-visual { margin-bottom: 14px; }
  .step p { max-width: 280px; }
  .showcase-section { padding: 62px 0 58px; }
  .showcase-grid { min-height: auto; grid-template-columns: 1fr; gap: 31px; text-align: center; }
  .showcase-copy { padding-left: 0; }
  .showcase-copy h2 { font-size: 50px; }
  .showcase-copy > p:last-of-type { margin: 21px auto 0; }
  .showcase-scribble { margin-inline: auto; transform: translateX(32px) rotate(-2deg); }
  .feature-points { width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .showcase-phones { min-height: 420px; width: min(100%, 520px); margin-inline: auto; }
  .phone-feature { width: 39%; }
  .phone-feature-one { left: 10%; }
  .phone-feature-two { right: 9%; top: 12px; }
  .showcase-arrow { left: 2%; }
  .final-cta { padding: 58px 0 54px; }
}

@media (max-width: 520px) {
  .hero { padding-top: 40px; }
  h1 { font-size: clamp(43px, 12.3vw, 52px); }
  .hero-intro { font-size: 16px; }
  .store-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); width: 100%; gap: 8px; }
  .store-badge { min-width: 0; min-height: 52px; padding: 7px 9px; }
  .store-badge .store-logo { width: 20px; height: 20px; }
  .store-badge .store-logo-app-store { border-radius: 4px; }
  .store-badge small { font-size: 8px; }
  .store-badge strong { font-size: 12px; }
  .hero-visual { min-height: 370px; }
  .photo-frame { width: 78%; }
  .phone-hero { width: 43%; left: 2%; border-radius: 29px; }
  .phone img { border-radius: 23px; }
  .phone::after { border-radius: 24px; }
  .settled-card { padding: 9px 11px; }
  .settled-card strong { font-size: 12px; }
  .settled-card small { font-size: 9px; }
  .steps-section h2, .final-cta h2 { font-size: 40px; }
  .step-icon { width: 78px; height: 78px; }
  .step-visual { width: 82px; }
  .step-icon svg { width: 39px; height: 39px; }
  .showcase-copy h2 { font-size: 45px; }
  .showcase-phones { min-height: 380px; }
  .phone-feature { width: 42%; border-radius: 27px; }
  .phone-feature-one { left: 5%; }
  .phone-feature-two { right: 4%; top: 10px; }
  .showcase-arrow { display: none; }
  .tiny-spark { left: 6%; }
  .footer-inner { flex-wrap: wrap; gap: 7px 15px; }
}

@media (max-width: 350px) {
  .shell { width: calc(100% - 24px); }
  h1 { font-size: 40px; }
  .store-row { grid-template-columns: 1fr; }
  .store-badge { width: min(100%, 210px); margin-inline: auto; }
  .hero-visual { min-height: 340px; }
}

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