/* ============================================================
   PLACI — design system v2
   White canvas, clay accent, chunky elevated cards, Inter.
   ============================================================ */

:root {
  --ink:        #141118;
  --ink-2:      #55505B;
  --ink-3:      #8B8591;
  --bg:         #FFFFFF;
  --bg-soft:    #F7F5F3;
  --line:       #ECE8E4;

  --clay:       #D96844;
  --clay-deep:  #B94F2E;
  --clay-soft:  #FBE9E1;
  --plum:       #6E5668;
  --plum-soft:  #F0E9EF;
  --green:      #4CA36A;
  --green-soft: #E4F2E9;
  --blue:       #3B82D6;
  --blue-soft:  #E4EEF9;

  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;

  --shadow-card: 0 0 0 1px rgba(20, 17, 24, .05), 0 2px 4px rgba(20, 17, 24, .04), 0 24px 48px -20px rgba(20, 17, 24, .16);
  --shadow-pill: 0 1px 2px rgba(20, 17, 24, .06), 0 10px 24px -12px rgba(20, 17, 24, .22);
  --shadow-float: 0 2px 6px rgba(20, 17, 24, .06), 0 18px 40px -16px rgba(20, 17, 24, .28);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --section-pad: clamp(84px, 11vw, 150px);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 6px; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 44px); }
.center { text-align: center; }
.accent { color: var(--clay); }

a, button { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
section[id] { scroll-margin-top: 84px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- type ---------- */
.h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
  text-wrap: balance;
}
.sec-sub {
  font-size: clamp(15.5px, 1.3vw, 17.5px);
  color: var(--ink-2);
  max-width: 60ch;
  margin-bottom: 12px;
}
.sec-sub.center { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-weight: 600; font-size: 15.5px;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-pill); }
.btn:active { transform: scale(.97); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #262130; }
.btn-sm { padding: 10px 22px; font-size: 14.5px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 15.5px; color: var(--ink-2);
  padding: 13px 6px;
  transition: color .18s;
}
.btn-ghost:hover { color: var(--clay-deep); }

.appstore-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff;
  padding: 12px 26px 12px 20px;
  border-radius: 16px;
  transition: transform .18s var(--ease), background .18s, box-shadow .18s;
}
.appstore-badge:hover { transform: translateY(-2px); background: #262130; box-shadow: var(--shadow-pill); }
.appstore-badge svg { width: 30px; height: 30px; }
.appstore-badge span { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.appstore-badge small { font-size: 11px; opacity: .75; }
.appstore-badge strong { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 12px clamp(20px, 5vw, 44px);
  display: flex; align-items: center; gap: 36px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-mark { border-radius: 9px; }
.nav-word { font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.nav-links { display: flex; gap: 30px; margin: 0 auto; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  transition: color .18s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }
.mobile-menu { display: none; }

/* ---------- hero ---------- */
.hero { padding: clamp(56px, 8vw, 104px) 0 0; text-align: center; position: relative; }
.hero-h1 {
  font-size: clamp(38px, 6.6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 18.5px);
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0 auto 32px;
}
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }

.hero-stage {
  position: relative;
  margin: clamp(48px, 6vw, 72px) auto 0;
  max-width: 1160px;
  height: clamp(430px, 52vw, 620px);
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: auto 0 0;
  height: 92%;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background:
    radial-gradient(120% 130% at 50% 110%, #E8794F 0%, #F2A177 34%, #FBD9C0 62%, #FFF4EA 88%, #FFFFFF 100%);
  max-width: 1060px; margin: 0 auto;
}
.phone {
  position: relative;
  width: min(320px, 74vw);
  margin: 0 auto;
  background: #14121A;
  border-radius: 48px;
  padding: 11px;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,.35), 0 44px 90px -28px rgba(60, 30, 16, .5);
}
.phone img { border-radius: 38px; width: 100%; height: auto; }
.phone-hero { top: clamp(48px, 7vw, 92px); }

.float-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 10px 16px 10px 10px;
  box-shadow: var(--shadow-float);
  text-align: left;
  animation: floaty 7s ease-in-out infinite;
}
.float-chip > span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.float-chip strong { font-size: 13.5px; font-weight: 700; }
.float-chip em { font-style: normal; font-size: 12px; color: var(--ink-3); }
.fc-ico {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
}
.fc-ico svg, .p-tile svg, .o-tile svg {
  width: 17px; height: 17px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.fci-clay  { background: var(--clay-soft);  color: var(--clay-deep); }
.fci-green { background: var(--green-soft); color: var(--green); }
.fci-plum  { background: var(--plum-soft);  color: var(--plum); }
.fci-blue  { background: var(--blue-soft);  color: var(--blue); }
.fc-1 { left: 8%;  top: 24%; animation-delay: 0s; }
.fc-2 { right: 7%; top: 18%; animation-delay: 1.6s; }
.fc-3 { left: 13%; top: 62%; animation-delay: 2.8s; }
.fc-4 { right: 12%; top: 58%; animation-delay: 4s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* ---------- hero entrance choreography ---------- */
.hl { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hl-in {
  display: inline-block;
  transform: translateY(112%);
  animation: line-rise .9s var(--ease) forwards;
}
.hl:nth-child(2) .hl-in { animation-delay: .12s; }
@keyframes line-rise { to { transform: translateY(0); } }

.hero-fade {
  opacity: 0;
  transform: translateY(14px);
  animation: fade-rise .8s var(--ease) .45s forwards;
}
.hero-fade.hf-2 { animation-delay: .6s; }
@keyframes fade-rise { to { opacity: 1; transform: translateY(0); } }

.hero-rise {
  opacity: 0;
  transform: translateY(48px);
  animation: stage-rise 1s var(--ease) .55s forwards;
}
@keyframes stage-rise { to { opacity: 1; transform: translateY(0); } }

.chip-pop {
  opacity: 0;
  scale: .6;
  animation: chip-in .55s var(--ease) forwards, floaty 7s ease-in-out infinite;
}
.cp-1 { animation-delay: 1.15s, 1.7s; }
.cp-2 { animation-delay: 1.3s, 3.3s; }
.cp-3 { animation-delay: 1.45s, 4.5s; }
.cp-4 { animation-delay: 1.6s, 5.6s; }
@keyframes chip-in { to { opacity: 1; scale: 1; } }

/* living glow drift */
.hero-glow::after {
  content: "";
  position: absolute; inset: -12%;
  border-radius: inherit;
  background: radial-gradient(42% 46% at 34% 72%, rgba(255, 244, 234, .55), transparent 70%);
  animation: glow-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes glow-drift {
  from { transform: translateX(-6%) scale(1); opacity: .7; }
  to   { transform: translateX(6%) scale(1.08); opacity: 1; }
}

/* ---------- hero trust line ---------- */
.hero-trust {
  display: flex; justify-content: center; align-items: center; gap: 22px;
  margin-top: 18px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-3);
  flex-wrap: wrap;
}
.hero-trust span { position: relative; }
.hero-trust span + span::before {
  content: "";
  position: absolute; left: -13px; top: 50%;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--clay);
  transform: translateY(-50%);
}

/* ---------- value strip (replaces stats) ---------- */
.stats { padding: var(--section-pad) 0 calc(var(--section-pad) * .7); }
.stats .sec-sub { margin-bottom: 48px; }
.value-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-item {
  padding: 32px 24px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.value-item:first-child { border-left: none; }
.v-ico {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.v-ico svg, .fp-ico svg {
  width: 19px; height: 19px;
  fill: none; stroke: currentColor;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}
.fci-clay  { background: var(--clay-soft);  color: var(--clay-deep); }
.fci-green { background: var(--green-soft); color: var(--green); }
.fci-plum  { background: var(--plum-soft);  color: var(--plum); }
.fci-blue  { background: var(--blue-soft);  color: var(--blue); }
.value-item strong { font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; }
.value-item > span:last-child { font-size: 13.5px; color: var(--ink-2); }

/* ---------- plain feature card (no screenshot) ---------- */
.feat-plain {
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 30px 4px;
}
.feat-plain .fp-ico { margin: 0 28px; }
.fp-ico {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  margin-bottom: 10px;
}

/* ---------- families & expats ---------- */
.expat { padding: var(--section-pad) 0 0; }
.expat .sec-sub { margin-bottom: 48px; }
.expat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px; margin: 0 auto;
}
.expat-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 28px;
  transition: transform .25s var(--ease), background .25s;
}
.expat-card:hover { transform: translateY(-4px); background: #fff; box-shadow: var(--shadow-card); }
.expat-card strong { display: block; font-size: 16.5px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 6px; }
.expat-card p { font-size: 14.5px; color: var(--ink-2); }

/* ---------- how it works ---------- */
.how { padding: var(--section-pad) 0; }
.steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px; margin: 48px auto 0;
  counter-reset: step;
}
.step { position: relative; text-align: center; padding: 0 12px; }
.step-n {
  display: grid; place-items: center;
  width: 52px; height: 52px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--clay); color: #fff;
  font-size: 21px; font-weight: 800;
  box-shadow: 0 10px 24px -10px rgba(217, 104, 68, .55);
}
.step:not(:last-child)::after {
  content: "";
  position: absolute; top: 26px; left: calc(50% + 44px); right: calc(-50% + 44px);
  border-top: 2px dashed var(--line);
}
.step strong { display: block; font-size: 17px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--ink-2); max-width: 30ch; margin: 0 auto; }

/* ---------- cards / features ---------- */
.card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(20,17,24,.05), 0 4px 8px rgba(20,17,24,.05), 0 34px 64px -22px rgba(20,17,24,.24);
}

.features { padding: calc(var(--section-pad) * .5) 0 var(--section-pad); }
.features .sec-sub { margin-bottom: 52px; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.feat-money { grid-row: span 2; display: flex; flex-direction: column; }
.feat-side { display: grid; grid-template-columns: 200px 1fr; align-items: center; }
.feat-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; }

.feat-shot { background: var(--bg-soft); overflow: hidden; position: relative; }
.feat-shot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transform-origin: top center;
  transition: transform .6s var(--ease);
}
.card:hover .feat-shot img { transform: scale(1.035); }
.feat-money .feat-shot { flex: 1; min-height: 420px; }
.feat-money .feat-shot img { position: absolute; inset: 0; padding: 28px 56px 0; }
.feat-side .feat-shot { height: 100%; min-height: 210px; }
.feat-side .feat-shot img { position: absolute; inset: 0; padding: 18px 18px 0; border-radius: 24px 24px 0 0; }
.feat-wide .feat-shot { height: 360px; order: 2; }
.feat-wide .feat-shot img { position: absolute; inset: 0; padding: 32px 72px 0; }

.feat-copy { padding: 26px 28px 30px; }
.feat-wide .feat-copy { padding: 40px 48px; }
.feat-copy h3 { font-size: 20px; font-weight: 700; letter-spacing: -.015em; margin-bottom: 8px; }
.feat-copy p { font-size: 15px; color: var(--ink-2); }

.ticks { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.ticks li {
  padding-left: 30px; position: relative;
  font-size: 15px; color: var(--ink-2); font-weight: 500;
}
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234CA36A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ---------- connected tri-row ---------- */
.connected { padding: var(--section-pad) 0; background: var(--bg-soft); }
.connected .sec-sub { margin-bottom: 52px; }
.tri-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tri .feat-shot { height: 300px; }
.tri .feat-shot img { position: absolute; inset: 0; padding: 22px 40px 0; }
.marquee {
  margin-top: 44px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; gap: 12px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track span {
  flex: none;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(20,17,24,.04);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
}

/* ---------- privacy band ---------- */
.privacy-band { padding: var(--section-pad) 0; }
.privacy-inner {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.privacy-copy .btn-ghost { margin-top: 20px; color: var(--clay-deep); padding-left: 0; }
.privacy-tiles {
  position: relative; height: 360px;
}
.p-tile {
  position: absolute;
  width: 84px; height: 84px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-float);
  display: grid; place-items: center;
  color: var(--ink);
  animation: floaty 8s ease-in-out infinite;
}
.p-tile svg { width: 30px; height: 30px; stroke-width: 1.8; }
.t1 { left: 12%; top: 6%;  color: var(--clay-deep); animation-delay: 0s; }
.t2 { right: 10%; top: 16%; color: var(--plum); animation-delay: 1.2s; }
.t3 { left: 34%; top: 42%; color: var(--green); width: 104px; height: 104px; animation-delay: 2.4s; }
.t3 svg { width: 38px; height: 38px; }
.t4 { right: 20%; bottom: 10%; color: var(--blue); animation-delay: 3.4s; }
.t5 { left: 8%; bottom: 4%; color: var(--ink-2); animation-delay: 4.4s; }

/* ---------- pricing ---------- */
.pricing { padding: var(--section-pad) 0; background: var(--bg-soft); }
.pricing .sec-sub { margin-bottom: 56px; }
.plan-toggle {
  display: flex; justify-content: center; gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px;
  width: max-content;
  margin: 0 auto 36px;
  box-shadow: 0 1px 2px rgba(20,17,24,.04);
}
.pt-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; background: none; cursor: pointer;
  font-family: var(--sans);
  font-size: 15px; font-weight: 600; color: var(--ink-2);
  padding: 10px 22px;
  border-radius: 100px;
  transition: background .2s, color .2s;
}
.pt-btn:hover { color: var(--ink); }
.pt-btn.active { background: var(--ink); color: #fff; }
.pt-save {
  background: var(--clay-soft); color: var(--clay-deep);
  font-size: 11.5px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}
.pt-btn.active .pt-save { background: var(--clay); color: #fff; }

.plan-card {
  max-width: 640px; margin: 0 auto;
  background: #fff;
  border: 3px solid var(--clay);
  border-radius: var(--r-lg);
  box-shadow: 0 6px 12px rgba(217, 104, 68, .08), 0 40px 80px -24px rgba(217, 104, 68, .35);
  padding: clamp(30px, 4vw, 46px);
  text-align: center;
}
.plan-price { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.plan-cur { font-size: 19px; font-weight: 700; color: var(--ink-2); }
.plan-price strong {
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 800; letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.plan-price em { font-style: normal; font-size: 17px; color: var(--ink-3); }
.plan-note { font-size: 14px; color: var(--ink-3); margin: 6px 0 24px; }
.plan-btn { min-width: 220px; margin-bottom: 30px; }
.plan-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 13px 26px;
  text-align: left;
  max-width: 560px; margin: 0 auto;
}
.plan-list li {
  padding-left: 30px; position: relative;
  font-size: 14.5px; color: var(--ink-2); font-weight: 500;
}
.plan-list li strong { color: var(--ink); font-weight: 700; }
.plan-list li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--clay-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B94F2E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/11px no-repeat;
}
.plan-clarify {
  max-width: 560px; margin: 32px auto 0;
  background: var(--clay-soft);
  border-radius: var(--r-sm);
  padding: 16px 22px;
  font-size: 14.5px; font-weight: 500; color: var(--clay-deep);
  text-align: center;
}
.plan-fine { margin: 14px auto 0; font-size: 12.5px; color: var(--ink-3); text-align: center; }

/* ---------- FAQ ---------- */
.faq { padding: var(--section-pad) 0; }
.faq .sec-sub { margin-bottom: 48px; }
.faq-panel {
  max-width: 760px; margin: 0 auto;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(20,17,24,.05), 0 8px 20px -12px rgba(20,17,24,.14);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  font-size: 15.5px; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-x {
  position: relative; flex: none;
  width: 22px; height: 22px;
}
.faq-x::before, .faq-x::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 14px; height: 2.5px; border-radius: 2px;
  background: var(--clay);
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease);
}
.faq-x::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-x::after { transform: translate(-50%, -50%) rotate(0deg); }
/* smooth open/close in browsers with interpolate-size (progressive enhancement) */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq-item::details-content {
    height: 0;
    overflow: clip;
    transition: height .32s var(--ease), content-visibility .32s allow-discrete;
  }
  .faq-item[open]::details-content { height: auto; }
}
.faq-a { padding: 0 22px 20px; }
.faq-a p { font-size: 15px; color: var(--ink-2); max-width: 60ch; }
.faq-a a { color: var(--clay-deep); font-weight: 600; }

/* ---------- closer ---------- */
.closer { padding: var(--section-pad) 0 calc(var(--section-pad) * 1.1); position: relative; overflow: hidden; }
.closer-inner { position: relative; text-align: center; }
.closer-h2 {
  font-size: clamp(36px, 5.6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.closer .sec-sub { margin-bottom: 36px; }
.closer-cta { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.closer-orbit { position: absolute; inset: 0; pointer-events: none; }
.o-tile {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-float);
  display: grid; place-items: center;
  animation: floaty 9s ease-in-out infinite;
}
.o-tile svg { width: 24px; height: 24px; stroke-width: 1.9; }
.ot-1 { left: 6%;  top: 4%;   color: var(--clay-deep); animation-delay: 0s; }
.ot-2 { right: 8%; top: 8%;   color: var(--green); animation-delay: 1.4s; }
.ot-3 { left: 14%; bottom: 12%; color: var(--plum); animation-delay: 2.6s; }
.ot-4 { right: 15%; bottom: 18%; color: var(--blue); animation-delay: 3.6s; }
.ot-5 { left: 26%; top: 26%;  color: var(--clay); animation-delay: 4.6s; }
.ot-6 { right: 27%; top: 34%; color: var(--ink-2); animation-delay: 5.6s; }

/* ---------- footer ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 60px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { border-radius: 8px; }
.footer-brand span { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.footer-tag { font-size: 14.5px; color: var(--ink-2); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.footer-col a { font-size: 14.5px; color: var(--ink-2); transition: color .18s; }
.footer-col a:hover { color: var(--clay-deep); }
.footer-fine-row { border-top: 1px solid var(--line); padding-top: 24px; }
.footer-fine { font-size: 13px; color: var(--ink-3); }

/* legal pages reuse these (older footer markup) */
.footer-inner { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
.footer-brand em { font-style: italic; font-size: 14px; color: var(--ink-3); margin-left: 6px; font-weight: 400; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 14px; font-weight: 500; color: var(--ink-2); transition: color .18s; }
.footer-links a:hover { color: var(--clay-deep); }

/* ---------- legal pages ---------- */
.legal { padding: clamp(44px, 6vw, 80px) 0 var(--section-pad); }
.legal-inner { max-width: 720px; margin: 0 auto; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--clay-deep);
  margin-bottom: 14px;
}
.legal-h1 {
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
  margin-bottom: 14px; text-wrap: balance;
}
.legal-updated {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--plum); background: var(--plum-soft);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 12px;
}
.legal-intro { color: var(--ink-2); font-size: 17px; margin-bottom: 8px; }
.legal-body { margin-top: 38px; }
.legal-body h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -.015em; line-height: 1.25;
  margin: 42px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.legal-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body p { color: var(--ink-2); margin-bottom: 14px; font-size: 15.5px; }
.legal-body ul { margin: 0 0 16px; padding-left: 22px; color: var(--ink-2); font-size: 15.5px; }
.legal-body li { margin-bottom: 10px; }
.legal-body strong { color: var(--ink); }
.legal-body a { color: var(--clay-deep); font-weight: 500; border-bottom: 1px solid var(--clay-soft); }
.legal-body a:hover { border-color: var(--clay); }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--clay-deep); margin-bottom: 26px; }
.legal-back:hover { text-decoration: underline; }

/* ---------- blog ---------- */
.blogpost { padding: clamp(40px, 6vw, 72px) 0 var(--section-pad); }
.post-inner { max-width: 720px; margin: 0 auto; }
.post-cat {
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--clay-deep);
  margin-bottom: 12px;
}
.post-h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.12;
  margin-bottom: 12px; text-wrap: balance;
}
.post-meta { font-size: 14px; color: var(--ink-3); margin-bottom: 34px; }
.post-body p { color: var(--ink-2); margin-bottom: 16px; font-size: 16.5px; line-height: 1.7; }
.post-body h2 {
  font-size: 23px; font-weight: 700; letter-spacing: -.015em; line-height: 1.25;
  margin: 38px 0 12px;
}
.post-body ul { margin: 0 0 18px; padding-left: 22px; color: var(--ink-2); font-size: 16px; line-height: 1.65; }
.post-body li { margin-bottom: 9px; }
.post-body strong { color: var(--ink); }
.post-body a { color: var(--clay-deep); font-weight: 600; border-bottom: 1px solid var(--clay-soft); }
.post-body a:hover { border-color: var(--clay); }
.post-cta {
  margin-top: 48px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
}
.post-cta img { border-radius: 14px; flex: none; }
.post-cta > div { flex: 1; min-width: 220px; }
.post-cta strong { display: block; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.post-cta p { font-size: 14px; color: var(--ink-2); }
.post-cta .btn { flex: none; }

.blogindex { padding: clamp(48px, 7vw, 88px) 0 var(--section-pad); }
.center-cat { text-align: center; }
.center-h1 { text-align: center; }
.blogindex-sub {
  text-align: center;
  font-size: clamp(15.5px, 1.3vw, 17.5px); color: var(--ink-2);
  max-width: 56ch; margin: 0 auto 56px;
}
.bgrid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px; margin: 0 auto;
}
.bcard {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.bcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(20,17,24,.05), 0 4px 8px rgba(20,17,24,.05), 0 34px 64px -22px rgba(20,17,24,.24);
}
.bcard-shot { height: 210px; background: var(--bg-soft); overflow: hidden; }
.bcard-shot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  padding: 18px 64px 0;
  transition: transform .5s var(--ease);
  transform-origin: top center;
}
.bcard:hover .bcard-shot img { transform: scale(1.035); }
.bcard-copy { padding: 22px 26px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bcard-cat {
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--clay-deep);
}
.bcard h2 { font-size: 19px; font-weight: 700; letter-spacing: -.015em; line-height: 1.3; }
.bcard p { font-size: 14px; color: var(--ink-2); flex: 1; }
.bcard-meta { font-size: 12.5px; color: var(--ink-3); }

@media (max-width: 860px) {
  .bgrid { grid-template-columns: 1fr; max-width: 520px; }
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip, .p-tile, .o-tile, .hero-glow::after { animation: none; }
  .hl-in { transform: none; animation: none; }
  .hero-fade, .hero-rise, .chip-pop { opacity: 1; transform: none; scale: 1; animation: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .marquee-track span:nth-child(n+10) { display: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1023px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-money { grid-row: auto; }
  .feat-money .feat-shot { min-height: 340px; }
  .feat-wide { grid-template-columns: 1fr; }
  .feat-wide .feat-shot { order: 0; height: 300px; }
  .tri-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card.featured { order: -1; }
  .privacy-inner { grid-template-columns: 1fr; }
  .privacy-tiles { height: 280px; max-width: 480px; margin: 0 auto; }
  .value-row { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(3) { border-left: none; }
  .value-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; gap: 36px; max-width: 420px; }
  .step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
    width: 44px; height: 44px;
    background: none; border: none; cursor: pointer;
    margin-left: auto;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--ink);
    transition: transform .3s var(--ease);
  }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    display: none;
    flex-direction: column; gap: 4px;
    padding: 8px 20px 24px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 13px 4px;
    font-size: 16.5px; font-weight: 500;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu a:last-child { border-bottom: none; margin-top: 12px; text-align: center; }

  .hero-stage { height: 480px; }
  .float-chip strong { font-size: 12px; }
  .float-chip em { font-size: 10.5px; }
  .fc-ico { width: 28px; height: 28px; }
  .fc-1 { left: 2%; top: 12%; }
  .fc-2 { right: 2%; top: 6%; }
  .fc-3 { left: 2%; top: 66%; }
  .fc-4 { right: 3%; top: 58%; }

  .feat-side { grid-template-columns: 1fr; }
  .feat-side .feat-shot { height: 240px; min-height: 0; }
  .feat-side .feat-shot img { padding: 18px 48px 0; }
  .feat-money .feat-shot img { padding: 20px 32px 0; }
  .feat-wide .feat-shot img { padding: 24px 48px 0; }
  .feat-wide .feat-copy { padding: 26px 28px 30px; }
  .tri .feat-shot img { padding: 20px 48px 0; }

  .o-tile { width: 48px; height: 48px; border-radius: 15px; }
  .o-tile svg { width: 19px; height: 19px; }
  .ot-5, .ot-6 { display: none; }
  .p-tile { width: 64px; height: 64px; border-radius: 18px; }
  .t3 { width: 80px; height: 80px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .value-row { grid-template-columns: 1fr; }
  .value-item { border-left: none; border-top: 1px solid var(--line); }
  .value-item:first-child { border-top: none; }
  .expat-grid { grid-template-columns: 1fr; }
  .feat-plain { padding: 26px 24px; }
  .feat-plain .fp-ico { margin: 0; }
}
