/* ============================================================
   A.dk — styles
   Soft Scandinavian palette, playful serifs, quiet motion.
   ============================================================ */

:root {
  /* Palette */
  --cream: #FAF6F0;
  --cream-warm: #F5EEE2;
  --paper: #FFFFFF;
  --sage: #8FAF9E;
  --sage-deep: #5E8873;
  --sage-soft: #D6E4DB;
  --peach: #F4C2A1;
  --peach-soft: #FBE3D3;
  --sky: #BFD4E3;
  --sky-soft: #E0ECF4;
  --lavender: #C7BDE0;
  --lavender-soft: #EAE4F5;
  --ink: #2B2D42;
  --ink-soft: #5D6275;
  --muted: #8E92A6;
  --line: #EDE5D6;
  --line-soft: #F3EDE1;

  /* Type */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;

  /* Radii & shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(43, 45, 66, 0.04), 0 1px 2px rgba(43, 45, 66, 0.03);
  --shadow-md: 0 8px 30px rgba(43, 45, 66, 0.06), 0 2px 6px rgba(43, 45, 66, 0.04);
  --shadow-lg: 0 30px 80px rgba(43, 45, 66, 0.09), 0 8px 20px rgba(43, 45, 66, 0.05);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font: inherit; }
em { font-style: italic; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Layout ---------- */
.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

/* ---------- Decorative orbs ---------- */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
  transition: transform 0.8s var(--ease);
}
.orb-1 { top: -160px; left: -120px; width: 520px; height: 520px; background: radial-gradient(circle, var(--sage-soft), transparent 70%); animation: float 18s ease-in-out infinite; }
.orb-2 { top: 30vh; right: -200px; width: 620px; height: 620px; background: radial-gradient(circle, var(--peach-soft), transparent 70%); animation: float 22s ease-in-out infinite reverse; }
.orb-3 { bottom: -220px; left: 30%; width: 680px; height: 680px; background: radial-gradient(circle, var(--lavender-soft), transparent 70%); animation: float 26s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(30px, -40px, 0) scale(1.05); }
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  background: color-mix(in srgb, var(--cream) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--cream) 92%, transparent);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: var(--font-serif);
  font-size: 30px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
}
.logo-mark {
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  padding-right: 1px;
}
.logo-dot {
  color: var(--peach);
  font-weight: 400;
  transform: translateY(-2px);
  display: inline-block;
}
.logo-tld {
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 400;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* Coming soon / vente-side */
.coming-soon { padding: 110px 0 130px; }
.cs-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.cs-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: var(--sage-soft);
  color: var(--sage-deep);
}
.cs-icon svg { width: 42px; height: 42px; }
.cs-inner .lede { margin: 18px auto 30px; }
.cs-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cs-note { margin-top: 30px; font-size: 14px; color: var(--muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-ghost {
  background: var(--ink);
  color: var(--cream) !important;
}
.btn-ghost:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 8vw, 100px) 0 clamp(40px, 6vw, 80px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: var(--sage-soft);
  padding: 7px 14px;
  border-radius: 999px;
}
.eyebrow .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-deep);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.55; }
}

.display {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-top: 24px;
  color: var(--ink);
}
.display em {
  color: var(--sage-deep);
  font-style: italic;
}
.display-s {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--ink);
}
.display-s em { color: var(--peach); font-style: italic; }

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 28px;
}

/* ---------- Waitlist form ---------- */
.waitlist-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  margin-top: 32px;
  max-width: 480px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.waitlist-form:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px var(--sage-soft), var(--shadow-md);
}
.waitlist-form input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
  color: var(--ink);
  padding: 10px 0;
  min-width: 0;
}
.waitlist-form input::placeholder { color: var(--muted); }
.waitlist-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.waitlist-form button:hover { background: var(--sage-deep); transform: translateY(-1px); }
.waitlist-form button svg { transition: transform 0.2s var(--ease); }
.waitlist-form button:hover svg { transform: translateX(3px); }

.waitlist-form.big { max-width: 560px; margin-inline: auto; margin-top: 28px; }
.waitlist-form.big input { font-size: 18px; }
.waitlist-form.big button { padding: 14px 26px; font-size: 16px; }

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 28px;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-row svg { width: 16px; height: 16px; color: var(--sage-deep); flex-shrink: 0; }

/* ---------- Hero visual ---------- */
.hero-visual {
  position: relative;
  min-height: 440px;
}
.card {
  position: absolute;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
  animation: rise 0.9s var(--ease) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.card-invoice {
  top: 0; right: 0;
  width: 320px;
  animation-delay: 0.1s;
  transform: rotate(-1.5deg);
}
.card-invoice:hover, .card-bank:hover, .card-stat:hover { transform: translateY(-6px) rotate(0); transition: transform 0.4s var(--ease); }

.card-bank {
  bottom: 0; left: -10px;
  width: 300px;
  animation-delay: 0.25s;
  transform: rotate(2deg);
}
.card-stat {
  top: 58%;
  right: -20px;
  width: 220px;
  padding: 20px;
  background: linear-gradient(145deg, var(--sage-soft), var(--paper));
  animation-delay: 0.4s;
  transform: rotate(-2deg);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.card-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.card-title span { color: var(--ink-soft); font-weight: 500; }
.card-title.small { font-size: 13px; color: var(--ink-soft); }

.chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.chip-green { background: var(--sage-soft); color: var(--sage-deep); }
.chip-peach { background: var(--peach-soft); color: #A05E3D; }

.card-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
}
.card-row.subtle { color: var(--ink-soft); font-size: 13px; border-top: 1px dashed var(--line); margin-top: 6px; padding-top: 10px; }
.card-row .num { font-weight: 700; font-size: 20px; font-feature-settings: "tnum"; color: var(--ink); }

.card-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.status { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--sage-deep); font-weight: 600; }
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage-deep);
  box-shadow: 0 0 0 4px var(--sage-soft);
  animation: pulse 2s ease-in-out infinite;
}

.bank-line {
  display: grid;
  grid-template-columns: 6px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.bank-line:first-of-type { border-top: 0; }
.bank-bar { width: 4px; height: 28px; border-radius: 4px; background: var(--sage); }
.bank-bar.alt { background: var(--peach); }
.bank-desc { font-size: 13px; font-weight: 600; color: var(--ink); }
.bank-sub { font-size: 11px; color: var(--muted); }
.bank-amount { font-size: 14px; font-weight: 700; font-feature-settings: "tnum"; color: var(--sage-deep); }
.bank-amount.neg { color: var(--ink-soft); }

.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sage-deep); font-weight: 700; }
.stat-value { font-family: var(--font-serif); font-size: 44px; line-height: 1; color: var(--ink); margin-top: 6px; font-feature-settings: "tnum"; }
.stat-suffix { font-size: 12px; color: var(--ink-soft); margin-top: 6px; }

/* ---------- Strip ---------- */
.strip { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--ink-soft);
}
.strip-inner > span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.strip-logos {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.strip-logos span {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.2s var(--ease);
}
.strip-logos span:hover { opacity: 1; }

/* ---------- Sections / section heads ---------- */
.features, .compliance, .nordic, .waitlist-section { padding: clamp(64px, 9vw, 120px) 0; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head .display-s { margin-top: 6px; }
.section-lede {
  margin-top: 20px;
  font-size: 18px;
  color: var(--ink-soft);
}

/* ---------- Features grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--tint, var(--sage-soft)) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature > * { position: relative; }
.feat-sage { --tint: var(--sage-soft); }
.feat-peach { --tint: var(--peach-soft); }
.feat-sky { --tint: var(--sky-soft); }
.feat-lavender { --tint: var(--lavender-soft); }

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--tint);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--ink);
}
.feat-sage .feat-icon { color: var(--sage-deep); }
.feat-peach .feat-icon { color: #B86E47; }
.feat-sky .feat-icon { color: #4E7393; }
.feat-lavender .feat-icon { color: #6B5AA3; }
.feat-icon svg { width: 24px; height: 24px; }

.feature h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.feature p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- Compliance ---------- */
.compliance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.compliance-copy p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  max-width: 56ch;
}
.check-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sage-soft);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: 9px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--sage-deep);
  border-bottom: 2px solid var(--sage-deep);
  transform: rotate(-45deg);
}

.compliance-card {
  background: linear-gradient(165deg, var(--sage-soft), var(--paper) 70%);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.compliance-card .badge {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--sage-deep);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.compliance-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 400;
}
.compliance-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  margin-top: 32px;
  padding: 20px 0 0;
  border-top: 1px dashed var(--line);
}
.mini-chart .bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--sage), var(--sage-deep));
  border-radius: 6px 6px 0 0;
  transform-origin: bottom;
  animation: growBar 1.2s var(--ease) both;
}
.mini-chart .bar:nth-child(1) { animation-delay: 0.05s; }
.mini-chart .bar:nth-child(2) { animation-delay: 0.1s; }
.mini-chart .bar:nth-child(3) { animation-delay: 0.15s; }
.mini-chart .bar:nth-child(4) { animation-delay: 0.2s; }
.mini-chart .bar:nth-child(5) { animation-delay: 0.25s; }
.mini-chart .bar:nth-child(6) { animation-delay: 0.3s; }
.mini-chart .bar:nth-child(7) { animation-delay: 0.35s; }
@keyframes growBar {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

/* ---------- Nordic ---------- */
.nordic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.nordic-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nordic-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.nordic-card .flag {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--cream-warm);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
}
.nordic-card.live .flag {
  background: linear-gradient(135deg, var(--sage), var(--sage-deep));
  color: var(--cream);
}
.nordic-card strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.nordic-card em {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
  font-style: normal;
}
.nordic-card.live em { color: var(--sage-deep); font-weight: 600; }

/* ---------- Waitlist section ---------- */
.waitlist-section {
  position: relative;
}
.waitlist-inner {
  background: linear-gradient(145deg, var(--paper), var(--cream-warm));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 64px);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.waitlist-inner::before {
  content: "";
  position: absolute;
  inset: auto -60px -140px auto;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--peach-soft), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.waitlist-inner > * { position: relative; z-index: 1; }
.waitlist-inner p {
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-inline: auto;
  font-size: 17px;
}
.fineprint { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 28px;
  margin-top: 40px;
}
.site-footer .logo { color: var(--cream); }
.site-footer .logo-mark { background: linear-gradient(135deg, var(--sage-soft), var(--sage)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-footer .logo-dot { color: var(--peach); }
.site-footer .logo-tld { color: #9AA1B8; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  margin-top: 18px;
  color: #B5BAC9;
  font-size: 14px;
  line-height: 1.65;
  max-width: 36ch;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.footer-cols h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9AA1B8;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-cols a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  color: var(--cream);
  transition: color 0.2s var(--ease);
}
.footer-cols a:hover { color: var(--peach); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: #9AA1B8;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAF6F0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; margin-top: 20px; }
  .card-invoice { right: 10px; }
  .card-bank { left: 20px; bottom: 40px; }
  .card-stat { right: 30px; top: 46%; }
  .compliance-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    padding: 16px 5vw 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block;
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links.open .btn { margin-top: 12px; justify-content: center; }

  .waitlist-form { flex-direction: column; padding: 12px; gap: 10px; border-radius: var(--r-md); }
  .waitlist-form input { width: 100%; padding: 14px 16px; }
  .waitlist-form button { width: 100%; justify-content: center; padding: 14px 20px; }

  .trust-row { gap: 12px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-footer { padding: 48px 0 24px; }

  .hero-visual { min-height: 460px; }
  .card-invoice { width: 280px; right: 0; }
  .card-bank { width: 260px; left: 0; }
  .card-stat { width: 190px; right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
