/* =========================================================================
   NOMOCa-AI chat — Aurora Glow Design System
   明るく余白の効いたオーロラ大気 × ガラス質の浮遊UI
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* base */
  --bg:        #FBFCFE;
  --bg-soft:   #F2F6FB;
  --panel:     #FFFFFF;
  --ink:       #0C1C2C;
  --ink-2:     #29384A;
  --muted:     #5A6B80;
  --muted-2:   #8493A6;
  --line:      rgba(12, 28, 44, .09);
  --line-2:    rgba(12, 28, 44, .05);

  /* brand */
  --primary:     #16BFB2;
  --primary-700: #0E9C95;
  --primary-50:  #E6FAF7;

  /* aurora */
  --mint: #7EF0D0;
  --sky:  #8AB8FF;
  --lav:  #C9B8FF;
  --rose: #FFB8D2;

  /* glass */
  --glass:        rgba(255, 255, 255, .62);
  --glass-strong: rgba(255, 255, 255, .82);
  --glass-border: rgba(255, 255, 255, .85);

  /* gradients */
  --grad-brand:  linear-gradient(120deg, var(--primary) 0%, var(--sky) 60%, var(--lav) 100%);
  --grad-text:   linear-gradient(105deg, var(--primary-700) 0%, var(--primary) 35%, var(--sky) 70%, var(--lav) 100%);
  --grad-soft:   linear-gradient(160deg, #ffffff 0%, var(--bg-soft) 100%);

  /* radius */
  --r-xs: 10px;
  --r-sm: 14px;
  --r:    20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --pill: 999px;

  /* shadow */
  --shadow-sm:  0 2px 10px rgba(16, 42, 67, .06);
  --shadow:     0 14px 40px -16px rgba(16, 42, 67, .22);
  --shadow-lg:  0 40px 80px -28px rgba(16, 42, 67, .30);
  --shadow-glow:0 18px 50px -16px rgba(22, 191, 178, .45);

  /* type */
  --f-display: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, sans-serif;
  --f-body:    "Noto Sans JP", system-ui, sans-serif;
  --f-num:     "Sora", "Zen Kaku Gothic New", system-ui, sans-serif;
  --f-mono:    "Space Mono", ui-monospace, monospace;

  /* motion */
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);

  /* layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --header-h: 76px;

  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: hidden; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  position: relative;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: rgba(22, 191, 178, .22); }

/* ---------- Aurora atmosphere (global, fixed) ---------- */
.aurora-field {
  position: fixed;
  inset: -20vmax;
  z-index: -2;
  pointer-events: none;
  filter: blur(60px) saturate(118%);
  opacity: .9;
}
.aurora-field span {
  position: absolute;
  display: block;
  border-radius: 50%;
  mix-blend-mode: multiply;
  opacity: .5;
}
.aurora-field .a1 { width: 46vmax; height: 46vmax; left: -6vmax; top: -8vmax;
  background: radial-gradient(circle at 50% 50%, var(--mint), transparent 62%);
  animation: drift1 26s var(--ease-in-out) infinite; }
.aurora-field .a2 { width: 50vmax; height: 50vmax; right: -10vmax; top: -4vmax;
  background: radial-gradient(circle at 50% 50%, var(--sky), transparent 62%);
  animation: drift2 32s var(--ease-in-out) infinite; }
.aurora-field .a3 { width: 42vmax; height: 42vmax; left: 28vmax; top: 30vmax;
  background: radial-gradient(circle at 50% 50%, var(--lav), transparent 64%);
  animation: drift3 38s var(--ease-in-out) infinite; }
.aurora-field .a4 { width: 34vmax; height: 34vmax; right: 4vmax; bottom: -6vmax;
  background: radial-gradient(circle at 50% 50%, var(--rose), transparent 66%);
  animation: drift1 30s var(--ease-in-out) infinite reverse; }

/* faint grain to avoid gradient banding */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6vmax, 4vmax) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1.05); } 50% { transform: translate(-7vmax, 5vmax) scale(.92); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4vmax, -6vmax) scale(1.15); } }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--primary-700);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}

h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.22; letter-spacing: -.01em; color: var(--ink); font-weight: 700; }

.display {
  font-weight: 900;
  font-size: clamp(2.05rem, 4.7vw, 3.55rem);
  line-height: 1.16;
  letter-spacing: -.02em;
}
.h2 { font-size: clamp(1.7rem, 3.6vw, 2.8rem); font-weight: 900; line-height: 1.18; }
.lead { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--muted); line-height: 1.95; font-weight: 500; }

.grad {
  /* palindrome gradient so the loop is seamless; flows left → right */
  background: linear-gradient(90deg, var(--primary-700), var(--primary), var(--sky), var(--lav), var(--sky), var(--primary), var(--primary-700));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradFlow 4s linear infinite;
}
@keyframes gradFlow { from { background-position: 0% center; } to { background-position: 200% center; } }

.num { font-family: var(--f-num); font-feature-settings: "tnum"; letter-spacing: -.02em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }

.tint { background:
    radial-gradient(120% 120% at 100% 0%, rgba(138,184,255,.10), transparent 55%),
    var(--grad-soft);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 1rem 1.7rem;
  border-radius: var(--pill);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .3s;
  white-space: nowrap;
  isolation: isolate;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: linear-gradient(120deg, #fff6, transparent 40%);
  opacity: 0; transition: opacity .35s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -16px rgba(22,191,178,.6); }
.btn-primary:hover::before { opacity: .6; }
.btn-ghost {
  background: var(--glass-strong);
  color: var(--ink);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow), inset 0 0 0 1px rgba(22,191,178,.5); color: var(--primary-700); }
.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .35s var(--ease), background .35s, box-shadow .35s, backdrop-filter .35s;
}
.site-header .container { display: flex; align-items: center; gap: 1.5rem; }
.site-header.scrolled {
  height: 64px;
  background: rgba(251,252,254,.72);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(16,42,67,.4);
}
/* compact CTA in the header (in-page CTAs stay full size) */
.site-header .btn-primary { padding: .58rem 1.2rem; font-size: .84rem; box-shadow: 0 10px 26px -14px rgba(22,191,178,.5); }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--f-display); font-weight: 900; font-size: 1.18rem; letter-spacing: -.02em; }
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand b { color: var(--ink); }
.brand .ai { color: var(--primary-700); }
.brand small { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .18em; color: var(--muted-2); font-weight: 700; text-transform: uppercase; align-self: flex-start; margin-top: .15em; }

.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(.5rem, 1.8vw, 1.7rem); }
.nav-menu { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.6rem); }
.nav-menu a { font-weight: 700; font-size: .92rem; color: var(--ink-2); position: relative; padding: .3rem 0; transition: color .25s; }
.nav-menu a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--grad-brand); border-radius: 2px; transition: width .3s var(--ease); }
.nav-menu a:hover { color: var(--primary-700); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.tel-chip { display: inline-flex; flex-direction: column; line-height: 1.1; font-family: var(--f-num); font-weight: 800; color: var(--ink); }
.tel-chip span { font-family: var(--f-mono); font-size: .56rem; letter-spacing: .14em; color: var(--muted); font-weight: 700; }
.tel-chip b { font-size: 1.1rem; }

.env-badge {
  display: inline-flex; align-items: center; gap: .45em;
  font-family: var(--f-mono); font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: .35em .7em; border-radius: var(--pill);
  background: var(--primary-50); color: var(--primary-700);
  box-shadow: inset 0 0 0 1px rgba(22,191,178,.25);
}
.env-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 0 rgba(22,191,178,.6); animation: pulse 2.4s infinite; }
.env-badge.prod { background: #FFF1F4; color: #C8456B; box-shadow: inset 0 0 0 1px rgba(200,69,107,.25); }
.env-badge.prod i { background: #E85C84; animation: pulse-rose 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(22,191,178,.5);} 70%{ box-shadow: 0 0 0 7px rgba(22,191,178,0);} 100%{box-shadow:0 0 0 0 rgba(22,191,178,0);} }
@keyframes pulse-rose { 0% { box-shadow: 0 0 0 0 rgba(232,92,132,.5);} 70%{ box-shadow: 0 0 0 7px rgba(232,92,132,0);} 100%{box-shadow:0 0 0 0 rgba(232,92,132,0);} }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-xs); position: relative; }
.menu-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.menu-toggle span:nth-child(1){ top: 15px;} .menu-toggle span:nth-child(2){ top: 21px;} .menu-toggle span:nth-child(3){ top: 27px;}
body.nav-open .menu-toggle span:nth-child(1){ transform: translateY(6px) rotate(45deg);}
body.nav-open .menu-toggle span:nth-child(2){ opacity: 0;}
body.nav-open .menu-toggle span:nth-child(3){ transform: translateY(-6px) rotate(-45deg);}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(40px, 8vw, 88px)); padding-bottom: clamp(60px, 9vw, 120px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-content { max-width: 600px; }
.hero h1 { margin: 22px 0 24px; }
.hero .lead { max-width: 30em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 34px; }
.hero-note { margin-top: 22px; font-size: .85rem; color: var(--muted-2); display: flex; align-items: center; gap: .5em; }
.hero-note svg { width: 1.1em; height: 1.1em; color: var(--primary); }

/* trust strip */
.trust-strip { margin-top: clamp(40px, 6vw, 64px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.trust-cell { background: var(--glass-strong); backdrop-filter: blur(10px); padding: 1.3rem 1.1rem; text-align: center; }
.trust-cell .num { display: block; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--ink); }
.trust-cell .num em { font-style: normal; font-size: .55em; color: var(--primary-700); }
.trust-cell small { display: block; margin-top: .3em; font-size: .74rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; line-height: 1.5; }
.trust-cell .rank { color: var(--primary-700); }

/* hero chat card (signature) */
.hero-stage { position: relative; display: grid; place-items: center; }
.hero-orbit { position: absolute; width: 116%; aspect-ratio: 1; border-radius: 50%; border: 1.5px dashed rgba(22,191,178,.25); animation: spin 40s linear infinite; }
.hero-orbit::before { content: ""; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px; border-radius: 50%; background: var(--grad-brand); box-shadow: var(--shadow-glow); }
@keyframes spin { to { transform: rotate(360deg); } }

.chat-card {
  position: relative; width: min(100%, 400px);
  background: var(--glass); backdrop-filter: blur(26px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.1rem 1.2rem;
  animation: float 7s var(--ease-in-out) infinite;
}
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.chat-top { display: flex; align-items: center; gap: .7rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.chat-ava { width: 40px; height: 40px; border-radius: 12px; background: var(--grad-brand); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-glow); }
.chat-ava svg { width: 22px; height: 22px; }
.chat-top h4 { font-size: .95rem; }
.chat-top p { font-size: .72rem; color: var(--muted); display: flex; align-items: center; gap: .4em; }
.chat-top p i { width: 6px; height: 6px; border-radius: 50%; background: #2bd07a; display: inline-block; }
.chat-body { display: flex; flex-direction: column; gap: .7rem; padding: 1rem .2rem; min-height: 232px; }
.bubble { max-width: 84%; padding: .7rem .95rem; border-radius: 16px; font-size: .85rem; line-height: 1.6; font-weight: 500; opacity: 0; transform: translateY(8px); }
.bubble.show { animation: pop .5s var(--ease) forwards; }
.bubble.bot { align-self: flex-start; background: #fff; color: var(--ink-2); border-bottom-left-radius: 5px; box-shadow: var(--shadow-sm); }
.bubble.user { align-self: flex-end; background: var(--grad-brand); color: #fff; border-bottom-right-radius: 5px; box-shadow: var(--shadow-glow); }
@keyframes pop { to { opacity: 1; transform: translateY(0); } }
.typing { align-self: flex-start; display: inline-flex; gap: 5px; padding: .8rem 1rem; background: #fff; border-radius: 16px; border-bottom-left-radius: 5px; box-shadow: var(--shadow-sm); }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); animation: blink 1.3s infinite; }
.typing i:nth-child(2){ animation-delay: .2s; } .typing i:nth-child(3){ animation-delay: .4s; }
@keyframes blink { 0%,60%,100%{ opacity:.3; transform: translateY(0);} 30%{ opacity:1; transform: translateY(-3px);} }
.chat-foot { display: flex; align-items: center; gap: .6rem; padding-top: .4rem; }
.chat-foot .fake-input { flex: 1; height: 40px; border-radius: var(--pill); background: rgba(255,255,255,.7); box-shadow: inset 0 0 0 1px var(--line); display: flex; align-items: center; padding: 0 1rem; font-size: .8rem; color: var(--muted-2); }
.chat-foot .send { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-glow); }
.chat-foot .send svg { width: 18px; height: 18px; }

/* floating mini badges around chat */
.float-badge { position: absolute; background: var(--glass-strong); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: var(--r-sm); box-shadow: var(--shadow); padding: .6rem .85rem; display: flex; align-items: center; gap: .55rem; font-size: .78rem; font-weight: 700; }
.float-badge svg { width: 20px; height: 20px; color: var(--primary-700); }
/* badges are children of the card → they float WITH it and sit at the outer corners */
.float-badge.fb1 { top: -22px; left: -30px; }
.float-badge.fb2 { bottom: -20px; right: -28px; }

/* ---------- Generic glass card ---------- */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.4vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(126,240,208,.6), rgba(138,184,255,.3) 50%, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { opacity: 1; }
.icon-tile { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--primary-50); color: var(--primary-700); margin-bottom: 1.1rem; transition: transform .4s var(--ease); }
.icon-tile svg { width: 28px; height: 28px; }
.card:hover .icon-tile { transform: rotate(-6deg) scale(1.06); }
.card h3 { font-size: 1.22rem; margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: .95rem; }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Problems → Solutions (flip) ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.flip { perspective: 1400px; min-height: 280px; }
.flip-inner { position: relative; width: 100%; height: 100%; min-height: inherit; transition: transform .8s var(--ease); transform-style: preserve-3d; }
.flip:hover .flip-inner, .flip:focus-within .flip-inner { transform: rotateY(180deg); }
.flip-face { position: absolute; inset: 0; border-radius: var(--r-lg); padding: 1.8rem; backface-visibility: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.flip-front { background: var(--panel); border: 1px solid var(--line); }
.flip-front .q { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .2em; color: var(--rose); font-weight: 700; }
.flip-front h3 { font-size: 1.22rem; margin: .8rem 0 auto; line-height: 1.5; }
.flip-front .hint { margin-top: 1.2rem; font-size: .8rem; color: var(--muted-2); display: flex; align-items: center; gap: .5em; }
.flip-front .pnum { font-family: var(--f-num); font-weight: 800; font-size: 2.4rem; color: var(--bg-soft); position: absolute; top: 1rem; right: 1.3rem; }
.flip-back { background: var(--grad-brand); color: #fff; transform: rotateY(180deg); }
.flip-back .a { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .2em; font-weight: 700; opacity: .9; }
.flip-back p { margin-top: .9rem; font-weight: 600; line-height: 1.7; font-size: .98rem; }
.flip-back svg { width: 30px; height: 30px; margin-top: auto; }

/* ---------- Feature rows (numbered 01-03) ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(56px, 8vw, 110px); }
.feature-row.flip-layout .feature-visual { order: -1; }
.feature-copy .fnum { font-family: var(--f-num); font-weight: 800; font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.feature-copy h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: .5rem 0 1rem; }
.feature-copy p { color: var(--muted); font-size: 1.02rem; }
.feature-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.tag { font-family: var(--f-mono); font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: .45em .8em; border-radius: var(--pill); background: var(--primary-50); color: var(--primary-700); }
.feature-visual { position: relative; }
.feature-mock { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 1.4rem; }

/* ---------- Persona benefits (tabs) ---------- */
.persona { display: grid; grid-template-columns: 320px 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.persona-tabs { display: flex; flex-direction: column; gap: .7rem; }
.persona-tab { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; border-radius: var(--r); background: var(--panel); border: 1px solid var(--line); text-align: left; transition: all .35s var(--ease); box-shadow: var(--shadow-sm); }
.persona-tab .pt-ico { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--bg-soft); color: var(--primary-700); transition: all .35s; }
.persona-tab .pt-ico svg { width: 24px; height: 24px; }
.persona-tab b { display: block; font-family: var(--f-display); font-size: 1.05rem; }
.persona-tab span { font-size: .76rem; color: var(--muted-2); }
.persona-tab:hover { transform: translateX(4px); }
.persona-tab.active { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-glow); border-color: transparent; }
.persona-tab.active .pt-ico { background: rgba(255,255,255,.22); color: #fff; }
.persona-tab.active span { color: rgba(255,255,255,.8); }
.persona-panel { display: none; }
.persona-panel.active { display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: translateY(0);} }
.persona-panel .pp-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.4rem; }
.persona-panel .pp-head h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.persona-panel .pp-head .pp-meta { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; color: var(--muted-2); text-transform: uppercase; }
.benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.benefit-item { display: flex; gap: .8rem; align-items: flex-start; padding: 1.1rem 1.2rem; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); transition: transform .3s var(--ease), box-shadow .3s; }
.benefit-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-item .chk { width: 26px; height: 26px; flex: none; border-radius: 8px; background: var(--primary-50); color: var(--primary-700); display: grid; place-items: center; }
.benefit-item .chk svg { width: 15px; height: 15px; }
.benefit-item p { font-size: .92rem; font-weight: 600; color: var(--ink-2); }

/* ---------- Stat band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2.5rem); }
.stat { text-align: center; }
.stat .big { font-family: var(--f-num); font-weight: 800; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .big em { font-style: normal; font-size: .4em; -webkit-text-fill-color: var(--primary-700); }
.stat .cap { margin-top: .6rem; font-size: .85rem; color: var(--muted); font-weight: 600; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.testi { display: flex; flex-direction: column; gap: 1.2rem; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; }
.testi:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.testi .metric { font-family: var(--f-num); font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.1; color: var(--ink); }
.testi .metric em { font-style: normal; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.testi .metric small { display: block; font-family: var(--f-mono); font-size: .64rem; letter-spacing: .14em; color: var(--muted-2); margin-top: .3em; font-weight: 700; }
.testi blockquote { font-size: .92rem; color: var(--muted); line-height: 1.85; }
.testi .who { display: flex; align-items: center; gap: .85rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--f-display); font-weight: 900; color: #fff; font-size: 1rem; box-shadow: var(--shadow-sm); }
.who b { display: block; font-family: var(--f-display); font-size: .95rem; }
.who span { font-size: .76rem; color: var(--muted-2); }
.testi .vol { font-family: var(--f-mono); font-size: .68rem; color: var(--primary-700); font-weight: 700; letter-spacing: .04em; }

/* ---------- Case marquee ---------- */
.marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: scroll-x 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee + .marquee { margin-top: 1rem; }
.marquee.rev .marquee-track { animation-direction: reverse; }
.case-chip { display: flex; align-items: center; gap: .7rem; padding: .9rem 1.4rem; background: var(--panel); border: 1px solid var(--line); border-radius: var(--pill); box-shadow: var(--shadow-sm); white-space: nowrap; font-weight: 700; font-size: .92rem; }
.case-chip .dot { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--primary-50); color: var(--primary-700); flex: none; }
.case-chip .dot svg { width: 17px; height: 17px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- SEO band ---------- */
.seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); counter-reset: seo; }
.seo-item { padding: 1.8rem; background: var(--glass-strong); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); position: relative; transition: transform .4s var(--ease), box-shadow .4s; }
.seo-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.seo-item .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-glow); margin-bottom: 1rem; }
.seo-item .ico svg { width: 26px; height: 26px; }
.seo-item h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.seo-item p { font-size: .9rem; color: var(--muted); }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.post { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; }
.post:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.post-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; display: grid; place-items: center; }
.post-thumb svg.art { width: 100%; height: 100%; }
.post:hover .post-thumb svg.art { transform: scale(1.05); }
.post-thumb svg.art { transition: transform .6s var(--ease); }
.post-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post .date { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .08em; color: var(--muted-2); font-weight: 700; }
.post h3 { font-size: 1.05rem; line-height: 1.55; margin: .6rem 0 .7rem; }
.post p { font-size: .87rem; color: var(--muted); flex: 1; }
.post .more { margin-top: 1rem; font-weight: 700; color: var(--primary-700); font-size: .88rem; display: inline-flex; align-items: center; gap: .4em; transition: gap .3s; }
.post:hover .more { gap: .8em; }
.post .more svg { width: 1em; height: 1em; }
.post.feature { grid-column: span 3; flex-direction: row; }
.post.feature .post-thumb { flex: 1; aspect-ratio: auto; }
.post.feature .post-body { flex: 1; justify-content: center; padding: clamp(1.6rem, 4vw, 3rem); }
.post.feature h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.chip-cat { position: absolute; top: 1rem; left: 1rem; z-index: 2; font-family: var(--f-mono); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .4em .8em; border-radius: var(--pill); background: var(--glass-strong); backdrop-filter: blur(8px); color: var(--primary-700); box-shadow: var(--shadow-sm); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--grad-brand); color: #fff; padding: clamp(2.5rem, 6vw, 5rem); box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 80% 10%, rgba(255,255,255,.35), transparent 60%); }
.cta-band::after { content: ""; position: absolute; width: 380px; height: 380px; right: -80px; bottom: -160px; border-radius: 50%; border: 40px solid rgba(255,255,255,.12); }
.cta-inner { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cta-inner h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.3; }
.cta-inner p { color: rgba(255,255,255,.85); margin-top: 1rem; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; }
.cta-tel { background: rgba(255,255,255,.16); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); border-radius: var(--r); padding: 1.3rem 1.6rem; }
.cta-tel small { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .14em; opacity: .85; text-transform: uppercase; }
.cta-tel b { display: block; font-family: var(--f-num); font-weight: 800; font-size: clamp(1.8rem, 3.2vw, 2.4rem); letter-spacing: .01em; }
.cta-tel .hours { font-size: .78rem; opacity: .8; }
.btn-white { background: #fff; color: var(--primary-700); box-shadow: 0 16px 40px -16px rgba(0,0,0,.3); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -16px rgba(0,0,0,.4); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-block: clamp(48px, 7vw, 84px) 32px; margin-top: clamp(40px,6vw,80px); }
.site-footer a { color: rgba(255,255,255,.72); transition: color .25s; }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand b, .footer-brand .brand .ai { color: #fff; }
.footer-brand p { font-size: .88rem; margin-top: 1rem; max-width: 30ch; color: rgba(255,255,255,.6); }
.footer-col h4 { color: #fff; font-size: .9rem; margin-bottom: 1rem; font-family: var(--f-mono); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { font-size: .88rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.8rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.5); font-family: var(--f-mono); letter-spacing: .04em; }

/* ---------- Page hero (blog / article) ---------- */
.page-hero { padding-top: calc(var(--header-h) + clamp(48px, 8vw, 90px)); padding-bottom: clamp(28px, 5vw, 48px); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -.02em; line-height: 1.16; }
.page-hero p { margin-top: 16px; max-width: 60ch; }
.crumbs { display: flex; gap: .5em; align-items: center; font-family: var(--f-mono); font-size: .72rem; color: var(--muted-2); letter-spacing: .04em; margin-bottom: 20px; }
.crumbs a:hover { color: var(--primary-700); }
.crumbs svg { width: 12px; height: 12px; }

/* ---------- Article ---------- */
.article-wrap { max-width: 760px; margin-inline: auto; }
.article-cover { aspect-ratio: 16/7; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: clamp(28px, 5vw, 48px); display: grid; place-items: center; }
.article-cover svg { width: 100%; height: 100%; }
.article-meta { display: flex; align-items: center; gap: .9rem; margin: 1.4rem 0 0; }
.article-meta .avatar { width: 42px; height: 42px; font-size: .9rem; }
.article-meta b { font-family: var(--f-display); font-size: .92rem; display: block; }
.article-meta span { font-family: var(--f-mono); font-size: .72rem; color: var(--muted-2); }
.prose { font-size: 1.04rem; line-height: 2; color: var(--ink-2); }
.prose > * + * { margin-top: 1.3rem; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); font-weight: 900; margin-top: 2.6rem; padding-top: .4rem; line-height: 1.4; }
.prose h2::before { content: ""; display: block; width: 44px; height: 4px; border-radius: 4px; background: var(--grad-brand); margin-bottom: .9rem; }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin-top: 1.8rem; color: var(--ink); }
.prose p { color: var(--muted); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .6rem; color: var(--muted); }
.prose li { padding-left: .3rem; }
.prose ul li::marker { color: var(--primary); }
.prose blockquote { border-left: 4px solid var(--primary); background: var(--bg-soft); padding: 1.1rem 1.4rem; border-radius: 0 var(--r-sm) var(--r-sm) 0; font-weight: 600; color: var(--ink-2); }
.prose .callout { background: var(--primary-50); border: 1px solid rgba(22,191,178,.2); border-radius: var(--r); padding: 1.3rem 1.5rem; display: flex; gap: .9rem; align-items: flex-start; }
.prose .callout svg { width: 24px; height: 24px; color: var(--primary-700); flex: none; margin-top: .2rem; }
.prose .callout p { margin: 0; color: var(--ink-2); font-weight: 600; }
.article-cta { margin-top: 3rem; }
.share { display: flex; gap: .6rem; align-items: center; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); font-family: var(--f-mono); font-size: .74rem; color: var(--muted-2); letter-spacing: .08em; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
.reveal.left { transform: translateX(-34px); }
.reveal.right { transform: translateX(34px); }
.reveal.scale { transform: scale(.94); }
.reveal.in { opacity: 1; transform: none; }

/* Above-the-fold reveals run via CSS keyframes (compositor-driven) so the hero
   never stays blank even while a third-party script blocks the main thread.
   Below-the-fold sections still reveal on scroll via IntersectionObserver. */
.hero .reveal, .page-hero .reveal { animation: heroReveal .9s var(--ease) var(--d, 0ms) both; }
.hero .reveal.scale { animation-name: heroRevealScale; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes heroRevealScale { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

/* ---------- Section heading flourish ---------- */
.flourish { display: inline-block; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { margin-top: 1rem; }
  .persona { grid-template-columns: 1fr; }
  .persona-tabs { flex-direction: row; overflow-x: auto; padding-bottom: .4rem; }
  .persona-tab { flex: 1 0 200px; }
  .cta-inner { grid-template-columns: 1fr; }
  .post.feature { flex-direction: column; }
}
@media (max-width: 860px) {
  .nav-menu, .tel-chip { display: none; }
  .menu-toggle { display: block; }
  .nav-menu.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(251,252,254,.96); backdrop-filter: blur(18px);
    padding: 1.6rem var(--gutter) 2rem; box-shadow: var(--shadow);
  }
  .nav-menu.open a { font-size: 1.05rem; }
  .grid-3, .problem-grid, .testi-grid, .seo-grid, .blog-grid { grid-template-columns: 1fr; }
  .feature-row, .feature-row.flip-layout { grid-template-columns: 1fr; }
  .feature-row.flip-layout .feature-visual { order: 0; }
  .stat-band { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .benefit-list { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .float-badge { display: none; }
}

/* ---------- Setup guide (embed page) ---------- */
.guide-wrap { max-width: 880px; margin-inline: auto; }

/* callout — usable outside .prose as well */
.callout { background: var(--primary-50); border: 1px solid rgba(22,191,178,.2); border-radius: var(--r); padding: 1.3rem 1.5rem; display: flex; gap: .9rem; align-items: flex-start; }
.callout svg { width: 24px; height: 24px; color: var(--primary-700); flex: none; margin-top: .2rem; }
.callout p { margin: 0; color: var(--ink-2); font-weight: 600; line-height: 1.8; }

/* inline code */
.icode { font-family: var(--f-mono); font-size: .86em; font-weight: 700; color: var(--primary-700); background: var(--primary-50); padding: .12em .5em; border-radius: 7px; box-shadow: inset 0 0 0 1px rgba(22,191,178,.18); white-space: nowrap; }

/* numbered step */
.gstep { display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem, 2.6vw, 1.9rem); align-items: start; }
.gstep + .gstep { margin-top: clamp(2.4rem, 5vw, 3.6rem); }
.gstep-num { font-family: var(--f-num); font-weight: 800; font-size: 1.1rem; width: 54px; height: 54px; flex: none; border-radius: 16px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-glow); }
.gstep-body { min-width: 0; }
.gstep-body h2 { font-size: clamp(1.3rem, 2.5vw, 1.78rem); font-weight: 900; line-height: 1.36; }
.gstep-body h2::before { display: none; }
.gstep-body > * + * { margin-top: 1.1rem; }
.gstep-body > p { color: var(--muted); }
.gstep-eyebrow { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--primary-700); font-weight: 700; }

/* code block */
.code-block { background: #0B1A28; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.06); }
.code-bar { display: flex; align-items: center; gap: .5rem; padding: .7rem 1rem; background: rgba(255,255,255,.035); border-bottom: 1px solid rgba(255,255,255,.07); }
.code-dot { width: 11px; height: 11px; border-radius: 50%; opacity: .85; }
.code-dot:nth-child(1) { background: var(--mint); }
.code-dot:nth-child(2) { background: var(--sky); }
.code-dot:nth-child(3) { background: var(--lav); }
.code-name { font-family: var(--f-mono); font-size: .72rem; color: rgba(255,255,255,.5); letter-spacing: .05em; margin-left: .5rem; }
.code-copy { margin-left: auto; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .06em; color: rgba(255,255,255,.78); padding: .4em .85em; border-radius: var(--pill); background: rgba(255,255,255,.09); display: inline-flex; align-items: center; gap: .45em; transition: background .25s, color .25s, transform .25s; }
.code-copy svg { width: 13px; height: 13px; }
.code-copy:hover { background: rgba(255,255,255,.16); }
.code-copy.copied { background: var(--primary); color: #fff; }
.code-block pre { margin: 0; padding: 1.1rem 1.25rem; overflow-x: auto; font-family: var(--f-mono); font-size: .82rem; line-height: 1.95; color: rgba(255,255,255,.82); }
.code-block code { font-family: inherit; white-space: pre; }
.t-tag { color: #8AB8FF; }
.t-atr { color: #7EF0D0; }
.t-str { color: rgba(255,255,255,.6); }
.t-hl  { color: #FFB8D2; font-weight: 700; }
.t-cm  { color: rgba(255,255,255,.32); font-style: italic; }

/* parameter cards */
.param-card { display: flex; flex-direction: column; }
.param-card .param-name { align-self: flex-start; font-family: var(--f-mono); font-weight: 700; font-size: .92rem; color: var(--primary-700); background: var(--primary-50); padding: .35em .75em; border-radius: var(--r-xs); box-shadow: inset 0 0 0 1px rgba(22,191,178,.18); }
.param-card h3 { font-size: 1.05rem; margin: 1.05rem 0 .5rem; }
.param-card p { font-size: .9rem; color: var(--muted); flex: 1; }
.param-def { font-family: var(--f-mono); font-size: .68rem; color: var(--muted-2); margin-top: .8rem; letter-spacing: .03em; display: inline-flex; align-items: center; gap: .5em; }
.param-def b { color: var(--ink-2); }
.param-eg { margin-top: 1rem; }
.param-eg code { font-family: var(--f-mono); font-size: .78rem; color: var(--mint); background: #0B1A28; padding: .5em .8em; border-radius: var(--r-xs); display: block; overflow-x: auto; white-space: nowrap; }
.param-eg code b { color: #FFB8D2; font-weight: 700; }

/* live launch demo */
.launch-demo { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; padding: 1.4rem 1.6rem; background: var(--glass-strong); backdrop-filter: blur(10px); border: 1px dashed rgba(22,191,178,.45); border-radius: var(--r); }
.launch-demo .ld-note { font-family: var(--f-mono); font-size: .7rem; color: var(--muted-2); letter-spacing: .05em; display: inline-flex; align-items: center; gap: .5em; }
.launch-demo .ld-note svg { width: 15px; height: 15px; color: var(--primary-700); }

/* data-open-chatbot live banners */
.trigger-banner { display: flex; align-items: center; gap: 1.1rem; width: 100%; text-align: left; padding: 1.3rem 1.6rem; border-radius: var(--r-lg); background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-glow); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.trigger-banner:hover { transform: translateY(-4px); box-shadow: 0 26px 60px -16px rgba(22,191,178,.6); }
.trigger-banner .tb-ico { width: 46px; height: 46px; flex: none; border-radius: 13px; background: rgba(255,255,255,.2); display: grid; place-items: center; }
.trigger-banner .tb-ico svg { width: 24px; height: 24px; }
.trigger-banner b { display: block; font-family: var(--f-display); font-size: 1.08rem; }
.trigger-banner span { font-size: .82rem; color: rgba(255,255,255,.85); }
.trigger-banner .tb-arrow { margin-left: auto; flex: none; }
.trigger-banner .tb-arrow svg { width: 22px; height: 22px; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .aurora-field { animation: none; }
  .marquee-track { animation: none; }
}
