/* Fruiti — Home (matches supplied design reference) */

:root {
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --orange: #f97316;
  --navy: #0f172a;
  --grey-text: #475569;
  --grey-muted: #64748b;
  --surface-grey: #f1f5f9;
  --white: #ffffff;
  /* Base hero / area under goo (matches blue container, not white) */
  --hero-bg: #050a30;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  /* Bolder stroke than thin calligraphy fonts — stays readable on hero blue */
  --font-script: "Pacifico", "Segoe Script", "Apple Chancery", cursive;
  --container: min(1160px, calc(100% - clamp(1.25rem, 5vw, 3rem)));
  --gutter: clamp(1rem, 4vw, 3rem);
  /* Extra left inset — moves headline / sub / badges right */
  --hero-copy-pad-left-extra: 80pt;
  /* App chrome accents (toggle focus, badges). Drawer uses --site-nav-* below. */
  --app-purple: rgb(151, 118, 202);
  --app-purple-soft: rgba(151, 118, 202, 0.14);
  /*
   * Toggle anchor is px + safe-area only — no vw/clamp rem drift (product: control must not move
   * when the viewport resizes). Retune these literals if art changes; keep drawer vars in sync.
   */
  --nav-toggle-top: calc(36px + env(safe-area-inset-top, 0px));
  /* 44px × 0.8 — 20% smaller control */
  --nav-toggle-size: calc(44px * 0.8);
  /* Same literal inset as former right anchor — px + safe-area only (no vw). */
  --nav-toggle-left: calc(84px + env(safe-area-inset-left, 0px));
  --nav-toggle-bar-gap: calc(7px * 0.8);
  --nav-toggle-bar-height: calc(3px * 0.8);
  --nav-toggle-bar-width: calc(26px * 0.8);
  /* Distance between adjacent bar centres (matches open-state X translation) */
  --nav-toggle-bar-shift: calc(10px * 0.8);
  /* Chip slab around icon — same rgba/radius language as .hero__title-chip */
  --nav-toggle-chip-pad-x: 9px;
  --nav-toggle-chip-pad-y: 7px;
  --nav-toggle-outer-width: calc(var(--nav-toggle-size) + 2 * var(--nav-toggle-chip-pad-x));
  --nav-toggle-outer-height: calc(var(--nav-toggle-size) + 2 * var(--nav-toggle-chip-pad-y));
  /* Logo row overlay height — used for hero top padding so copy clears the nav */
  --header-bar-height: calc(1.35rem + 0.85rem + var(--nav-toggle-outer-height));
  /* Drawer: 40% zoom-out vs prior art → scale 0.6; blue matches hero/marketing (exception to app purple-primary). */
  --site-nav-scale: 0.6;
  --site-nav-accent: var(--blue);
  --site-nav-accent-soft: rgba(37, 99, 235, 0.14);
  --site-nav-accent-icon-bg: rgba(37, 99, 235, 0.22);
  /* Sampled from perimeter pixels of assets/about-australia-melbourne-map.png */
  --about-origin-map-matte: #efeff6;
}

/* Home hero desktop inset — tier down on phones so copy clears toggle without crowding */
@media (max-width: 1024px) {
  :root {
    --hero-copy-pad-left-extra: min(28pt, 10vw);
  }
}

@media (max-width: 480px) {
  :root {
    --hero-copy-pad-left-extra: 0px;
    --nav-toggle-left: calc(12px + env(safe-area-inset-left, 0px));
  }
}

@media (max-width: 380px) {
  :root {
    --nav-toggle-left: calc(8px + env(safe-area-inset-left, 0px));
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  min-height: 100%;
}

@supports (min-height: 100dvh) {
  html {
    min-height: 100dvh;
  }
}

@supports (overflow: clip) {
  html {
    overflow-x: clip;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
  background: var(--surface-grey);
  overflow-x: hidden;
}

/* Tap targets: reduce double-tap zoom delay on in-browser Chrome/Android + iOS Safari */
.nav-toggle,
.site-nav__link,
.store-badge,
.contact-hub-card__callback,
.contact-form-card__submit,
.legal-doc-card__toggle {
  touch-action: manipulation;
}

@supports (overflow: clip) {
  body {
    overflow-x: clip;
  }
}

main {
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Header ——— */

/* Floats over hero + goo — no white strip; keeps menu tappable */
.site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  background: transparent;
  overflow: visible;
}

.site-header__bar {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  /* Horizontal padding removed — responsive --gutter was shifting the menu on resize */
  padding: 1.35rem 0 0.85rem;
  min-height: calc(1.35rem + var(--nav-toggle-outer-height) + 0.85rem);
  background: transparent;
  /* Toggle is a fixed body child; bar only reserves hero top space — don’t steal taps */
  pointer-events: none;
}

/*
 * Viewport-fixed chrome: position comes from --nav-toggle-* (px + safe-area; see :root).
 */
.nav-toggle {
  position: fixed;
  top: var(--nav-toggle-top);
  left: var(--nav-toggle-left);
  right: auto;
  /* Above .site-nav backdrop/panel so it stays tappable when the menu is open */
  z-index: 120;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--nav-toggle-bar-gap);
  width: var(--nav-toggle-outer-width);
  height: var(--nav-toggle-outer-height);
  padding: var(--nav-toggle-chip-pad-y) var(--nav-toggle-chip-pad-x);
  border: 0;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 1px 14px rgba(5, 10, 48, 0.45);
  cursor: pointer;
  pointer-events: auto;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--app-purple);
  outline-offset: 3px;
}

.nav-toggle__bar {
  display: block;
  height: var(--nav-toggle-bar-height);
  width: var(--nav-toggle-bar-width);
  border-radius: 2px;
  background: var(--white);
  transform-origin: center;
  transition:
    transform 0.22s ease,
    opacity 0.18s ease;
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle__bar {
    transition: none;
  }
}

.nav-toggle--open .nav-toggle__bar:nth-child(1) {
  transform: translateY(var(--nav-toggle-bar-shift)) rotate(45deg);
}

.nav-toggle--open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle--open .nav-toggle__bar:nth-child(3) {
  transform: translateY(calc(-1 * var(--nav-toggle-bar-shift))) rotate(-45deg);
}

/* ——— Site nav drawer (hamburger) ——— */

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
}

.site-nav:not([hidden]) {
  pointer-events: auto;
}

.site-nav__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(15, 23, 42, 0.38);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.site-nav__panel {
  position: absolute;
  top: calc(var(--nav-toggle-top) + var(--nav-toggle-outer-height) + 12px);
  left: var(--nav-toggle-left);
  right: auto;
  z-index: 1;
  width: min(
    280px,
    calc(100% - var(--nav-toggle-left) - max(16px, env(safe-area-inset-right, 0px)))
  );
  background: var(--white);
  border-radius: 14px;
  box-shadow:
    0 22px 44px -16px rgba(15, 23, 42, 0.28),
    0 10px 20px -12px rgba(15, 23, 42, 0.14);
  transform-origin: top left;
  animation: site-nav-panel-in 0.22s ease-out both;
}

@keyframes site-nav-panel-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(calc(0.98 * var(--site-nav-scale)));
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(var(--site-nav-scale));
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav__panel {
    animation: none;
    transform: translateY(0) scale(var(--site-nav-scale));
  }
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.65rem;
}

.site-nav__item {
  margin: 0;
}

.site-nav__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.78rem 0.85rem;
  margin-bottom: 2px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #64748b;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.site-nav__link:last-child {
  margin-bottom: 0;
}

.site-nav__icon-wrap {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.12);
  color: #94a3b8;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.site-nav__icon-wrap svg {
  width: 22px;
  height: 22px;
}

.site-nav__link:hover {
  color: #475569;
  background: rgba(148, 163, 184, 0.08);
}

.site-nav__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--site-nav-accent);
}

.site-nav__link--current {
  color: var(--site-nav-accent);
  background: var(--site-nav-accent-soft);
}

.site-nav__link--current .site-nav__icon-wrap {
  background: var(--site-nav-accent-icon-bg);
  color: var(--site-nav-accent);
}

/* ——— Simple inner pages ——— */

.subpage {
  padding: calc(var(--nav-toggle-top) + var(--nav-toggle-outer-height) + 1.75rem) max(var(--gutter), env(safe-area-inset-right, 0px))
    max(clamp(2.5rem, 6vw, 4rem), env(safe-area-inset-bottom, 0px)) max(var(--gutter), env(safe-area-inset-left, 0px));
  background: var(--surface-grey);
  min-height: min(100vh, 100dvh);
}

.subpage__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.subpage__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.subpage__lede {
  margin: 0;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--grey-text);
}

/* ——— Hero ——— */

.hero {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
  min-height: clamp(320px, 65vh, 560px);
  /* Nav is overlaid (no header band); pad below logo row + goo drips */
  padding-top: calc(var(--header-bar-height) + clamp(4rem, 10vw, 9rem));
  padding-bottom: max(clamp(4rem, 10vw, 7rem), env(safe-area-inset-bottom, 0px));
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  padding-left: max(0.75rem, calc(max(var(--gutter), env(safe-area-inset-left, 0px)) + var(--hero-copy-pad-left-extra)));
  /* Fallback if .hero__bg SVG fails to load */
  background-color: var(--hero-bg);
}

/* White goo: no fill behind the img — ~70% of the PNG is transparent; a blue background
   there painted above the hero and looked like a solid block over the copy. */
.hero__goo {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  pointer-events: none;
  line-height: 0;
}

.hero__goo-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--hero-bg);
  background-image: url("../assets/hero-gradient-waves.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero__inner {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  width: 100%;
  max-width: min(34rem, 100%);
  margin-left: 0;
  margin-right: auto;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  /* One scale for both headline lines (matches former lead line) */
  font-size: clamp(0.78rem, 2.65vw + 0.5rem, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 1px 20px rgba(5, 10, 48, 0.55), 0 1px 3px rgba(5, 10, 48, 0.35);
  -webkit-font-smoothing: antialiased;
}

/* First sentence stays on one line; font scales down on narrow viewports */
.hero__title-line {
  display: block;
}

.hero__title-line--lead {
  white-space: nowrap;
}

@media (max-width: 360px) {
  .hero__title-line--lead {
    white-space: normal;
  }
}

.hero__title-line:not(.hero__title-line--lead) {
  margin-top: 0.32rem;
}

/* Boxed headline slabs — shared language with legal/contact chip heroes (index.html, fruiti-plus hero lines) */
.hero__title-chip {
  display: inline-block;
  padding: 0.2em 0.48em 0.26em;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.78);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--white);
  text-shadow: 0 1px 14px rgba(5, 10, 48, 0.5);
}

.hero__title-chip .hero__title-accent--orange {
  color: var(--orange);
  text-shadow: 0 1px 12px rgba(5, 10, 48, 0.42);
}

.hero__title-chip .hero__title-accent--blue {
  text-shadow: 0 1px 12px rgba(5, 10, 48, 0.42);
}

/* Hide line on first paint until letters mount (every load; see hero-later-reveal.js). */
html.hero-later-pending [data-later-line] {
  opacity: 0;
}

.hero__title-line--later-anim .hero__title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.09em);
  animation: heroLaterCharIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--c) * 78ms);
}

@keyframes heroLaterCharIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.hero-later-pending [data-later-line] {
    opacity: 1;
  }

  .hero__title-line--later-anim .hero__title-char {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero__title-accent--orange {
  color: var(--orange);
}

.hero__title-accent--blue {
  color: var(--blue);
}

.hero__sub {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 16px rgba(5, 10, 48, 0.5), 0 1px 2px rgba(5, 10, 48, 0.35);
  -webkit-font-smoothing: antialiased;
}

/* Store badges: equal grid tracks + same img box; Google SVG art reads larger — nth-child(2) scale fudge (vendor asset). */
.hero__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(0.5rem, 2vw, 0.75rem);
  row-gap: 0.85rem;
  width: 100%;
  max-width: min(340px, 100%);
  align-items: center;
}

.store-badge {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  min-width: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.store-badge:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.store-badge:focus-visible {
  outline: 2px solid var(--app-purple);
  outline-offset: 3px;
}

.store-badge__img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Google Play badge artwork fills more of its viewBox than Apple’s — match perceived black-card size */
.hero__badges > .store-badge:nth-child(2) .store-badge__img {
  transform: scale(0.92);
  transform-origin: center center;
}

/* ——— Features card ——— */

.features {
  position: relative;
  z-index: 4;
  padding-inline: max(var(--gutter), env(safe-area-inset-left, 0px)) max(var(--gutter), env(safe-area-inset-right, 0px));
  padding-block: 0;
  margin-top: clamp(-4.25rem, -7vw, -3rem);
}

.features__card {
  width: min(1160px, 100%);
  margin: 0 auto;
  background: var(--white);
  border-radius: clamp(18px, 4vw, 28px);
  box-shadow:
    0 32px 60px -18px rgba(15, 23, 42, 0.22),
    0 12px 24px -14px rgba(15, 23, 42, 0.12);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.features__grid {
  list-style: none;
  margin: 0;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1rem, 2.5vw, 2rem);
  display: grid;
  grid-template-columns: repeat(5, minmax(132px, 1fr));
  gap: clamp(0.5rem, 1.2vw, 1rem);
  align-items: start;
  /* One row; intrinsic width allows horizontal scroll inside .features__card when needed */
  min-width: calc(5 * 132px + 4 * clamp(0.5rem, 1.2vw, 1rem));
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

/* No chip background — blue gradient glyphs + soft shadow only (premium, marketing --blue family) */
.feature__icon {
  width: clamp(44px, 5.5vw, 54px);
  height: clamp(44px, 5.5vw, 54px);
  margin: 0 auto 0.72rem;
  flex-shrink: 0;
  line-height: 0;
}

.feature__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(37, 99, 235, 0.28));
}

.feature__title {
  margin: 0 0 0.35rem;
  font-size: clamp(0.78rem, 1.35vw, 0.98rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--navy);
  text-align: center;
  text-wrap: balance;
}

.feature__text {
  margin: 0;
  font-size: clamp(0.68rem, 1.15vw, 0.82rem);
  line-height: 1.45;
  color: var(--grey-muted);
  text-align: center;
  text-wrap: balance;
}

@supports not (text-wrap: balance) {
  .feature__title,
  .feature__text {
    text-wrap: unset;
  }
}

@media (max-width: 480px) {
  .hero__badges {
    grid-template-columns: 1fr;
    max-width: min(280px, 100%);
  }
}

/* ——— Showcase ——— */

.showcase {
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  padding-bottom: max(clamp(4rem, 10vw, 6rem), env(safe-area-inset-bottom, 0px));
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  background: var(--surface-grey);
}

.showcase__layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.showcase__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.showcase__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.6vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.showcase__title-line {
  display: block;
  color: var(--navy);
}

.showcase__title-line--blue {
  color: var(--blue);
}

.showcase__body {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1rem, 1.35vw, 1.0625rem);
  line-height: 1.65;
  color: var(--grey-text);
}

.showcase__visual {
  display: flex;
  justify-content: center;
}

/* Light tray — clips fan so devices stay inside rounded rect (no overlap below). */
.showcase__phones-panel {
  width: min(100%, 520px);
  margin: 0;
  padding: clamp(1.25rem, 3vw, 1.85rem) clamp(1rem, 2.5vw, 1.5rem);
  background: #e8ecf2;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 22px 44px rgba(15, 23, 42, 0.1),
    0 8px 16px rgba(15, 23, 42, 0.06);
}

/*
 * Fan inside panel: taller arena + slightly smaller handsets so rotated corners don’t escape.
 */
.showcase__phones {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.14;
  min-height: clamp(252px, 54vw, 340px);
}

/* Outer shell: positioning + handset proportions (Pro-tier aspect) */
.showcase__phone {
  position: absolute;
  width: 36%;
  aspect-ratio: 9 / 19.5;
  display: flex;
  flex-direction: column;
  z-index: 1;
  filter: drop-shadow(0 16px 26px rgba(15, 23, 42, 0.2))
    drop-shadow(0 4px 10px rgba(15, 23, 42, 0.12));
}

/*
 * iPhone 15 Pro–style mockup: thin uniform bezel, natural titanium rail,
 * Home indicator over the screenshot; titanium rail + thin bezel read as Pro hardware.
 */
.showcase__phone-device {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 0;
  border-radius: clamp(17px, 4.8vw, 26px);
  padding: clamp(3px, 0.75vw, 4.5px);
  background: linear-gradient(
    138deg,
    #e8e4dc 0%,
    #c9c4bb 14%,
    #a9a49b 32%,
    #8a8580 52%,
    #6f6a65 72%,
    #5c5854 88%,
    #4a4744 100%
  );
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 -1px 2px rgba(0, 0, 0, 0.18),
    inset 1px 0 0 rgba(255, 255, 255, 0.12),
    inset -1px 0 0 rgba(0, 0, 0, 0.08),
    0 0 0 0.5px rgba(0, 0, 0, 0.28),
    0 1px 3px rgba(255, 255, 255, 0.25) inset;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.showcase__phone-rail {
  position: absolute;
  z-index: 2;
  background: linear-gradient(180deg, #8f8b85 0%, #6e6a65 45%, #575450 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 0 1px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.showcase__phone-rail--vol-up {
  left: -1px;
  top: 19%;
  width: 3px;
  height: 11%;
  border-radius: 2px 0 0 2px;
}

.showcase__phone-rail--vol-down {
  left: -1px;
  top: calc(19% + 11% + 5px);
  width: 3px;
  height: 11%;
  border-radius: 2px 0 0 2px;
}

.showcase__phone-rail--power {
  right: -1px;
  top: 17%;
  width: 3px;
  height: 14%;
  border-radius: 0 2px 2px 0;
}

.showcase__phone-screen {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 0;
  border-radius: clamp(14px, 4vw, 22px);
  overflow: hidden;
  background: #000;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 20px rgba(0, 0, 0, 0.35);
}

.showcase__phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Centre + right handsets: zoom screenshots out ~2% within the glass */
.showcase__phone--center .showcase__phone-img,
.showcase__phone--right .showcase__phone-img {
  transform: scale(0.98);
  transform-origin: center center;
}

.showcase__phone-home-indicator {
  position: absolute;
  bottom: clamp(6px, 1.6vw, 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 4px;
  max-width: 96px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  z-index: 3;
  pointer-events: none;
}

.showcase__phone--left {
  left: 8%;
  top: 18%;
  transform: rotate(-11deg);
}

.showcase__phone--right {
  right: 8%;
  top: 18%;
  transform: rotate(11deg);
}

.showcase__phone--center {
  left: 50%;
  top: 10%;
  width: 40%;
  transform: translateX(-50%);
  z-index: 3;
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.28));
}

@media (max-width: 520px) {
  .showcase__phones {
    aspect-ratio: 1 / 1.08;
    min-height: 240px;
  }

  .showcase__phone {
    width: 34%;
  }

  .showcase__phone--center {
    width: 38%;
  }

  .showcase__phone--left {
    left: 6%;
    transform: rotate(-8deg);
  }

  .showcase__phone--right {
    right: 6%;
    transform: rotate(8deg);
  }
}

@media (max-width: 900px) {
  .showcase__layout {
    grid-template-columns: 1fr;
  }

  .showcase__visual {
    order: 2;
  }

  .showcase__copy {
    order: 1;
  }
}

/* ——— Site footer ——— */

.site-footer {
  position: relative;
  z-index: 1;
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  padding-bottom: max(clamp(2rem, 5vw, 3rem), env(safe-area-inset-bottom, 0px));
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  background: var(--surface-grey);
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}

body[data-nav-page="legal"] .site-footer {
  /* Clears overlap when privacy card sits 10pt onto footer band */
  padding-top: calc(clamp(1.75rem, 4vw, 2.5rem) + 10pt);
}

.site-footer__legal {
  margin: 0 auto;
  max-width: var(--container);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--grey-muted);
  text-align: center;
}

/* ——— About page (about-us.html) ——— */

.hero.hero--about {
  min-height: 0;
  padding-top: calc(var(--header-bar-height) + clamp(2rem, 5vw, 3.5rem));
  padding-bottom: max(clamp(3rem, 8vw, 5rem), env(safe-area-inset-bottom, 0px));
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
}

.hero.hero--about .hero__inner--about {
  max-width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

/* Fruiti+ (fruiti-plus.html): home-equivalent hero chrome + later-line reveal (see hero-later-reveal.js) */
.hero.hero--fruiti-plus {
  min-height: 0;
  padding-top: calc(var(--header-bar-height) + clamp(2rem, 5vw, 3.5rem));
  padding-bottom: max(clamp(3rem, 8vw, 5rem), env(safe-area-inset-bottom, 0px));
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
}

.hero.hero--fruiti-plus .hero__inner--fruiti-plus {
  max-width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
  /* Product nudge: clear drip overlap — pt discipline matches legal / about hero copy */
  padding-top: 25pt;
}

.fruiti-plus__hero-body {
  margin: 0;
  max-width: 42rem;
}

.fruiti-plus__hero-body p {
  margin: 0 0 0.85rem;
  /* ×0.726 vs prior hero-sub–matched sizing (×0.6 then +10% twice); ×1.15 readability pass */
  font-size: clamp(0.7932rem, 1.3776vw, 0.8871rem);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 16px rgba(5, 10, 48, 0.5), 0 1px 2px rgba(5, 10, 48, 0.35);
  -webkit-font-smoothing: antialiased;
}

.fruiti-plus__hero-body p:last-child {
  margin-bottom: 0;
}

.fruiti-plus__hero-body__closing {
  font-weight: 700;
}

/* Fruiti+ detail band: same matte grey as about-origin (about-us Melbourne block) */
.about-light.fruiti-plus-detail {
  background: var(--about-origin-map-matte);
}

.fruiti-plus-detail .about-light__inner {
  max-width: min(1180px, 100%);
}

.fruiti-plus-features__title {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--navy);
}

.fruiti-plus-features__title-brand {
  color: var(--blue);
}

.fruiti-plus-features__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

@keyframes fruiti-plus-feature-card-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fruiti-plus-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: clamp(1.15rem, 2.8vw, 1.45rem) clamp(1rem, 2.2vw, 1.2rem);
  border-radius: 14px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(243, 246, 252, 0.92) 48%,
    rgba(235, 239, 248, 0.98) 100%
  );
  border: 1px solid rgba(148, 163, 184, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 36px -20px rgba(15, 23, 42, 0.14),
    0 6px 16px -10px rgba(15, 23, 42, 0.08);
  /* One-shot stagger on each full navigation (refresh); `both` holds hidden state during delay */
  --fruiti-plus-card-delay: 0s;
  animation: fruiti-plus-feature-card-reveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) var(--fruiti-plus-card-delay)
    both;
}

.fruiti-plus-feature-card:nth-child(1) {
  --fruiti-plus-card-delay: 0.06s;
}
.fruiti-plus-feature-card:nth-child(2) {
  --fruiti-plus-card-delay: 0.13s;
}
.fruiti-plus-feature-card:nth-child(3) {
  --fruiti-plus-card-delay: 0.2s;
}
.fruiti-plus-feature-card:nth-child(4) {
  --fruiti-plus-card-delay: 0.27s;
}
.fruiti-plus-feature-card:nth-child(5) {
  --fruiti-plus-card-delay: 0.34s;
}
.fruiti-plus-feature-card:nth-child(6) {
  --fruiti-plus-card-delay: 0.41s;
}
.fruiti-plus-feature-card:nth-child(7) {
  --fruiti-plus-card-delay: 0.48s;
}
.fruiti-plus-feature-card:nth-child(8) {
  --fruiti-plus-card-delay: 0.55s;
}
.fruiti-plus-feature-card:nth-child(9) {
  --fruiti-plus-card-delay: 0.62s;
}
.fruiti-plus-feature-card:nth-child(10) {
  --fruiti-plus-card-delay: 0.69s;
}
.fruiti-plus-feature-card:nth-child(11) {
  --fruiti-plus-card-delay: 0.76s;
}
.fruiti-plus-feature-card:nth-child(12) {
  --fruiti-plus-card-delay: 0.83s;
}

@media (prefers-reduced-motion: reduce) {
  .fruiti-plus-feature-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.fruiti-plus-feature-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin: 0 0 0.85rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: radial-gradient(
    115% 115% at 28% 22%,
    rgba(147, 197, 253, 0.95) 0%,
    rgba(37, 99, 235, 0.92) 38%,
    rgba(29, 78, 216, 1) 100%
  );
  border: 1px solid rgba(186, 230, 253, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 10px 22px -8px rgba(29, 78, 216, 0.45);
}

.fruiti-plus-feature-card__icon svg {
  width: 26px;
  height: 26px;
}

.fruiti-plus-feature-card__title {
  margin: 0 0 0.45rem;
  max-width: 28ch;
  font-size: clamp(0.84rem, 1.35vw, 0.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--navy);
  text-align: center;
  text-wrap: balance;
}

.fruiti-plus-feature-card__text {
  margin: 0;
  max-width: 36ch;
  font-size: clamp(0.78rem, 1.15vw, 0.875rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--grey-text);
  text-align: center;
  text-wrap: balance;
}

@supports not (text-wrap: balance) {
  .fruiti-plus-feature-card__title,
  .fruiti-plus-feature-card__text {
    text-wrap: unset;
  }
}

.fruiti-plus-features__footnote {
  margin: clamp(2rem, 5vw, 2.75rem) auto 0;
  max-width: 42rem;
  text-align: center;
  font-size: clamp(0.88rem, 1.25vw, 0.97rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--grey-muted);
  text-wrap: balance;
}

.fruiti-plus-features__footnote-star {
  display: inline-block;
  margin: 0 0.35em;
  color: var(--blue-deep);
  opacity: 0.85;
  font-size: 0.85em;
  vertical-align: middle;
}

@supports not (text-wrap: balance) {
  .fruiti-plus-features__footnote {
    text-wrap: unset;
  }
}

/* Legal Bits + Contact Us: same hero chrome as About; body bands below (legal-bits.html, contact-us.html) */
.hero.hero--legal-subpage,
.hero.hero--contact-subpage {
  min-height: 0;
  padding-top: calc(var(--header-bar-height) + clamp(2rem, 5vw, 3.5rem));
  padding-bottom: max(clamp(2.5rem, 6vw, 4rem), env(safe-area-inset-bottom, 0px));
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
}

.hero.hero--legal-subpage .hero__inner--legal-subpage,
.hero.hero--contact-subpage .hero__inner--contact-subpage {
  max-width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

/* Chip-backed headline lines + smaller body — Legal / Contact marketing heroes */
.legal-subpage__hero-copy,
.contact-subpage__hero-copy {
  text-align: left;
  /* Product nudge: clear drip overlap — matches pt-based tweaks elsewhere on marketing site */
  padding-top: 45pt;
}

.legal-subpage__hero-headlines,
.contact-subpage__hero-headlines {
  margin: 0 0 clamp(1rem, 2.8vw, 1.5rem);
  padding: 0;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.legal-subpage__hero-row,
.contact-subpage__hero-row,
.about-purpose__title-row {
  display: block;
}

.legal-subpage__hero-row + .legal-subpage__hero-row,
.contact-subpage__hero-row + .contact-subpage__hero-row,
.about-purpose__title-row + .about-purpose__title-row {
  margin-top: 0.32rem;
}

.legal-subpage__hero-chip,
.contact-subpage__hero-chip,
.about-purpose__title-chip {
  display: inline-block;
  padding: 0.2em 0.48em 0.26em;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.78);
  line-height: 1.18;
  vertical-align: top;
}

.legal-subpage__hero-chip,
.contact-subpage__hero-chip {
  font-size: clamp(1.48rem, 3.15vw, 2.4rem);
}

.about-purpose__title-chip {
  font-size: 1em;
}

.legal-subpage__hero-chip--white,
.contact-subpage__hero-chip--white,
.about-purpose__title-chip--white {
  color: var(--white);
  text-shadow: 0 1px 14px rgba(5, 10, 48, 0.5);
}

.legal-subpage__hero-chip--accent,
.contact-subpage__hero-chip--accent,
.about-purpose__title-chip--accent {
  color: var(--blue);
  text-shadow: 0 1px 12px rgba(5, 10, 48, 0.42);
}

.legal-subpage__hero-body,
.contact-subpage__hero-body {
  margin: 0;
  max-width: 28rem;
  font-family: var(--font-body);
  font-size: clamp(0.94rem, 1.5vw, 1.1rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 12px rgba(5, 10, 48, 0.42);
}

/* Contact Us (contact-us.html): intro + department grid on grey */
.about-light.contact-hub {
  background: var(--surface-grey);
}

.contact-hub__inner {
  max-width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.contact-hub__intro {
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
  text-align: center;
}

.contact-hub__intro .about-eyebrow {
  margin-bottom: 0.75rem;
}

.contact-hub__heading {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--navy);
}

.contact-hub__subtitle {
  margin: 0 auto;
  max-width: 36rem;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--grey-text);
}

.contact-hub__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

.contact-hub-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(0.85rem, 2vw, 1.1rem);
  margin: 0;
  height: 100%;
  padding: clamp(1.15rem, 2.8vw, 1.45rem) clamp(1rem, 2.5vw, 1.25rem);
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 36px -22px rgba(15, 23, 42, 0.16),
    0 6px 16px -10px rgba(15, 23, 42, 0.08);
}

.contact-hub-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(37, 99, 235, 0.1);
}

.contact-hub-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-hub-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.contact-hub-card__title {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.contact-hub-card__desc {
  margin: 0;
  font-size: clamp(0.84rem, 1.2vw, 0.92rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--grey-text);
}

.contact-hub-card__email {
  margin-top: 0.15rem;
  font-size: clamp(0.84rem, 1.15vw, 0.9rem);
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.contact-hub-card__email:hover {
  text-decoration: underline;
}

.contact-hub-card__email:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 2px;
}

.contact-hub-card__callback {
  align-self: flex-start;
  margin-top: 0.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-size: clamp(0.8rem, 1.1vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  color: var(--grey-text);
  transition: color 0.15s ease;
}

.contact-hub-card__callback:hover {
  color: var(--navy);
}

.contact-hub-card__callback:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.contact-hub-card__callback-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.contact-hub-card__callback-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-hub-card__callback-label {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

button.contact-hub-card__callback {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
}

/* Contact Us — message form (contact-us.html): white band under department grid */
.about-light.contact-form-band {
  background: var(--white);
}

.contact-form-band__inner {
  max-width: min(640px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.contact-form-card {
  box-sizing: border-box;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3.5vw, 1.65rem);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  background: var(--white);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 16px 42px -30px rgba(15, 23, 42, 0.14),
    0 6px 18px -12px rgba(15, 23, 42, 0.08);
}

.contact-form-card__intro {
  margin-bottom: clamp(1.35rem, 3vw, 1.75rem);
  text-align: left;
}

.contact-form-card__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.contact-form-card__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.contact-form-card__lede {
  margin: 0;
  font-size: clamp(0.92rem, 1.35vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--grey-text);
}

.contact-form-card__form {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2vw, 1rem);
}

/* Scroll target for department “Request a callback” (contact-us.html + contact-callback.js) */
#contact-public-form {
  scroll-margin-top: clamp(1rem, 4vw, 2rem);
}

.contact-form-card__row--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2vw, 1rem);
}

@media (min-width: 540px) {
  .contact-form-card__row--split {
    grid-template-columns: 1fr 1fr;
  }

  .contact-field--email-span {
    grid-column: 1 / -1;
  }
}

@media (min-width: 780px) {
  .contact-form-card__row--split {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-field--email-span {
    grid-column: auto;
  }
}

.contact-field {
  display: block;
  margin: 0;
}

.contact-field__input {
  box-sizing: border-box;
  width: 100%;
  padding: 0.72rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}

.contact-field__input::placeholder {
  color: var(--grey-muted);
  font-weight: 400;
}

.contact-field__input:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: rgba(37, 99, 235, 0.45);
}

.contact-field--boxed {
  padding: 0.55rem 0.75rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: var(--white);
}

.contact-field--boxed:focus-within {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.contact-field__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--grey-muted);
}

.contact-field__select-wrap {
  position: relative;
  display: block;
}

.contact-field__select {
  box-sizing: border-box;
  width: 100%;
  padding: 0.35rem 2rem 0.35rem 0;
  border: 0;
  margin: 0;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  appearance: none;
  cursor: pointer;
}

.contact-field__select:focus {
  outline: 0;
}

.contact-field__select-wrap::after {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 0.15rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--grey-muted);
  border-bottom: 2px solid var(--grey-muted);
  transform: translateY(-75%) rotate(45deg);
}

.contact-field__textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 9rem;
  padding: 0.35rem 0 0;
  border: 0;
  margin: 0;
  resize: vertical;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
}

.contact-field__textarea::placeholder {
  color: var(--grey-muted);
  font-weight: 400;
}

.contact-field__textarea:focus {
  outline: 0;
}

.contact-form-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-top: 0.35rem;
}

.contact-form-card__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.35rem;
  border: none;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px -4px rgba(37, 99, 235, 0.55);
}

.contact-form-card__submit:hover {
  background: var(--blue-deep);
}

.contact-form-card__submit:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 3px;
}

.contact-form-card__submit-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.contact-form-card__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  max-width: 20rem;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--grey-text);
}

.contact-form-card__privacy-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.08rem;
  color: var(--blue);
}

.contact-form-card__privacy-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-form-card__privacy-link {
  font-weight: 600;
  color: var(--blue-deep);
  text-decoration: none;
}

.contact-form-card__privacy-link:hover {
  text-decoration: underline;
}

.contact-form-card__privacy-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 2px;
}

.contact-form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.contact-form-status[hidden] {
  display: none !important;
}

.contact-form-status--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #14532d;
}

.contact-form-status--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #7f1d1d;
}

.contact-field--error .contact-field__input,
.contact-field--error .contact-field__select,
.contact-field--error .contact-field__textarea {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.45);
}

.contact-field__error {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #b91c1c;
}

.about-purpose {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  /* Same row height for intro + cards so the grid can split six equal cells */
  align-items: stretch;
}

@media (min-width: 900px) {
  .about-purpose {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
}

/* Product nudge: align “Our Purpose” block lower vs card grid (about-us.html). */
.about-purpose__intro {
  padding-top: 50pt;
}

.about-purpose__title {
  margin: 0 0 1.25rem;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 700;
  /* Was clamp(2rem, 4vw, 3rem); ×0.8 → 20% smaller */
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.about-purpose__copy p {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.35vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-shadow:
    0 1px 16px rgba(5, 10, 48, 0.45),
    0 1px 2px rgba(5, 10, 48, 0.35);
}

.about-purpose__copy p:last-child {
  margin-bottom: 0;
}

.about-purpose__cards {
  /* 30% smaller cards + inner content vs prior art */
  --about-card-scale: 0.7;
  list-style: none;
  margin: 20pt 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(clamp(0.85rem, 2vw, 1.15rem) * var(--about-card-scale));
  min-height: 0;
}

/* Two-column about layout only: stretch column + three equal rows → six equal cells. */
@media (min-width: 900px) {
  .about-purpose__cards {
    height: 100%;
    min-height: calc(clamp(460px, 52vh, 660px) * var(--about-card-scale));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    align-content: stretch;
  }
}

/* Tablet 2×3: fixed-purpose grid height → three equal rows (six matched cells). */
@media (max-width: 899px) and (min-width: 521px) {
  .about-purpose__cards {
    min-height: calc(clamp(520px, 118vw, 700px) * var(--about-card-scale));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .about-purpose__cards {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, minmax(0, auto));
    min-height: 0;
    height: auto;
  }
}

.about-purpose-card {
  margin: 0;
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(clamp(1.15rem, 2.4vw, 1.55rem) * var(--about-card-scale, 0.7))
    calc(clamp(1rem, 2.2vw, 1.35rem) * var(--about-card-scale, 0.7));
  border-radius: calc(18px * var(--about-card-scale, 0.7));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Premium glass: brighter rim, deeper lift, calmer interior */
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(96, 129, 206, 0.28) 36%,
    rgba(15, 23, 42, 0.88) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 calc(-1px * var(--about-card-scale, 0.7)) 0 rgba(5, 10, 48, 0.25) inset,
    0 calc(28px * var(--about-card-scale, 0.7)) calc(56px * var(--about-card-scale, 0.7))
      calc(-18px * var(--about-card-scale, 0.7)) rgba(5, 10, 48, 0.72),
    0 calc(12px * var(--about-card-scale, 0.7)) calc(28px * var(--about-card-scale, 0.7))
      rgba(5, 10, 48, 0.38);
  backdrop-filter: blur(calc(18px * var(--about-card-scale, 0.7)));
  -webkit-backdrop-filter: blur(calc(18px * var(--about-card-scale, 0.7)));
}

@media (max-width: 520px) {
  .about-purpose-card {
    min-height: calc(clamp(220px, 58vw, 290px) * var(--about-card-scale, 0.7));
    height: auto;
  }
}

.about-purpose-card__icon {
  flex-shrink: 0;
  width: calc(clamp(46px, 6vw, 54px) * var(--about-card-scale, 0.7));
  height: calc(clamp(46px, 6vw, 54px) * var(--about-card-scale, 0.7));
  margin: 0 0 calc(0.85rem * var(--about-card-scale, 0.7));
  border-radius: 999px;
  color: #e2e8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    120% 120% at 28% 22%,
    rgba(255, 255, 255, 0.34) 0%,
    rgba(37, 99, 235, 0.18) 42%,
    rgba(15, 23, 42, 0.35) 100%
  );
  border: 1px solid rgba(186, 206, 253, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 calc(10px * var(--about-card-scale, 0.7)) calc(22px * var(--about-card-scale, 0.7))
      rgba(5, 10, 48, 0.38);
}

.about-purpose-card__num {
  font-size: calc(clamp(1.05rem, 2.5vw, 1.28rem) * var(--about-card-scale, 0.7));
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.about-purpose-card__title {
  flex-shrink: 0;
  margin: 0 0 calc(0.55rem * var(--about-card-scale, 0.7));
  max-width: 24ch;
  font-size: max(
    0.75rem,
    calc(clamp(0.78rem, 1.12vw, 0.9rem) * var(--about-card-scale, 0.7))
  );
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.97);
  text-wrap: balance;
}

.about-purpose-card__text {
  margin: 0;
  max-width: 38ch;
  font-size: max(
    0.6875rem,
    calc(clamp(0.68rem, 1.05vw, 0.77rem) * var(--about-card-scale, 0.7))
  );
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
  text-wrap: balance;
}

@supports not (text-wrap: balance) {
  .about-purpose-card__title,
  .about-purpose-card__text {
    text-wrap: unset;
  }
}

.about-light {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  padding-bottom: max(clamp(2.75rem, 6vw, 4.5rem), env(safe-area-inset-bottom, 0px));
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
}

.about-light.about-origin {
  background: var(--about-origin-map-matte);
}

/* Legal hub (legal-bits.html): doc cards — first overlaps hero 10pt; privacy can overlap footer 10pt */
.about-light.legal-hub {
  --legal-hub-pad-top: clamp(2.75rem, 6vw, 4.5rem);
  --legal-hub-pad-bottom: max(clamp(2.75rem, 6vw, 4.5rem), env(safe-area-inset-bottom, 0px));
  padding-top: var(--legal-hub-pad-top);
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  padding-bottom: var(--legal-hub-pad-bottom);
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
}

.legal-doc-card {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  max-width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.15rem, 3vw, 1.45rem) clamp(1.15rem, 3vw, 1.35rem) clamp(1rem, 2.5vw, 1.15rem);
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 48px -24px rgba(15, 23, 42, 0.22),
    0 8px 24px -16px rgba(15, 23, 42, 0.12);
}

.legal-hub .about-light__inner > .legal-doc-card:first-child {
  margin-top: calc(-10pt - var(--legal-hub-pad-top));
  z-index: 3;
}

.legal-hub .about-light__inner > .legal-doc-card + .legal-doc-card {
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.legal-doc-card--overlap-footer {
  margin-bottom: -10pt;
  z-index: 2;
}

.legal-doc-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(0.85rem, 2vw, 1.1rem);
}

.legal-doc-card__header-main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.legal-doc-card__doc-icon,
.legal-doc-card__lock-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
}

.legal-doc-card__doc-icon svg,
.legal-doc-card__lock-icon svg {
  width: 28px;
  height: 28px;
}

.legal-doc-card__title-wrap {
  min-width: 0;
}

.legal-doc-card__title {
  margin: 0 0 0.2rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.legal-doc-card__meta {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-muted);
}

.legal-doc-card__toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  background: var(--white);
  color: var(--grey-muted);
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.legal-doc-card__toggle:hover {
  background: rgba(37, 99, 235, 0.06);
  color: var(--blue-deep);
  border-color: rgba(37, 99, 235, 0.25);
}

.legal-doc-card__toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--site-nav-accent);
}

.legal-doc-card__toggle-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.legal-doc-card--collapsed .legal-doc-card__toggle-chevron {
  transform: rotate(180deg);
}

.legal-doc-card--collapsed .legal-doc-card__collapsible {
  display: none;
}

.legal-doc-card__scroll-frame {
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.65);
  overflow: hidden;
}

.legal-doc-card__scroll {
  margin: 0;
  padding: clamp(0.85rem, 2vw, 1.1rem) clamp(0.85rem, 2vw, 1rem);
  max-height: min(420px, 52vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.65) transparent;
}

.legal-doc-card__scroll::-webkit-scrollbar {
  width: 8px;
}

.legal-doc-card__scroll::-webkit-scrollbar-track {
  background: transparent;
}

.legal-doc-card__scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.55);
  border-radius: 999px;
}

.legal-doc-section {
  padding-bottom: clamp(0.85rem, 2vw, 1.05rem);
  margin-bottom: clamp(0.85rem, 2vw, 1.05rem);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.legal-doc-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.legal-doc-section__heading {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.legal-doc-section p {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--grey-text);
}

.legal-doc-section p:last-child {
  margin-bottom: 0;
}

.legal-doc-section ol {
  margin: 0 0 0.65rem;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--grey-text);
}

.legal-doc-section ol:last-child {
  margin-bottom: 0;
}

.legal-doc-section li {
  margin-bottom: 0.35rem;
}

.legal-doc-section li:last-child {
  margin-bottom: 0;
}

.legal-doc-card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: clamp(0.85rem, 2vw, 1rem);
  padding-top: 0.15rem;
}

.legal-doc-card__footer-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue-deep);
}

.legal-doc-card__footer-icon svg {
  width: 14px;
  height: 14px;
}

.legal-doc-card__footer-text {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-deep);
}

.about-light__inner {
  max-width: min(1120px, 100%);
  margin: 0 auto;
}

.about-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.about-origin__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 880px) {
  .about-origin__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
}

.about-origin__title {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.about-origin__title-accent {
  color: var(--blue);
}

.about-origin__heart {
  width: 1.15em;
  height: 1.15em;
  color: var(--blue);
  flex-shrink: 0;
}

.about-origin__body p {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.35vw, 1.0625rem);
  line-height: 1.65;
  color: var(--grey-text);
}

.about-origin__body p:last-child {
  margin-bottom: 0;
}

.about-origin__facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.about-origin__fact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--navy);
}

.about-origin__fact:last-child {
  margin-bottom: 0;
}

.about-origin__fact-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 0.1rem;
  color: var(--blue-deep);
}

.about-origin__fact-icon svg {
  width: 100%;
  height: 100%;
}

.about-origin__map-wrap {
  display: flex;
  justify-content: center;
}

.about-origin__map {
  margin: 0;
  /* 380px × 1.15 — product request larger Melbourne map art */
  width: min(100%, 437px);
}

.about-origin__map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(12px, 2.5vw, 18px);
}

.about-origin__tagline {
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--navy);
}

.about-origin__tagline-strong {
  color: var(--blue);
}

.about-socials {
  padding-top: clamp(1rem, 3vw, 2rem);
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.about-socials__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.about-socials__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  width: 100%;
  /* auto-fill leaves empty tracks → cards hug the start; auto-fit collapses extras so N cards span full width */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
}

@media (max-width: 520px) {
  .about-socials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-socials__grid > li {
  display: flex;
  min-width: 0;
}

.about-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 112px;
  padding: 1rem 0.75rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 10px 24px -12px rgba(15, 23, 42, 0.12);
  text-decoration: none;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.about-social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(15, 23, 42, 0.18);
}

.about-social-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--site-nav-accent);
}

.about-social-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.about-social-card__icon svg {
  width: 32px;
  height: 32px;
}

.about-social-card__label {
  text-align: center;
}
