/* ───────────────────────────────────────────────────────────────
   ミセバ / Miseba — SMMA landing
   System: "Air" DNA (light, airy, frosted glass, huge expressive
   display type, single-accent discipline) retuned WARM + feed-like
   for an Instagram-first 映え brand. Independent from Veska (no
   black/green) and from Bridge (no corporate-clean).
   Mobile-first; scales up at 720 / 1080.
   ─────────────────────────────────────────────────────────────── */

:root {
  /* warm canvas + surfaces */
  --paper: #FBF6EE;       /* warm cream canvas */
  --paper-2: #F4EADD;     /* deeper cream band */
  --surface: #FFFFFF;     /* cloud-white cards */
  --haze: #F3ECE0;        /* haze surface (inputs / quiet cards) */
  --espresso: #1E1813;    /* deep contrast band */
  --espresso-2: #2A221A;

  /* ink */
  --ink: #1E1610;
  --ink-2: #4A3F34;
  --muted: #8A7B6B;
  --faint: rgba(30, 22, 16, 0.30);
  --hair: rgba(30, 22, 16, 0.10);
  --hair-d: rgba(255, 248, 238, 0.13);

  /* 映え accent pair — coral + tangerine (driven by JS too) */
  --pop: #FF4D5E;
  --pop-2: #FFB23E;
  --pop-ink: #ffffff;     /* text on --pop */

  /* fonts */
  --f-sans: 'Inter', 'Noto Sans JP', ui-sans-serif, system-ui, sans-serif;
  --f-jp: 'Zen Maru Gothic', 'Noto Sans JP', ui-sans-serif, sans-serif;
  --f-disp: 'Oswald', 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  --f-script: 'Dancing Script', cursive;
  --f-mono: 'Space Mono', ui-monospace, monospace;

  /* radii */
  --r-card: 20px;
  --r-img: 16px;
  --r-input: 12px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(30,22,16,.04), 0 18px 40px -24px rgba(30,22,16,.28);
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.lang-ja body, body.lang-ja { font-family: var(--f-jp); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 720px) { .wrap { padding: 0 36px; } }
@media (min-width: 1080px) { .wrap { padding: 0 48px; } }

/* mono tag (family DNA) */
.tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.tag .dot { color: var(--pop); }
.lang-ja .tag { letter-spacing: 0.12em; }

.script { font-family: var(--f-disp); font-weight: 700; font-style: normal; }

/* ── buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-size: 14px; font-weight: 700; letter-spacing: 0.01em;
  cursor: pointer; border: none; white-space: nowrap;
  transition: transform .16s cubic-bezier(.3,.7,.4,1), box-shadow .16s, background .16s, color .16s;
}
.lang-ja .btn { font-family: var(--f-jp); font-weight: 700; }
.btn-pop {
  background: var(--pop); color: var(--pop-ink);
  box-shadow: 0 10px 24px -8px color-mix(in oklab, var(--pop) 70%, transparent);
}
.btn-pop:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 16px 30px -8px color-mix(in oklab, var(--pop) 65%, transparent); }
.btn-line { background: #06C755; color: #fff; box-shadow: 0 10px 24px -10px rgba(6,199,85,.7); }
.btn-line:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--faint); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn .ic { font-size: 16px; line-height: 0; }

/* ── nav ─────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
body.nav-scrolled .nav {
  background: color-mix(in oklab, var(--paper) 72%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid var(--hair);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 720px) { .nav-inner { height: 76px; } }

/* wordmark */
.brand { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.brand-mark {
  position: relative; width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 32% 30%, var(--pop-2), var(--pop) 75%);
  box-shadow: 0 4px 14px -4px color-mix(in oklab, var(--pop) 60%, transparent);
}
.brand-mark::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 68% 70%, rgba(255,255,255,.55), transparent 42%);
}
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b { font-family: var(--f-jp); font-weight: 700; font-size: 21px; letter-spacing: 0.02em; color: var(--ink); }
.brand-word i { font-family: var(--f-mono); font-style: normal; font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav-right { display: flex; align-items: center; gap: 10px; }

/* language toggle */
.lang-toggle { display: flex; border: 1px solid var(--faint); border-radius: var(--r-pill); overflow: hidden; }
.lang-toggle button {
  background: transparent; color: var(--muted); border: none;
  padding: 6px 11px; font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; cursor: pointer; transition: color .15s, background .15s;
}
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle button.on { background: var(--ink); color: var(--paper); }
.nav .btn-nav { display: none; }
@media (min-width: 560px) { .nav .btn-nav { display: inline-flex; } }

/* ── section scaffolding ─────────────────────── */
section { position: relative; }
.sec { padding: 72px 0; }
@media (min-width: 720px) { .sec { padding: 110px 0; } }
.sec-head { margin-bottom: 36px; }
.sec-head .tag { display: block; margin-bottom: 14px; }
.sec-head h2 {
  margin: 0; font-family: var(--f-jp); font-weight: 700;
  font-size: clamp(30px, 7vw, 56px); letter-spacing: 0.01em; line-height: 1.15;
}
.sec-head p { margin: 16px 0 0; max-width: 540px; color: var(--ink-2); font-size: 16px; }

.eyebrow-num { font-family: var(--f-mono); font-size: 12px; color: var(--pop); letter-spacing: 0.1em; }

/* ── hero ────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 104px 0 56px;
  background:
    radial-gradient(120% 90% at 85% 0%, color-mix(in oklab, var(--pop-2) 26%, transparent), transparent 55%),
    radial-gradient(120% 90% at 0% 30%, color-mix(in oklab, var(--pop) 18%, transparent), transparent 50%),
    var(--paper);
}
@media (min-width: 1080px) { .hero { padding: 150px 0 90px; } }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1080px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; } }

.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 10px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--hair);
  box-shadow: var(--shadow-card); margin-bottom: 22px;
}
.hero-pill .live { width: 8px; height: 8px; border-radius: 50%; background: var(--pop); box-shadow: 0 0 0 0 color-mix(in oklab, var(--pop) 70%, transparent); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--pop) 55%, transparent); } 70% { box-shadow: 0 0 0 9px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.hero-pill span { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }

.hero h1 {
  margin: 0; font-family: var(--f-jp); font-weight: 700;
  font-size: clamp(36px, 10.5vw, 78px); line-height: 1.16; letter-spacing: 0.005em;
}
.hero h1 .hl {
  position: relative; white-space: nowrap; color: var(--ink);
  background-image: linear-gradient(100deg, var(--pop), var(--pop-2));
  background-repeat: no-repeat;
  background-position: 0 0.86em;
  background-size: 100% 0.32em;
  padding: 0 0.04em;
}
.hero h1 .pop { color: var(--pop); }
.hero h1 .scr { font-family: inherit; font-weight: 700; color: var(--pop); letter-spacing: 0; }
.hero-sub { margin: 24px 0 0; max-width: 460px; color: var(--ink-2); font-size: clamp(15px, 4.2vw, 18px); line-height: 1.8; }
.hero-flourish { margin-top: 12px; line-height: 0.9; }
.hero-flourish span.scr-stamp, .hero-flourish > span {
  display: inline-block; font-family: var(--f-jp); font-weight: 700; color: var(--pop);
  font-size: clamp(44px, 12vw, 76px); line-height: 1; transform: rotate(-3deg); transform-origin: left center;
  text-shadow: 3px 3px 0 color-mix(in oklab, var(--pop-2) 55%, transparent);
}

/* ── eyes (logo dot + hero googly) ───────────────── */
.eye { position: relative; overflow: hidden; }
.eye .pupil {
  position: absolute; top: 50%; left: 50%;
  width: 38%; height: 38%; margin-top: -19%; margin-left: -19%;
  border-radius: 50%; background: #17110c;
  transform: translate(0, 0);
  transition: transform .14s cubic-bezier(.3, .7, .4, 1);
  will-change: transform;
}
.brand-mark.eye .pupil { width: 34%; height: 34%; margin-top: -17%; margin-left: -17%; }
.googly { display: flex; gap: 7px; margin: 0 0 5px 6px; transform: rotate(-3deg); }
.eye.gw {
  width: clamp(27px, 7vw, 38px); height: clamp(27px, 7vw, 38px); border-radius: 50%;
  background: #fff; border: 1px solid rgba(30, 22, 16, 0.08);
  box-shadow: inset 0 -3px 6px rgba(30, 22, 16, 0.16), 0 3px 9px rgba(30, 22, 16, 0.18);
}
.eye.gw .pupil { width: 44%; height: 44%; margin-top: -22%; margin-left: -22%; }
.eye.gw .pupil::after {
  content: ''; position: absolute; top: 16%; left: 16%; width: 32%; height: 32%;
  border-radius: 50%; background: rgba(255, 255, 255, 0.9);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; margin-top: 28px; }
.hero-trust .tag { color: var(--muted); }
.hero-trust b { font-family: var(--f-mono); color: var(--ink); font-size: 13px; }

/* hero feed wall — auto-scrolling IG-style columns */
.feedwall {
  position: relative; height: 420px; border-radius: 26px; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}
@media (min-width: 1080px) { .feedwall { height: 560px; } }
.feedwall-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; height: 100%; }
.fcol { display: flex; flex-direction: column; gap: 12px; will-change: transform; }
.fcol-a { animation: feedUp 26s linear infinite; }
.fcol-b { animation: feedDown 30s linear infinite; }
.fcol-c { animation: feedUp 34s linear infinite; }
@keyframes feedUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes feedDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .fcol-a, .fcol-b, .fcol-c { animation: none; } }

.ftile {
  position: relative; flex: none; border-radius: var(--r-img); overflow: hidden;
  background: var(--haze); box-shadow: var(--shadow-card);
}
.ftile image-slot { width: 100%; height: 100%; display: block; }
.ftile.t1 { aspect-ratio: 4/5; }
.ftile.t2 { aspect-ratio: 1/1; }
.ftile.t3 { aspect-ratio: 3/4; }
.ftile .badge {
  position: absolute; left: 8px; bottom: 8px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px; border-radius: var(--r-pill);
  background: rgba(20,14,10,.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.06em;
}
.ftile .badge b { color: var(--pop-2); }
/* a few solid "card" tiles for energy when slots are empty */
.ftile.card-pop { background: linear-gradient(150deg, var(--pop), color-mix(in oklab, var(--pop) 60%, var(--pop-2))); }
.ftile.card-sun { background: linear-gradient(150deg, var(--pop-2), #ffd27a); }
.ftile.card-ink { background: var(--espresso); }
.ftile .cardtext {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px; color: #fff;
}
.ftile .cardtext .big { font-family: var(--f-disp); font-weight: 700; font-size: 30px; line-height: 1; text-transform: uppercase; }
.ftile.card-ink .cardtext .big { color: var(--pop-2); }
.ftile .cardtext .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: .85; margin-top: 4px; }

/* keyword marquee under hero */
.kwbar { margin-top: 48px; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); overflow: hidden; padding: 14px 0; }
.kwtrack { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.kwbar:hover .kwtrack { animation-play-state: paused; }
.kwtrack span { display: inline-flex; align-items: center; font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2); padding-right: 38px; white-space: nowrap; }
.kwtrack span .star { color: var(--pop); padding: 0 38px 0 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── services ────────────────────────────────── */
.svc-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.svc { flex: 0 1 100%; }
@media (min-width: 560px) { .svc { flex-basis: calc((100% - 14px) / 2); } }
@media (min-width: 1080px) { .svc-grid { gap: 18px; } .svc { flex-basis: calc((100% - 36px) / 3); } }
.svc {
  position: relative; background: var(--surface); border: 1px solid var(--hair);
  border-radius: var(--r-card); padding: 26px 24px 28px; overflow: hidden;
  transition: transform .2s cubic-bezier(.3,.7,.4,1), box-shadow .2s, border-color .2s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.svc-ic {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: color-mix(in oklab, var(--pop) 12%, var(--surface));
  color: var(--pop); margin-bottom: 18px;
}
.svc-ic svg { width: 24px; height: 24px; }
.svc:nth-child(3n+2) .svc-ic { background: color-mix(in oklab, var(--pop-2) 16%, var(--surface)); color: color-mix(in oklab, var(--pop-2) 75%, var(--ink)); }
.svc .num { position: absolute; top: 22px; right: 22px; font-family: var(--f-mono); font-size: 12px; color: var(--faint); }
.svc h3 { margin: 0 0 4px; font-family: var(--f-jp); font-weight: 700; font-size: 20px; }
.svc .en { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pop); }
.svc p { margin: 12px 0 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }

/* ── why / approach ──────────────────────────── */
.why { background: var(--paper-2); }
.meaning { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; }
@media (min-width: 720px) { .meaning { grid-template-columns: 1fr 1fr; gap: 20px; } }
.meaning-card {
  background: var(--surface); border-radius: var(--r-card); padding: 30px 28px;
  border: 1px solid var(--hair);
}
.meaning-card .kanji { font-family: var(--f-jp); font-weight: 700; font-size: clamp(48px, 12vw, 84px); line-height: 1; color: var(--ink); }
.meaning-card .kanji em { font-style: normal; color: var(--pop); }
.meaning-card .romaji { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin: 14px 0 10px; }
.meaning-card h4 { margin: 0 0 8px; font-family: var(--f-jp); font-size: 18px; font-weight: 700; }
.meaning-card p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.75; }
.meaning-eq { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 6px 0 56px; font-family: var(--f-script); color: var(--pop); font-size: 30px; }

.steps { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: 24px 22px; background: var(--surface); border-radius: var(--r-card); border: 1px solid var(--hair); }
.step .sn { font-family: var(--f-disp); font-weight: 700; font-size: 40px; line-height: 1; color: color-mix(in oklab, var(--pop) 30%, var(--paper-2)); }
.step h4 { margin: 10px 0 6px; font-family: var(--f-jp); font-weight: 700; font-size: 17px; }
.step p { margin: 0; color: var(--ink-2); font-size: 13.5px; line-height: 1.65; }

/* ── results (dark band) ─────────────────────── */
.results { background: var(--espresso); color: var(--paper); }
.results .sec-head h2 { color: var(--paper); }
.results .sec-head .tag, .results .tag { color: rgba(251,246,238,.6); }
.results .sec-head p { color: rgba(251,246,238,.7); }
.results-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 880px) { .results-grid { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; } }

.case {
  background: var(--espresso-2); border: 1px solid var(--hair-d);
  border-radius: var(--r-card); padding: 26px 24px;
}
.case-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.case-top h3 { margin: 0; font-family: var(--f-jp); font-weight: 700; font-size: 19px; color: var(--paper); }
.case-top .chip { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--espresso); background: var(--pop-2); padding: 4px 9px; border-radius: var(--r-pill); }
.case .sub { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(251,246,238,.5); margin-bottom: 18px; }
.chart { width: 100%; height: 170px; display: block; }
.chart .axis { stroke: var(--hair-d); stroke-width: 1; }
.chart .line { fill: none; stroke: var(--pop); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.chart .area { fill: url(#gpop); opacity: .9; }
.chart .dot { fill: var(--pop); }
.case-foot { display: flex; gap: 18px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--hair-d); }
.case-foot .m { flex: 1; }
.case-foot .m b { display: block; font-family: var(--f-disp); font-weight: 700; font-size: 30px; line-height: 1; color: var(--pop-2); }
.case-foot .m span { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(251,246,238,.55); }

/* before/after feed makeover */
.ba { background: var(--espresso-2); border: 1px solid var(--hair-d); border-radius: var(--r-card); padding: 24px; display: flex; flex-direction: column; }
.ba h3 { margin: 0 0 16px; font-family: var(--f-jp); font-weight: 700; font-size: 19px; color: var(--paper); }
.ba-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; flex: 1; }
.ba-col .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.ba-col.before .lbl { color: rgba(251,246,238,.45); }
.ba-col.after .lbl { color: var(--pop-2); }
.ba-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.ba-mini i { aspect-ratio: 1; border-radius: 7px; display: block; }
.ba-col.before .ba-mini i { background: #3a3128; filter: grayscale(1) brightness(.8); }
.ba-col.before .ba-mini i:nth-child(odd) { background: #463b30; }
.ba-col.after .ba-mini i:nth-child(1) { background: linear-gradient(135deg, var(--pop), var(--pop-2)); }
.ba-col.after .ba-mini i:nth-child(2) { background: linear-gradient(135deg, var(--pop-2), #ffd27a); }
.ba-col.after .ba-mini i:nth-child(3) { background: linear-gradient(135deg, #ff7a8a, var(--pop)); }
.ba-col.after .ba-mini i:nth-child(4) { background: linear-gradient(135deg, var(--pop-2), var(--pop)); }
.ba-arrow { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-family: var(--f-jp); font-weight: 700; color: var(--pop-2); font-size: 18px; }

.results-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 22px; border: 1px solid var(--hair-d); border-radius: var(--r-card); overflow: hidden; }
.results-stats .rs { padding: 22px 18px; border-left: 1px solid var(--hair-d); }
.results-stats .rs:first-child { border-left: none; }
.results-stats .rs b { display: block; font-family: var(--f-disp); font-weight: 700; font-size: clamp(28px, 6vw, 44px); line-height: 1; color: var(--pop); }
.results-stats .rs span { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(251,246,238,.55); display: block; margin-top: 8px; }
.results .note { margin-top: 16px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.04em; color: rgba(251,246,238,.4); }

/* ── part of Veska ───────────────────────────── */
.veska-line { padding: 56px 0; }
.veska-card {
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-card);
  padding: 30px 28px;
}
@media (min-width: 720px) { .veska-card { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; padding: 30px 36px; } }
.veska-card .vk-l { display: flex; align-items: center; gap: 16px; min-width: 0; }
.veska-card .vk-mark { width: 34px; height: 32px; position: relative; flex: none; }
.veska-card .vk-mark i { position: absolute; top: 0; width: 7px; height: 32px; border-radius: 4px; }
.veska-card .vk-mark i:first-child { left: 4px; background: var(--ink); transform: rotate(-16deg); transform-origin: top left; }
.veska-card .vk-mark i:last-child { right: 4px; background: #2bee4b; transform: rotate(16deg); transform-origin: top right; }
.veska-card .vk-t { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.veska-card .vk-t b { font-family: var(--f-jp); font-weight: 700; font-size: 16px; line-height: 1.45; }
.veska-card .vk-t span { color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* ── CTA + form ──────────────────────────────── */
.cta { background: var(--paper-2); }
.cta-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 880px) { .cta-grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } }
.cta h2 { margin: 0; font-family: var(--f-jp); font-weight: 700; font-size: clamp(32px, 8vw, 60px); line-height: 1.15; }
.cta h2 .scr { color: var(--pop); }
.cta-lead { margin: 20px 0 28px; color: var(--ink-2); font-size: 16px; line-height: 1.8; max-width: 420px; }
.cta-channels { display: flex; flex-direction: column; gap: 12px; max-width: 360px; }
.chan {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-card);
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.chan:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); border-color: transparent; }
.chan-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex: none; }
.chan-ic.ig { background: linear-gradient(135deg, #FEDA77, #F58529 28%, #DD2A7B 62%, #8134AF 100%); }
.chan-ic.line { background: #06C755; }
.chan-ic.mail { background: var(--ink); }
.chan-ic svg { width: 22px; height: 22px; }
.chan .ct { flex: 1; min-width: 0; }
.chan .ct b { display: block; font-family: var(--f-jp); font-weight: 700; font-size: 15px; line-height: 1.3; }
.chan .ct span { display: block; color: var(--muted); font-size: 12.5px; font-family: var(--f-mono); letter-spacing: 0.02em; margin-top: 2px; }
.chan .arr { margin-left: auto; color: var(--faint); font-size: 18px; }

/* form */
.form { background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-card); padding: 28px 26px; box-shadow: var(--shadow-card); }
.form .frow { margin-bottom: 16px; }
.form label { display: block; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form input, .form select, .form textarea {
  width: 100%; font-family: var(--f-sans); font-size: 15px; color: var(--ink);
  background: var(--haze); border: 1px solid transparent; border-radius: var(--r-input);
  padding: 12px 14px; outline: none; transition: border-color .15s, background .15s;
}
.lang-ja .form input, .lang-ja .form select, .lang-ja .form textarea { font-family: var(--f-jp); }
.form textarea { resize: vertical; min-height: 96px; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--pop); background: var(--surface); }
.form .btn { width: 100%; margin-top: 6px; }
.form .fnote { margin: 14px 0 0; font-size: 12px; color: var(--muted); text-align: center; }

/* ── footer ──────────────────────────────────── */
footer { background: var(--espresso); color: var(--paper); padding: 56px 0 40px; }
.foot-top { display: flex; flex-direction: column; gap: 28px; padding-bottom: 32px; border-bottom: 1px solid var(--hair-d); }
@media (min-width: 720px) { .foot-top { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.foot-brand .brand-word b { color: var(--paper); }
.foot-brand p { margin: 16px 0 0; max-width: 320px; color: rgba(251,246,238,.6); font-size: 14px; line-height: 1.7; }
.foot-links { display: flex; flex-wrap: wrap; gap: 26px 40px; }
.foot-col h5 { margin: 0 0 14px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,246,238,.45); }
.foot-col a { display: block; white-space: nowrap; color: rgba(251,246,238,.8); font-size: 14px; padding: 5px 0; line-height: 1.4; transition: color .15s; }
.foot-col a:hover { color: var(--pop-2); }
.foot-bot { display: flex; flex-direction: column; gap: 10px; padding-top: 26px; }
@media (min-width: 560px) { .foot-bot { flex-direction: row; justify-content: space-between; align-items: center; } }
.foot-bot .tag { color: rgba(251,246,238,.45); }
.foot-bot .vk { display: inline-flex; align-items: center; gap: 8px; color: rgba(251,246,238,.6); font-size: 12.5px; white-space: nowrap; }
.foot-bot .vk b { color: var(--paper); }
.foot-bot .vk:hover b { color: var(--pop-2); }

/* ── reveal on scroll (base visible; JS adds .pre then tweens) ─── */
.rv { opacity: 1; transform: none; }
.rv.pre { opacity: 0; transform: translateY(26px); }
@media (prefers-reduced-motion: reduce) { .rv.pre { opacity: 1; transform: none; } }
.rv { transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }

/* energy levels via body data-attr */
body[data-energy="chill"] .fcol-a, body[data-energy="chill"] .fcol-b, body[data-energy="chill"] .fcol-c { animation-duration: 60s; }
body[data-energy="lively"] .fcol-a { animation-duration: 16s; }
body[data-energy="lively"] .fcol-b { animation-duration: 19s; }
body[data-energy="lively"] .fcol-c { animation-duration: 22s; }
body[data-energy="chill"] .kwtrack { animation-duration: 64s; }
body[data-energy="lively"] .kwtrack { animation-duration: 22s; }

/* corner style tweak */
body[data-corners="sharp"] { --r-card: 6px; --r-img: 4px; --r-input: 4px; --r-pill: 6px; }
