@font-face {
  font-family: "Familjen Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/familjen-grotesk-variable.woff2") format("woff2-variations"),
       url("fonts/familjen-grotesk-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Familjen Grotesk";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/familjen-grotesk-italic-variable.woff2") format("woff2-variations"),
       url("fonts/familjen-grotesk-italic-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/schibsted-grotesk-variable.woff2") format("woff2-variations"),
       url("fonts/schibsted-grotesk-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Schibsted Grotesk";
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/schibsted-grotesk-italic-variable.woff2") format("woff2-variations"),
       url("fonts/schibsted-grotesk-italic-variable.woff2") format("woff2");
}

:root {
  --bone: #f4f2ed;
  --bone-deep: #e4dfd5;
  --bone-contrast: #ebe7de;
  --orange: #f5a623;
  --navy: #14263a;
  --deep-ink: #1f2232;
  --navy-soft: #24384f;
  --ink-soft: #4e5b68;
  --mist: #c9d2db;
  --white: #fff;
  --shell: 1280px;
  --pad: clamp(20px, 4vw, 64px);
  --section: clamp(84px, 11vw, 168px);
  --radius-media: 18px;
  --radius-shell: 16px;
  --radius-ui: 12px;
  --font-body: "Schibsted Grotesk", Arial, sans-serif;
  --font-display: "Familjen Grotesk", Arial, sans-serif;
  --title-leading: 1.16;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bone);
  color: var(--navy);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
p, h1, h2, h3, figure { margin: 0; }

.has-reveal-motion .photo-reveal {
  --photo-reveal-delay: 0ms;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 1s cubic-bezier(.19, 1, .22, 1) var(--photo-reveal-delay);
  will-change: clip-path;
}
.has-reveal-motion .photo-reveal.is-revealed {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  will-change: auto;
}
.concept-card:nth-child(2) .photo-reveal { --photo-reveal-delay: 100ms; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  background: var(--white);
  padding: 12px 16px;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
.shell, .shell-wide {
  width: min(100% - (var(--pad) * 2), var(--shell));
  margin-inline: auto;
}
.shell-wide { --shell: 1460px; }
.section {
  padding-block: var(--section);
  background: var(--bone);
}
.section-label,
.card-label,
.concept-status {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.section-label { color: var(--orange); }
.section-head { width: 100%; }
.section-head h2,
.final-cta h2 {
  max-width: 1100px;
  margin-top: calc(var(--pad) / 2);
  font-family: var(--font-display);
  font-size: clamp(42px, 5.7vw, 82px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: var(--title-leading);
}
.section-head h2,
.concept-copy h3,
.weekly-costs-list li { color: var(--deep-ink); }
.section-head h2 em { color: inherit; font-weight: inherit; }
.section-rule {
  width: 100%;
  height: 1px;
  margin-block: var(--pad);
  border: 0;
  background: currentColor;
  opacity: .22;
}
.section-lead {
  max-width: 760px;
  color: currentColor;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  opacity: .78;
}
.section-sublead {
  margin-top: 12px;
  color: currentColor;
  font-size: 15px;
  line-height: 1.55;
  opacity: .68;
}
.section-head + * { margin-top: var(--pad); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--navy);
  background: rgba(244, 242, 237, .94);
  background: color-mix(in srgb, var(--bone) 94%, transparent);
  backdrop-filter: blur(12px);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}
.site-header.is-past-hero {
  background: rgba(235, 231, 222, .96);
  background: color-mix(in srgb, var(--bone-contrast) 96%, transparent);
  box-shadow: none;
}
.site-header.is-nav-hidden {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.header-inner {
  width: min(100% - (var(--pad) * 2), 1460px);
  min-height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  width: 192px;
  min-height: 72px;
  display: flex;
  align-items: center;
  flex: none;
  overflow: visible;
}
.jd-logo {
  --h: 56px;
  --logo-ease: cubic-bezier(.62,.02,.2,1);
  position: relative;
  width: calc(var(--h) * 1.21);
  height: calc(var(--h) * 1.28);
  display: block;
}
.jd-logo__word {
  position: absolute;
  left: 0;
  top: calc(var(--h) * .1);
  width: calc(var(--h) * 3.406);
  height: var(--h);
  max-width: none;
  opacity: 1;
  transform: scale(1);
  transform-origin: calc(var(--h) * .0429) calc(var(--h) * .1714);
  transition: transform 460ms var(--logo-ease) 285ms, opacity 180ms linear 700ms;
  will-change: transform, opacity;
}
.jd-logo__slice {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(var(--h) * 3.406);
  height: var(--h);
  max-width: none;
  will-change: transform, opacity;
}
.jd-logo__j { clip-path: inset(0 85.5% 0 0); }
.jd-logo__etty { clip-path: inset(0 43.4% 0 14.35%); }
.jd-logo__d { clip-path: inset(0 36.45% 0 56.5%); }
.jd-logo__ig { clip-path: inset(0 0 0 63.45%); }
.jd-logo__script { clip-path: inset(0 0 0 51.6%); }
.jd-logo__etty,
.jd-logo__ig { transform-origin: calc(var(--h) * .0429) calc(var(--h) * .575); }
.jd-logo__etty { transition: transform 300ms var(--logo-ease), opacity 260ms linear 38ms; }
.jd-logo__ig { transition: transform 345ms var(--logo-ease) 40ms, opacity 285ms linear 95ms; }
.jd-logo__d { transition: transform 520ms var(--logo-ease) 180ms, opacity 145ms linear 380ms; }
.jd-logo__script,
.jd-logo__mark {
  position: absolute;
  left: calc(var(--h) * -.0258);
  top: calc(var(--h) * -.0004);
  width: auto;
  max-width: none;
  height: calc(var(--h) * 1.0875);
  will-change: transform, opacity;
}
.jd-logo__script {
  opacity: 0;
  transform: translate(calc(var(--h) * .82), calc(var(--h) * .15)) scale(.93);
  transform-origin: calc(var(--h) * .6212) calc(var(--h) * .3937);
  transition: transform 330ms var(--logo-ease) 375ms, opacity 150ms linear 355ms;
}
.jd-logo__mark {
  opacity: 0;
  transform: scale(.972);
  transform-origin: calc(var(--h) * .0687) calc(var(--h) * .2719);
  transition: transform 265ms var(--logo-ease) 685ms, opacity 210ms linear 695ms;
}
.jd-logo[data-state="mark"] .jd-logo__etty { opacity: 0; transform: translateY(calc(var(--h) * -.325)) scale(.58); }
.jd-logo[data-state="mark"] .jd-logo__ig { opacity: 0; transform: translateY(calc(var(--h) * -.403)) scale(.62); }
.jd-logo[data-state="mark"] .jd-logo__d { opacity: 0; transform: translateX(calc(var(--h) * -1.4231)); }
.jd-logo[data-state="mark"] .jd-logo__script { opacity: 1; transform: translate(0, 0) scale(1); }
.jd-logo[data-state="mark"] .jd-logo__word { opacity: 0; transform: scale(1.161); }
.jd-logo[data-state="mark"] .jd-logo__mark { opacity: 1; transform: scale(1); }

/* Reverse the 950ms handoff instead of replaying its forward delays backward. */
.jd-logo[data-motion="expanding"] .jd-logo__word {
  transition: transform 460ms var(--logo-ease) 205ms, opacity 1ms linear;
}
.jd-logo[data-motion="expanding"] .jd-logo__etty {
  transition: transform 300ms var(--logo-ease) 650ms, opacity 260ms linear 652ms;
}
.jd-logo[data-motion="expanding"] .jd-logo__ig {
  transition: transform 345ms var(--logo-ease) 565ms, opacity 285ms linear 570ms;
}
.jd-logo[data-motion="expanding"] .jd-logo__d {
  transition: transform 520ms var(--logo-ease) 250ms, opacity 145ms linear 425ms;
}
.jd-logo[data-motion="expanding"] .jd-logo__script {
  transition: transform 330ms var(--logo-ease) 245ms, opacity 150ms linear 445ms;
}
.jd-logo[data-motion="expanding"] .jd-logo__mark {
  transition: transform 265ms var(--logo-ease), opacity 1ms linear;
}
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 36px); font-size: 15px; font-weight: 600; }
.primary-nav > a {
  --nav-wave-delay: 0ms;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 460ms ease var(--nav-wave-delay), transform 620ms cubic-bezier(.4,0,.2,1) var(--nav-wave-delay), border-color 180ms ease;
}
.primary-nav > a:nth-child(6) { --nav-wave-delay: 0ms; }
.primary-nav > a:nth-child(5) { --nav-wave-delay: 70ms; }
.primary-nav > a:nth-child(4) { --nav-wave-delay: 140ms; }
.primary-nav > a:nth-child(3) { --nav-wave-delay: 210ms; }
.primary-nav > a:nth-child(2) { --nav-wave-delay: 280ms; }
.primary-nav > a:nth-child(1) { --nav-wave-delay: 350ms; }
.primary-nav > a:not(.nav-cta):not(.nav-login) { padding-block: 14px; border-bottom: 2px solid transparent; }
.primary-nav > a:not(.nav-cta):not(.nav-login):hover { border-bottom-color: var(--orange); }
.nav-cta, .nav-login, .button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}
.nav-cta { color: var(--navy); background: var(--orange); border-color: var(--orange); }
.nav-login { color: var(--navy); background: transparent; border-color: var(--navy); }
.menu-toggle { display: none; }

@media (min-width: 981px) {
  .site-header.is-nav-hidden .primary-nav { pointer-events: none; }
  .site-header.is-nav-hidden .primary-nav > a {
    opacity: 0;
    transform: translateY(-44px);
  }
}

.hero {
  position: relative;
  isolation: isolate;
  height: calc(100svh - 88px);
  min-height: 680px;
  padding: 0 12px 12px;
  background: var(--bone);
}
.hero-stage {
  position: relative;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}
.hero-copy {
  --hero-copy-color: var(--bone);
  --hero-accent-color: var(--bone);
  position: absolute;
  z-index: 4;
  inset: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--hero-copy-color);
  pointer-events: none;
}
.hero-lower {
  margin-top: auto;
  padding-bottom: clamp(28px, 3.8vw, 58px);
}
.hero h1 {
  max-width: 1180px;
  font-family: var(--font-display);
  font-size: clamp(58px, 7.7vw, 116px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.18;
  text-wrap: balance;
}
.hero h1 em { color: inherit; font-family: inherit; font-weight: inherit; }
.hero-intro {
  width: min(100%, 430px);
  margin: clamp(24px, 2.8vw, 42px) 0 0 clamp(0px, 7vw, 96px);
}
.hero-intro p { font-size: clamp(18px, 1.6vw, 23px); line-height: 1.34; }
.hero-media {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: transparent;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,38,58,.08), rgba(20,38,58,.72));
  opacity: .68;
}
.hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-scroll-cue {
  position: absolute;
  right: 0;
  bottom: clamp(30px, 4vw, 60px);
  font-size: clamp(15.264px, calc(18px - .19vw), 17px);
  font-weight: 700;
  letter-spacing: .09em;
  text-align: right;
  text-transform: uppercase;
}
.hero-side { display: none; }

.has-reveal-motion .hero-media > img,
.has-reveal-motion .hero-side img {
  backface-visibility: hidden;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
}
.has-reveal-motion .hero-media::after {
  animation: hero-overlay-enter 1260ms cubic-bezier(.22, 1, .36, 1) 140ms both;
}
.has-reveal-motion .hero-side-left img {
  animation-name: hero-image-enter-down;
  animation-duration: 1050ms;
  animation-delay: 60ms;
}
.has-reveal-motion .hero-media > img {
  animation-name: hero-image-enter-down;
  animation-duration: 1260ms;
  animation-delay: 140ms;
}
.has-reveal-motion .hero-side-right img {
  animation-name: hero-image-enter-up;
  animation-duration: 1120ms;
  animation-delay: 240ms;
}

@keyframes hero-image-enter-down {
  from { opacity: 0; transform: translate3d(0, -105%, 0) scale(1.02); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes hero-image-enter-up {
  from { opacity: 0; transform: translate3d(0, 105%, 0) scale(1.02); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes hero-overlay-enter {
  from { opacity: 0; }
  to { opacity: var(--hero-overlay-opacity, .68); }
}

@media (min-width: 721px) {
  .hero-scroll-active .hero {
    height: 200svh;
    min-height: 1360px;
    padding: 0;
  }
  .hero-scroll-active .hero-stage {
    position: sticky;
    top: 88px;
    height: calc(100svh - 88px);
    min-height: 680px;
  }
  .hero-scroll-active .hero-media {
    clip-path: inset(0 var(--hero-inset-x, 24vw) var(--hero-inset-bottom, 42%) round var(--radius-media));
    will-change: clip-path;
  }
  .hero-scroll-active .hero-media::after { opacity: var(--hero-overlay-opacity, .12); }
  .hero-scroll-active .hero-copy {
    --hero-copy-color: rgb(var(--hero-copy-rgb, 20 38 58));
    --hero-accent-color: rgb(var(--hero-accent-rgb, 245 166 35));
  }
  .hero-scroll-active .hero-side {
    position: absolute;
    z-index: 2;
    display: block;
    width: clamp(180px, 18vw, 290px);
    overflow: hidden;
    border-radius: var(--radius-shell);
    opacity: var(--hero-side-opacity, 1);
    will-change: transform, opacity;
  }
  .hero-scroll-active .hero-side img { width: 100%; height: 100%; object-fit: cover; }
  .hero-scroll-active .hero-side-left img { object-position: 36% center; }
  .hero-scroll-active .hero-side-right img { object-position: 66% center; }
  .hero-scroll-active .hero-side-left {
    left: 0;
    top: 9%;
    aspect-ratio: 1.42;
    transform: translateX(var(--hero-side-left, 0%));
  }
  .hero-scroll-active .hero-side-right {
    right: 0;
    bottom: 18%;
    aspect-ratio: .82;
    transform: translateX(var(--hero-side-right, 0%));
  }
  .hero-scroll-active .hero-scroll-cue { opacity: 1; }
}

.weekly-costs {
  padding-bottom: calc(var(--section) * .55);
  background: var(--bone);
}
.weekly-costs-body {
  display: grid;
  grid-template-columns: minmax(240px, .58fr) minmax(0, 1.42fr);
  gap: clamp(62px, 9vw, 142px);
  align-items: end;
}
.weekly-costs-mark { display: none; }
.weekly-costs-list {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--navy);
  list-style: none;
}
.weekly-costs-list li {
  padding: clamp(28px, 3.4vw, 46px) 0;
  border-top: 1px solid var(--navy);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 620;
  letter-spacing: -.035em;
  line-height: 1.24;
}

.weekly-costs-list li:first-child {
  border-top: 0;
}

@media (min-width: 1180px) {
  .weekly-costs-mark {
    display: block;
    width: min(124%, 400px);
    aspect-ratio: 420 / 380;
    align-self: center;
    background: var(--bone-deep);
    pointer-events: none;
    -webkit-mask: url("logo-refinement/jd.svg") center / contain no-repeat;
    mask: url("logo-refinement/jd.svg") center / contain no-repeat;
  }
}
.weekly-costs-bridge {
  max-width: 720px;
  margin-top: clamp(42px, 5vw, 68px);
  font-size: clamp(24px, 2.35vw, 35px);
  font-weight: 620;
  letter-spacing: -.025em;
  line-height: 1.3;
}
.weekly-costs-bridge em {
  color: inherit;
  font-size: 1.06em;
  font-weight: inherit;
  white-space: nowrap;
}

.what-you-get {
  scroll-margin-top: 110px;
  padding-block: calc(var(--section) * .55);
  background: var(--bone);
}
.what-you-get-panel {
  padding: clamp(28px, 5vw, 64px);
  color: var(--bone);
  background: var(--navy);
  border-radius: clamp(20px, 3vw, 32px);
}
.what-you-get-panel .section-head h2 { color: var(--bone); }
.what-you-get-body {
  display: grid;
  grid-template-columns: minmax(250px, .62fr) minmax(0, 1.38fr);
  gap: clamp(68px, 10vw, 150px);
  align-items: start;
}
.what-you-get-actions { margin-top: 0; }
.what-you-get-actions .button { margin-top: 0; }
.what-you-get-actions > p {
  max-width: 430px;
  margin-top: 22px;
  color: var(--mist);
  font-size: 15px;
  line-height: 1.55;
}
.what-you-get-actions > p span { color: var(--orange); font-weight: 700; }
.what-you-get-list { border-bottom: 1px solid var(--navy-soft); }
.what-you-get-item {
  display: grid;
  grid-template-columns: minmax(210px, .82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: baseline;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-top: 1px solid var(--navy-soft);
}
.what-you-get-item h3 {
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 650;
  letter-spacing: -.03em;
  line-height: var(--title-leading);
}
.what-you-get-item-featured h3 { color: var(--orange); }
.what-you-get-item p { color: var(--mist); font-size: 17.5px; line-height: 1.55; }

.statement {
  position: relative;
  min-height: max(720px, 85vh);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--bone);
  background: var(--bone);
}
.statement-image { position: absolute; z-index: -2; inset: 0; }
.statement-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; filter: saturate(.72) contrast(1.06); }
.statement::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(20,38,58,.94) 0%, rgba(20,38,58,.65) 55%, rgba(20,38,58,.18) 100%); }
.statement .section-label { color: var(--orange); }
.statement .section-head h2 { color: var(--bone); }
.statement .section-lead { max-width: 540px; }

.concepts { padding-top: calc(var(--section) * .55); }
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 60px); }
.concept-card { overflow: hidden; border: 1px solid var(--navy); background: var(--bone); }
.concept-status { display: flex; justify-content: space-between; gap: 18px; padding: 14px 18px; border-bottom: 1px solid var(--navy); }
.concept-status span:first-child { color: #9a5c00; }
.concept-visual { position: relative; height: clamp(430px, 50vw, 680px); overflow: hidden; background: var(--bone); }
.concept-visual > img { width: 100%; height: 100%; object-fit: cover; }
.concept-card-web .concept-visual > img { object-position: center 76%; }
.concept-card-text .concept-visual > img { object-position: center; filter: contrast(1.04); }
.concept-copy { padding: clamp(24px, 3vw, 42px); border-top: 1px solid var(--navy); }
.concept-copy h3 { margin-top: 18px; font-size: clamp(28px, 3vw, 40px); font-weight: 650; letter-spacing: -.04em; line-height: var(--title-leading); }
.concept-copy > p:last-child { margin-top: 22px; color: var(--ink-soft); font-size: 17px; line-height: 1.55; }
.browser-frame {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: -2%;
  color: var(--bone);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius-ui);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(20,38,58,.38);
}
.browser-top { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--navy-soft); font-size: 11px; }
.browser-top i { width: 7px; height: 7px; border: 1px solid var(--orange); border-radius: 50%; }
.browser-top span { margin-left: 8px; color: var(--mist); }
.browser-page { min-height: 270px; padding: clamp(28px, 5vw, 60px); background: linear-gradient(140deg, var(--navy) 60%, var(--navy-soft)); }
.browser-brand { color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.browser-page p { width: 85%; margin-top: 60px; font-size: clamp(29px, 3.5vw, 48px); font-weight: 680; letter-spacing: -.04em; line-height: var(--title-leading); }
.browser-page > span { display: inline-block; margin-top: 30px; padding: 12px 16px; color: var(--navy); background: var(--orange); font-weight: 700; }
.phone-frame { position: absolute; width: min(64%, 320px); right: 6%; bottom: 0; padding: 32px 14px 24px; background: #f7f7f5; border: 7px solid var(--navy); border-bottom: 0; border-radius: 36px 36px 0 0; box-shadow: 0 30px 80px rgba(20,38,58,.34); }
.phone-speaker { position: absolute; top: 13px; left: 50%; width: 56px; height: 5px; transform: translateX(-50%); border-radius: 10px; background: #aab0b5; }
.phone-contact { margin-bottom: 14px; text-align: center; font-size: 12px; font-weight: 700; }
.message { width: 90%; margin-top: 7px; padding: 9px 10px; border-radius: var(--radius-ui); font-size: 11px; line-height: 1.3; }
.message-in { background: #e3e5e6; }
.message-out { margin-left: auto; color: var(--bone); background: var(--navy); }
.has-reveal-motion .concept-card-text .message {
  --message-entry-x: 18px;
  --message-delay: 360ms;
  opacity: 0;
  transform: translate3d(var(--message-entry-x), 8px, 0);
  transition: opacity 380ms ease var(--message-delay), transform 560ms cubic-bezier(.19, 1, .22, 1) var(--message-delay);
}
.has-reveal-motion .concept-card-text .message-in { --message-entry-x: -18px; }
.has-reveal-motion .concept-card-text .message:nth-child(4) { --message-delay: 500ms; }
.has-reveal-motion .concept-card-text .message:nth-child(5) { --message-delay: 640ms; }
.has-reveal-motion .concept-card-text .message:nth-child(6) { --message-delay: 780ms; }
.has-reveal-motion .concept-card-text .message:nth-child(7) { --message-delay: 920ms; }
.has-reveal-motion .concept-card-text .photo-reveal.is-revealed .message {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.founder { color: var(--navy); background: var(--bone); }
.founder-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(54px, 10vw, 150px); align-items: center; }
.founder-media { position: relative; }
.founder-media::before { content: ""; position: absolute; top: -18px; right: -18px; bottom: 68px; left: 18px; border: 1px solid var(--orange); }
.founder-media img { position: relative; width: 100%; height: auto; aspect-ratio: 3 / 4; border-radius: var(--radius-media); object-fit: cover; filter: saturate(.84); }
.founder-media > p { position: relative; display: flex; justify-content: space-between; gap: 18px; padding-top: 18px; color: var(--ink-soft); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.founder-copy > p { margin-top: 28px; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.founder-copy > p:first-child { margin-top: 0; }
.button-radial {
  --fill-x: 50%;
  --fill-y: 50%;
  --fill-radius: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.button-outline {
  margin-top: 38px;
  color: var(--navy);
  background: transparent;
  border-color: var(--orange);
}
.what-you-get .button-outline { color: var(--bone); }
.button-radial::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  clip-path: circle(0 at var(--fill-x) var(--fill-y));
  pointer-events: none;
  transition: clip-path 420ms cubic-bezier(.2, 0, 0, 1);
}
.button-outline::before { background: var(--orange); }
.nav-cta::before { background: var(--bone); }
.nav-login::before { background: var(--orange); }
.button-radial .button__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.button-outline.is-fill-active,
.button-dark.is-fill-active { color: var(--navy); }
.nav-login.is-fill-active { color: var(--navy); border-color: var(--orange); }
.button-radial.is-fill-active::before {
  clip-path: circle(var(--fill-radius) at var(--fill-x) var(--fill-y));
  transition-duration: 540ms;
}

.faq { color: var(--bone); background: var(--deep-ink); }
.faq .section-head h2 { color: var(--bone); }
.faq-item { border-top: 1px solid color-mix(in srgb, var(--bone) 30%, transparent); }
.faq-item:first-child { border-top: 0; }
.faq-item:last-child { border-bottom: 1px solid color-mix(in srgb, var(--bone) 30%, transparent); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; color: inherit; background: none; border: 0; text-align: left; cursor: pointer; }
.faq-item button span { font-size: clamp(21px, 2vw, 30px); font-weight: 620; letter-spacing: -.02em; line-height: var(--title-leading); transition: color 220ms ease; }
.faq-item button:hover span,
.faq-item button:focus-visible span,
.faq-item button[aria-expanded="true"] span { color: var(--orange); }
.faq-item button i { position: relative; width: 28px; height: 28px; flex: none; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background: var(--bone); transition: background-color 180ms ease, transform 180ms ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item button:hover i::before,
.faq-item button:hover i::after,
.faq-item button[aria-expanded="true"] i::before,
.faq-item button[aria-expanded="true"] i::after { background: var(--orange); }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-panel {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows 560ms cubic-bezier(.4, 0, .2, 1), opacity 320ms ease;
}
.faq-panel[hidden] {
  display: grid !important;
  grid-template-rows: 0fr;
  opacity: 0;
}
.faq-panel p { min-height: 0; overflow: hidden; padding: 0 72px 32px 0; color: var(--bone); font-size: 17px; line-height: 1.65; opacity: .78; transition: padding-bottom 560ms cubic-bezier(.4, 0, .2, 1); }
.faq-panel[hidden] p { padding-bottom: 0; }

.final-cta { background: var(--deep-ink); }
.final-cta-panel {
  position: relative;
  height: clamp(280px, 40vh, 520px);
  isolation: isolate;
  overflow: hidden;
  color: var(--bone);
  border-radius: var(--radius-media);
}
.final-cta-panel::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(20,38,58,.72);
}
.final-cta-panel > img { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.final-cta-inner { position: relative; z-index: 2; height: 100%; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; padding: clamp(28px, 5vw, 64px); }
.final-cta h2 { max-width: 820px; margin-top: 0; color: var(--bone); }
.final-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.button-dark { min-width: 210px; color: var(--deep-ink); background: transparent; border-color: var(--orange); }
.button-dark::before {
  background: var(--orange);
  clip-path: circle(150% at 50% 50%);
}
.button-dark.is-fill-active { color: var(--bone); }
.button-dark.is-fill-active::before { clip-path: circle(0 at var(--fill-x) var(--fill-y)); }
.final-cta-contact { display: flex; flex-direction: column; align-items: center; gap: 5px; line-height: 1.2; }
.final-cta-contact > span:first-child { font-size: 14px; }
.final-cta-phone { font-weight: 650; letter-spacing: .045em; }

.site-footer { padding: 80px 0 24px; color: var(--bone); background: var(--deep-ink); }
.footer-top { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--pad); padding-bottom: 54px; border-bottom: 1px solid color-mix(in srgb, var(--bone) 30%, transparent); }
.footer-brand-group { display: flex; max-width: 410px; flex-direction: column; align-items: flex-start; gap: 24px; }
.footer-brand { width: min(36vw, 280px); }
.footer-brand img { width: 100%; height: auto; }
.footer-summary { display: flex; max-width: 410px; flex-direction: column; align-items: flex-start; gap: 10px; font-family: var(--font-body); font-weight: 400; text-align: left; }
.footer-summary > p:first-child { margin-bottom: 6px; font-size: 19px; line-height: 1.45; }
.footer-australian { display: flex; align-items: center; gap: 12px; color: var(--bone); font-family: var(--font-body); font-size: 15.5px; font-weight: 400; line-height: 1.45; }
.footer-australian img { display: block; width: 44px; height: 22px; flex: none; }
.footer-location { color: var(--bone); font-size: 15.5px; font-weight: 400; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; padding-block: 54px; }
.footer-links > div { display: flex; flex-direction: column; gap: 12px; }
.footer-links p { margin-bottom: 10px; color: var(--bone); font-size: clamp(14px, 1.2vw, 16px); font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { width: fit-content; }
.footer-links a:hover, .footer-bottom a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid color-mix(in srgb, var(--bone) 30%, transparent); font-size: 13px; }
.footer-bottom div { display: flex; gap: 24px; }

@media (max-width: 980px) {
  .header-inner { min-height: 76px; }
  .hero-scroll-active .hero-stage { top: 76px; height: calc(100svh - 76px); }
  .menu-toggle { position: relative; z-index: 3; display: flex; min-width: 82px; min-height: 46px; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 10px; color: var(--navy); background: transparent; border: 1px solid var(--navy); cursor: pointer; transition: opacity 180ms ease, transform 220ms cubic-bezier(.2,0,0,1), visibility 180ms; }
  .site-header.is-nav-hidden .menu-toggle { opacity: 0; transform: translateY(-10px); visibility: hidden; pointer-events: none; }
  .menu-toggle-icon { position: relative; width: 18px; height: 14px; }
  .menu-toggle-icon i { position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; transition: transform 180ms ease, top 180ms ease; }
  .menu-toggle-icon i:first-child { top: 2px; }
  .menu-toggle-icon i:last-child { top: 10px; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child { top: 6px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child { top: 6px; transform: rotate(-45deg); }
  .primary-nav { position: fixed; inset: auto 0 auto 0; top: 76px; width: auto; height: calc(100dvh - 76px); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 36px var(--pad); overflow-y: auto; color: var(--bone); background: var(--navy); transform: translateY(-115%); visibility: hidden; transition: transform 260ms cubic-bezier(.2,0,0,1), visibility 260ms; }
  .primary-nav.is-open { transform: translateY(0); visibility: visible; }
  .primary-nav > a:not(.nav-cta):not(.nav-login) { display: flex; min-height: 66px; align-items: center; border-bottom: 1px solid var(--navy-soft); font-size: 24px; }
  .primary-nav .nav-login { margin-top: 32px; color: var(--bone); border-color: var(--bone); }
  .primary-nav .nav-cta { margin-top: 12px; color: var(--navy); }

  .hero h1 { line-height: var(--title-leading); }
  .weekly-costs-body { grid-template-columns: 1fr; }
  .what-you-get-body { grid-template-columns: 1fr; gap: var(--pad); }
  .founder-grid { grid-template-columns: .8fr 1.2fr; gap: 60px; }
}

@media (max-width: 720px) {
  :root { --pad: 20px; --section: 88px; }
  .shell-wide { width: 100%; }
  .brand { width: 162px; min-height: 60px; }
  .jd-logo { --h: 47px; }
  .hero { height: calc(100svh - 76px); min-height: 680px; padding: 0 6px 6px; }
  .hero-stage { min-height: 674px; }
  .hero-copy { width: calc(100% - 40px); }
  .hero-lower { padding-bottom: 30px; }
  .hero h1 { font-size: clamp(47px, 13vw, 58px); letter-spacing: -.05em; line-height: var(--title-leading); }
  .hero h1 br { display: none; }
  .hero-intro { margin: 26px 0 0; padding: 0 0 52px; }
  .hero-intro p { font-size: 18px; }
  .hero-media > img { object-position: 57% center; }
  .hero-scroll-cue { right: 0; bottom: 32px; }
  .section-head h2,
  .final-cta h2 { font-size: clamp(43px, 13vw, 58px); }
  .weekly-costs-body { gap: 0; }
  .weekly-costs-list li { padding-block: 26px; font-size: clamp(27px, 8vw, 34px); }
  .weekly-costs-bridge { margin-top: 40px; font-size: 26px; line-height: 1.38; }
  .what-you-get-item { grid-template-columns: 1fr; gap: 14px; padding-block: 28px; }
  .what-you-get-item h3 { font-size: clamp(27px, 8vw, 34px); }
  .what-you-get-item p { font-size: 16.5px; }
  .statement { min-height: 780px; align-items: end; }
  .statement::before { background: linear-gradient(180deg, rgba(20,38,58,.18), rgba(20,38,58,.94) 68%); }
  .statement-image img { object-position: 49% center; }
  .concept-grid { grid-template-columns: 1fr; }
  .concept-visual { height: 540px; }
  .concept-status { font-size: 9px; }
  .phone-frame { width: min(78%, 280px); right: 4%; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-media { max-width: 540px; }
  .founder-copy { padding-top: 10px; }
  .faq-item button { min-height: 94px; }
  .faq-panel p { padding-right: 20px; }
  .final-cta-panel { height: clamp(520px, 85vh, 680px); }
  .final-cta-panel > img { object-position: 57% center; }
  .final-cta-inner { grid-template-columns: 1fr; align-content: space-between; align-items: start; }
  .final-cta-actions { align-items: stretch; }
  .footer-brand { width: 180px; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-brand-group,
  .footer-summary { max-width: 360px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .jd-logo__word,
  .jd-logo__slice,
  .jd-logo__script,
  .jd-logo__mark { transition-delay: 0ms !important; }
  .has-reveal-motion .photo-reveal { clip-path: none; transition: none; }
  .has-reveal-motion .hero-media > img,
  .has-reveal-motion .hero-side img { animation: none; opacity: 1; transform: none; }
  .has-reveal-motion .hero-media::after { animation: none; }
  .has-reveal-motion .concept-card-text .message { opacity: 1; transform: none; transition: none; }
  .primary-nav > a { transition-delay: 0ms !important; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
