/* ========================================================================
   ASLAC — Japan Market Entry Partner
   Design tokens
   ======================================================================== */
:root {
  --ink:        #0e1116;   /* near-black text / dark sections */
  --ink-soft:   #2b3138;
  --muted:      #5b6672;
  --line:       #e6e3da;
  --paper:      #faf9f5;   /* warm off-white */
  --paper-2:    #f2efe6;   /* alt section */
  --white:      #ffffff;
  --accent:     #e4002b;   /* Japan red — used sparingly */
  --accent-ink: #b80022;
  --radius:     14px;
  --radius-lg:  22px;
  --maxw:       1160px;
  --shadow-sm:  0 1px 2px rgba(14,17,22,.06), 0 6px 20px rgba(14,17,22,.05);
  --shadow-md:  0 10px 40px rgba(14,17,22,.10);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
}

/* ========================================================================
   Reset / base
   ======================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -.02em; margin: 0; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.container.narrow { max-width: 780px; }

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

/* ========================================================================
   Buttons
   ======================================================================== */
.btn {
  --pad-y: .72rem; --pad-x: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: .95rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { --pad-y: .95rem; --pad-x: 1.7rem; font-size: 1rem; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

/* ========================================================================
   Header
   ======================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: .02em; }
.brand-sub { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav > a { font-size: .95rem; color: var(--ink-soft); font-weight: 500; transition: color .2s ease; }
.nav > a:not(.nav-cta):hover { color: var(--accent); }
.nav-cta { margin-left: .4rem; }
.nav > a.nav-cta, .nav > a.nav-cta:hover { color: #fff; }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle span + span { margin-top: 5px; }
.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 {
  position: relative;
  padding: clamp(4.5rem, 10vw, 9rem) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  color: #fff;
  background-color: var(--ink);
  /* Dark overlay keeps text readable; drop images/hero-bg.jpg to fill.
     Until then, the gradient over --ink reads as an intentional dark hero. */
  background-image:
    linear-gradient(100deg, rgba(12,14,19,.94) 0%, rgba(12,14,19,.74) 48%, rgba(12,14,19,.5) 100%),
    url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(48% 46% at 86% 8%, rgba(228,0,43,.30), transparent 62%);
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; }
.eyebrow {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em; font-size: .8rem;
  color: #ff6d84; margin: 0 0 1.1rem;
}
.hero-title { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 700; color: #fff; }
.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: rgba(255,255,255,.82); max-width: 680px; margin: 1.5rem 0 2rem;
}
.hero-lede strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem;
  padding: 0; margin: 2.6rem 0 0;
}
.hero-chips li {
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
  padding: .4rem .85rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ========================================================================
   Sections
   ======================================================================== */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--paper-2); }
.section-kicker {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em; font-size: .78rem;
  color: var(--accent); margin: 0 0 .9rem;
}
.section-title { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 700; max-width: 20ch; }
.section-intro { color: var(--ink-soft); max-width: 620px; margin: 1.2rem 0 0; font-size: 1.08rem; }

/* Opportunity two-column */
.two-col {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: start; margin-top: 2.6rem;
}
.prose p { margin: 0 0 1.1rem; color: var(--ink-soft); font-size: 1.06rem; }
.prose .lead-line { color: var(--ink); font-weight: 500; font-size: 1.15rem; }
.prose strong { color: var(--ink); }

.stat-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.stat-list li {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm);
}
.stat-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: var(--accent); line-height: 1; }
.stat-label { display: block; margin-top: .5rem; color: var(--muted); font-size: .95rem; }

/* ========================================================================
   Services cards
   ======================================================================== */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-top: 2.8rem;
}
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d9d4c6; }
.card-feature { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-sm); }
.card-tag {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: .68rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent); margin-bottom: .8rem;
}
.card h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.services-footnote {
  margin: 2.4rem 0 0; text-align: center; color: var(--muted);
  font-size: 1.02rem; font-style: italic;
}
.services-footnote em { color: var(--ink); font-style: normal; font-weight: 600; }

.card-more { display: flex; flex-direction: column; }
.card-link {
  margin-top: auto; padding-top: .9rem;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  color: var(--accent);
}
.card-link:hover { color: var(--accent-ink); }

/* Card background watermark icons */
.wm { position: relative; overflow: hidden; }
.wm > * { position: relative; z-index: 1; }
.wm::after {
  content: ""; position: absolute; z-index: 0;
  right: -24px; bottom: -24px; width: 158px; height: 158px;
  background-repeat: no-repeat; background-size: contain; background-position: center;
  opacity: .06; transform: rotate(-8deg);
  pointer-events: none;
  transition: opacity .2s ease;
}
.wm:hover::after { opacity: .11; }
.wm-cart::after {
  transform: scaleX(-1) rotate(-8deg);
  right: -18px; bottom: -16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230e1116" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="21" r="1"/><circle cx="20" cy="21" r="1"/><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"/></svg>');
}
.wm-store::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230e1116" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7"/><path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"/><path d="M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4"/><path d="M2 7h20"/><path d="M22 7v3a2 2 0 0 1-2 2 2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7"/></svg>');
}
.wm-bag::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230e1116" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"/><line x1="3" y1="6" x2="21" y2="6"/><path d="M16 10a4 4 0 0 1-8 0"/></svg>');
}
.wm-rocket::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230e1116" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z"/><path d="m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z"/><path d="M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0"/><path d="M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5"/></svg>');
}
.wm-megaphone::after {
  transform: scaleX(-1) rotate(-8deg);
  right: -26px; bottom: -24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230e1116" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="m3 11 18-5v12L3 14v-3z"/><path d="M11.6 16.8a3 3 0 1 1-5.8-1.6"/></svg>');
}
.wm-package::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230e1116" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="m7.5 4.27 9 5.15"/><path d="M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z"/><path d="m3.3 7 8.7 5 8.7-5"/><path d="M12 22V12"/></svg>');
}

/* ========================================================================
   Retail / Exhibitions — the moat
   ======================================================================== */
/* Concept booth banner — clearly labelled, not presented as a real event.
   Drop images/booth-concept.jpg to fill; degrades to a dark band until then. */
.booth-concept {
  position: relative; margin: 2.6rem 0 0;
  aspect-ratio: 1800 / 1344;
  border-radius: var(--radius-lg); overflow: hidden;
  background-color: var(--ink); background-size: cover; background-position: center;
  background-image: url("images/booth-concept.jpg");
}
.concept-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; color: #fff;
  background: var(--accent); padding: .35rem .7rem; border-radius: 6px;
}
.booth-cap {
  margin: 0; padding: 1.2rem 1.4rem; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  text-shadow: 0 1px 16px rgba(0,0,0,.55);
}

/* Two-up store gallery (real, upscaled photos). */
.retail-gallery {
  margin: 2.6rem 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.retail-shot {
  position: relative; margin: 0; min-height: 300px;
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: flex-end;
  background-color: var(--ink); background-size: cover; background-position: center;
}
.retail-shot--tsutaya {
  background-image:
    linear-gradient(180deg, rgba(14,17,22,.04) 40%, rgba(14,17,22,.8)),
    url("images/tsutaya-gadgets.jpg");
}
.retail-shot--hands {
  background-image:
    linear-gradient(180deg, rgba(14,17,22,.04) 40%, rgba(14,17,22,.8)),
    url("images/hands-variety.jpg");
}
.retail-shot figcaption {
  margin: 0; padding: 1.2rem 1.4rem; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  text-shadow: 0 1px 16px rgba(0,0,0,.55);
}

.retail-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
  margin-top: 1.4rem;
}
.retail-block {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.9rem; box-shadow: var(--shadow-sm);
}
.retail-block h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.retail-block > p { margin: 0 0 1.3rem; color: var(--ink-soft); }
.tag-group { margin-bottom: 1.2rem; }
.tag-group:last-child { margin-bottom: 0; }
.tag-group-label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); margin: 0 0 .6rem;
}
.tag-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.tag-list li {
  font-family: var(--font-display); font-weight: 600; font-size: .84rem;
  color: var(--ink-soft); background: var(--paper);
  border: 1px solid var(--line); border-radius: 8px;
  padding: .45rem .8rem;
}
.retail-block:first-child .tag-list li { border-left: 3px solid var(--accent); }
.retail-moat {
  margin: 2.4rem 0 0; text-align: center;
  font-family: var(--font-display); font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600; color: var(--ink);
}
.retail-moat strong { color: var(--accent); font-weight: 700; }

/* ========================================================================
   Steps
   ======================================================================== */
.steps {
  list-style: none; margin: 2.8rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  counter-reset: step;
}
.step {
  border-top: 3px solid var(--line); padding-top: 1.2rem;
  transition: border-color .2s ease;
}
.step:hover { border-top-color: var(--accent); }
.step-num { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--accent); letter-spacing: .05em; }
.step h3 { font-size: 1.12rem; margin: .6rem 0 .4rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ========================================================================
   Beyond the campaign — the differentiator
   ======================================================================== */
.contrast {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.2rem; margin-top: 2.6rem;
}
.contrast-card { border-radius: var(--radius-lg); padding: 1.9rem; border: 1px solid var(--line); }
.contrast-label {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: .74rem;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: .6rem;
}
.contrast-most { background: var(--paper-2); }
.contrast-most .contrast-label { color: var(--muted); }
.contrast-most ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.contrast-most li { margin: .45rem 0; }
.contrast-us { background: var(--ink); border-color: var(--ink); color: #eef0f2; }
.contrast-us .contrast-label { color: #ff6d84; }
.contrast-us p { margin: 0; color: #c7cdd4; font-size: 1.08rem; }

.activation { margin-top: 2.2rem; }
.activation-title { font-size: 1.15rem; margin-bottom: 1rem; }
.activation-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem;
}
.activation-list li {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: .8rem 1rem .8rem 2rem; font-size: .95rem; color: var(--ink-soft);
  position: relative;
}
.activation-list li::before {
  content: "✓"; position: absolute; left: .85rem; color: var(--accent); font-weight: 700;
}

.springboard {
  margin-top: 2.6rem; border-radius: var(--radius-lg);
  background: var(--ink); color: #fff; padding: 2.3rem;
  background-image: radial-gradient(65% 130% at 100% 0%, rgba(228,0,43,.30), transparent 60%);
}
.springboard h3 { color: #fff; font-size: clamp(1.3rem, 2.8vw, 2rem); }
.springboard p { margin: .9rem 0 0; color: #c7cdd4; max-width: 64ch; font-size: 1.05rem; }
.springboard-flow { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-top: 1.6rem; }
.springboard-flow span {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  padding: .45rem .95rem; border-radius: 999px;
}
.springboard-flow .arrow { background: none; border: none; color: #ff6d84; padding: 0 .1rem; font-size: 1.15rem; }

/* ========================================================================
   Why us (dark)
   ======================================================================== */
.section-dark { background: var(--ink); color: #eef0f2; }
/* Optional atmospheric backdrop; drop images/retail-shelf.jpg to fill. */
#why-us {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(9,11,15,.9), rgba(9,11,15,.93)),
    url("images/retail-shelf.jpg");
  background-size: cover; background-position: center; background-attachment: fixed;
}
.section-dark .section-title { color: #fff; }
.section-dark .section-kicker { color: #ff5c78; }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
  margin-top: 2.8rem;
}
.why-item {
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: 1.8rem; background: rgba(255,255,255,.03);
  transition: background .2s ease, border-color .2s ease;
}
.why-item:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); }
.why-item h3 { font-size: 1.25rem; color: #fff; margin-bottom: .55rem; }
.why-item p { margin: 0; color: #b9c0c8; font-size: 1rem; }

/* ========================================================================
   FAQ
   ======================================================================== */
.faq { margin-top: 2.4rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.25rem 2.5rem 1.25rem 0;
  position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--accent); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 0 0 1.35rem; color: var(--ink-soft); max-width: 62ch; }

/* ========================================================================
   Contact form
   ======================================================================== */
.contact-form {
  margin-top: 2.4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 500; color: var(--ink-soft); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: 10px;
  padding: .8rem .9rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(228,0,43,.12);
}
.field textarea { resize: vertical; }
.form-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.form-note { margin: 0; font-size: .95rem; color: var(--muted); }
.form-note.ok { color: #1a7f4b; }
.form-note.err { color: var(--accent-ink); }

/* ========================================================================
   Footer
   ======================================================================== */
.site-footer { background: var(--ink); color: #c7cdd4; padding: 3rem 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-start; }
.footer-brand .brand-mark { color: #fff; }
.footer-brand p { margin: .5rem 0 0; color: #9aa2ab; }
.footer-meta { text-align: right; }
.footer-meta a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.35); }
.footer-meta .copyright { color: #7e8791; font-size: .88rem; margin-top: .4rem; }

/* ========================================================================
   Reveal animation
   ======================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ========================================================================
   Responsive
   ======================================================================== */
@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .contrast { grid-template-columns: 1fr; }
  .activation-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 20px 1.5rem;
    transform: translateY(-120%); transition: transform .3s ease;
    box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); }
  .nav > a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin: 1rem 0 0; }
  .nav-toggle { display: block; }
  .cards, .why-grid, .contact-form, .retail-split, .retail-gallery, .activation-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
  .footer-inner { flex-direction: column; }
}
