/* =========================================================
   Shinvo 新沃 · 品牌官網
   Design System based on Brand Guidelines v1.0
   ========================================================= */

:root {
  /* Core palette */
  --teal: #1A6E5C;
  --teal-700: #155A4B;
  --teal-200: #B3D6CC;
  --gold: #E8B547;
  --gold-dark: #C99A2E;
  --ink: #14201D;
  --cloud: #F8F5ED;
  --cloud-2: #EFEAD9;
  --line: rgba(20,32,29,0.12);
  --line-strong: rgba(20,32,29,0.22);
  --muted: #5F5E5A;

  /* Product tail colors — per industry SaaS */
  --tail-stock: #B47A3D;     /* Stock 進銷存 */
  --tail-booking: #7C5CFB;   /* Booking 服務預約 */
  --tail-laundry: #1B7EB3;   /* Laundry 洗衣管理 */
  --tail-web: #2A8F6B;       /* Web 網站 */
  --tail-shop: #E8B547;      /* Shop 電商 */
  --tail-restaurant: #E8762B;/* Restaurant 餐廳管理 */
  --tail-fitness: #4A8F7A;   /* Fitness 健身房 */
  --tail-pet: #E15B7A;       /* Pet 寵物 */

  /* Type */
  --font-zh: "Noto Sans TC", "PingFang TC", -apple-system, "Segoe UI", sans-serif;
  --font-en: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Noto Serif TC", "PingFang TC", serif;

  /* Radii (per brand book) */
  --r-md: 8px;
  --r-card: 12px;
  --r-btn: 0px;

  /* Layout */
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cloud);
  color: var(--ink);
  font-family: var(--font-zh);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ========== Typography ========== */
.eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.display {
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
.h1 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}
.body-lg {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}
.body { font-size: 16px; line-height: 1.65; color: var(--muted); }
.small {
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.kicker {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ========== Containers ========== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.section-head { display: grid; gap: 18px; margin-bottom: clamp(40px, 5vw, 64px); max-width: 880px; }
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.section-head .eyebrow::before {
  content: ""; width: 18px; height: 2px; background: var(--teal); display: inline-block;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-btn);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--gold); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--cloud); }
.btn-dark:hover { background: var(--gold); color: var(--ink); }
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ========== Nav ========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,245,237,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-color: var(--line); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand .mark { width: 36px; height: 26px; }
.nav-brand .wordmark {
  font-family: var(--font-en); font-weight: 500; font-size: 22px; color: var(--teal);
  letter-spacing: -0.04em;
}
.nav-brand .sub { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 14.5px; color: var(--ink); position: relative;
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; padding: 6px; }
.nav-toggle svg { width: 28px; height: 28px; stroke: var(--ink); }
@media (max-width: 920px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 72px 0 0 0; background: var(--cloud);
  z-index: 49;
  transform: translateX(100%); transition: transform .3s ease;
  padding: 32px var(--pad);
  display: flex; flex-direction: column; gap: 28px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 24px; font-weight: 500; }

/* ========== Hero ========== */
.hero {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 16px 8px 10px;
  background: rgba(26,110,92,0.07);
  border: 1px solid rgba(26,110,92,0.15);
  color: var(--teal);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(232,181,71,0.18);
}
.hero h1 .accent { color: var(--teal); }
.hero h1 .gold { color: var(--gold-dark); }
.hero .lead { margin-top: 22px; max-width: 540px; }
.hero-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: clamp(40px, 5vw, 56px);
  display: grid; grid-template-columns: repeat(3, auto);
  gap: clamp(24px, 4vw, 56px);
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-meta .stat strong {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-meta .stat span { font-size: 13px; color: var(--muted); margin-top: 8px; display: block; }

/* Hero visual — the brand "+" mark composed at scale, with grid */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
.hero-visual .frame {
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 25% 100%;
  background-color: rgba(255,255,255,0.45);
}
.hero-visual .corner {
  position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--ink);
}
.hero-visual .corner.tl { top: -7px; left: -7px; border-right: none; border-bottom: none; }
.hero-visual .corner.tr { top: -7px; right: -7px; border-left: none; border-bottom: none; }
.hero-visual .corner.bl { bottom: -7px; left: -7px; border-right: none; border-top: none; }
.hero-visual .corner.br { bottom: -7px; right: -7px; border-left: none; border-top: none; }

.hero-mark {
  position: absolute; inset: 12% 14% 12% 12%;
  display: grid; place-items: center;
}
.hero-mark svg { width: 100%; height: 100%; overflow: visible; }
.hero-mark .bar-v { animation: grow-v 1.1s cubic-bezier(.22,.61,.36,1) both; }
.hero-mark .bar-h { animation: grow-h 1.1s cubic-bezier(.22,.61,.36,1) 0.15s both; }
.hero-mark .tail { animation: grow-tail 1.4s cubic-bezier(.22,.61,.36,1) 0.5s both; }

@keyframes grow-v { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes grow-h { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes grow-tail {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

.hero-caption {
  position: absolute; left: -8px; bottom: -34px;
  font-family: var(--font-en); font-size: 11px; letter-spacing: 0.22em;
  color: var(--muted); text-transform: uppercase;
}
.hero-caption b { color: var(--ink); font-weight: 500; }

.hero-trust {
  margin-top: clamp(60px, 7vw, 88px);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-trust .label {
  font-family: var(--font-en); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}
.hero-trust .logos {
  display: flex; gap: 36px; flex-wrap: wrap; align-items: center;
  color: var(--ink); opacity: 0.55;
  font-weight: 500; letter-spacing: -0.01em;
}

/* ========== About ========== */
.about { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-quote {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.about-quote em { color: var(--teal); font-style: normal; }
.about-pillars { display: grid; gap: 28px; }
.pillar { display: grid; grid-template-columns: 36px 1fr; gap: 20px; align-items: start; }
.pillar .num {
  font-family: var(--font-en); font-size: 13px; color: var(--teal); font-weight: 500;
  padding-top: 4px;
}
.pillar .title { font-weight: 500; font-size: 17px; margin-bottom: 6px; }
.pillar .desc { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ========== Products ========== */
.products { background: var(--cloud); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }
.product {
  background: #fff;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  min-height: 280px;
  transition: background .25s ease;
}
.product:hover { background: var(--cloud); }
.product .pmark { display: flex; align-items: center; gap: 14px; height: 32px; }
.product .pmark svg { height: 32px; width: auto; }
.product .pname {
  display: flex; flex-direction: column;
}
.product .pname .en {
  font-family: var(--font-en); font-size: 16px; font-weight: 500;
  color: var(--teal); letter-spacing: -0.01em;
}
.product .pname .zh { font-size: 13px; color: var(--muted); letter-spacing: 0.02em; }
.product h3 {
  font-size: 20px; font-weight: 500; margin: 4px 0 0;
  letter-spacing: -0.01em; color: var(--ink);
}
.product .ptag {
  font-size: 13.5px; color: var(--muted); line-height: 1.55;
}
.product .pfeats {
  list-style: none; padding: 0; margin: 0 0 auto;
  display: grid; gap: 8px;
}
.product .pfeats li {
  position: relative; padding-left: 18px;
  font-size: 13px; color: var(--ink); line-height: 1.5;
}
.product .pfeats li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 2px; background: var(--teal);
}
.product-cta {
  background: linear-gradient(180deg, rgba(26,110,92,0.04), rgba(232,181,71,0.04));
  border: 1px dashed var(--line-strong);
}
.product-cta .cta-mark { width: 56px; height: 40px; margin-bottom: 4px; }
.product-cta .cta-mark svg { width: 100%; height: 100%; }
.product-cta h3 { color: var(--teal); }
.product .pmeta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink);
}
.product .pmeta .arr { color: var(--teal); transition: transform .2s ease; }
.product:hover .pmeta .arr { transform: translateX(4px); }
.product[data-status="coming"] .pmeta .arr { color: var(--muted); }

/* Status pill on product cards */
.product { position: relative; }
.status-pill {
  position: absolute; top: 18px; right: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font: 500 11px/1 "Inter", "Noto Sans TC", sans-serif;
  letter-spacing: 0.04em;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(26,110,92,0.08); color: var(--teal);
  border: 1px solid rgba(26,110,92,0.18);
}
.status-pill.live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #2A8F6B; box-shadow: 0 0 0 3px rgba(42,143,107,0.18);
}
.status-pill.soon {
  background: rgba(180,122,61,0.08); color: #8a5a26;
  border-color: rgba(180,122,61,0.25);
}
.status-pill.soon::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.product[data-status="coming"] { opacity: 0.94; }
.product[data-status="coming"] .pmeta { color: var(--muted); }

/* Products group heading (Live / Coming soon) */
.products-group {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 20px;
  padding: 36px 32px 32px;
  background: var(--cloud);
}
.products-group:first-child {
  padding-top: 24px;
}
.products-group .gtitle {
  font: 500 12px/1 "Inter", "Noto Sans TC", sans-serif;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
}
.products-group .gcount {
  font: 400 12px/1 "JetBrains Mono", "Inter", monospace;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.products-group .gline {
  flex: 1; height: 1px; background: var(--line);
}

/* ========== Industries ========== */
.industries { background: #fff; border-top: 1px solid var(--line); }
.industries-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 900px) { .industries-layout { grid-template-columns: 1fr; } }
.industry-list {
  display: grid; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.industry {
  background: #fff;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  padding: 22px 8px;
  align-items: center;
  transition: padding .2s ease, background .2s ease;
  cursor: default;
}
.industry:hover { padding-left: 18px; background: var(--cloud); }
.industry .num {
  font-family: var(--font-en); font-size: 13px; color: var(--muted); font-weight: 500;
}
.industry .name {
  font-size: 18px; font-weight: 500; letter-spacing: -0.01em;
}
.industry .name .sub {
  display: block; font-size: 13px; color: var(--muted); font-weight: 400; margin-top: 2px;
  letter-spacing: 0;
}
.industry .modules { font-family: var(--font-en); font-size: 12px; color: var(--teal); letter-spacing: 0.04em; }

/* ========== Values / Why ========== */
.values { background: var(--ink); color: var(--cloud); }
.values .eyebrow { color: var(--gold); }
.values .h1, .values .h2 { color: #fff; }
.values .body-lg { color: rgba(248,245,237,0.7); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(248,245,237,0.12);
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(248,245,237,0.12);
  border-bottom: 1px solid rgba(248,245,237,0.12);
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }
.value {
  background: var(--ink); padding: 36px 28px; display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
}
.value .num {
  font-family: var(--font-en); font-size: 12px; letter-spacing: 0.18em;
  color: var(--gold); font-weight: 500;
}
.value h3 {
  font-size: 22px; font-weight: 500; margin: 6px 0 0; letter-spacing: -0.015em; color: #fff;
}
.value p { font-size: 14.5px; line-height: 1.6; color: rgba(248,245,237,0.7); margin: 0; }

/* ========== Dealer ========== */
.dealer { background: var(--cloud); }
.dealer-card {
  background: #fff;
  border-radius: var(--r-card);
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .dealer-card { grid-template-columns: 1fr; } }
.dealer-card::before {
  content: "";
  position: absolute; top: 0; left: 0; height: 4px; width: 60%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal) 75%, var(--gold) 75%, var(--gold) 100%);
}
.dealer-left .ribbon {
  display: inline-block; padding: 4px 10px; background: var(--gold); color: var(--ink);
  font-family: var(--font-en); font-size: 11px; letter-spacing: 0.18em; font-weight: 500;
  margin-bottom: 20px;
}
.dealer-bullets { margin-top: 28px; display: grid; gap: 18px; padding: 0; list-style: none; }
.dealer-bullets li {
  display: grid; grid-template-columns: 24px 1fr; gap: 14px;
  font-size: 15px; line-height: 1.55;
}
.dealer-bullets li::before {
  content: "+"; color: var(--gold); font-family: var(--font-en); font-weight: 500;
  font-size: 22px; line-height: 1; padding-top: 1px;
}
.dealer-bullets li b { font-weight: 500; color: var(--ink); }

/* Form */
.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 12px; letter-spacing: 0.06em; color: var(--ink);
  font-weight: 500; text-transform: uppercase;
  font-family: var(--font-en);
}
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px;
  border: 1px solid var(--line-strong);
  background: #fff;
  padding: 12px 14px;
  border-radius: var(--r-md);
  color: var(--ink);
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(26,110,92,0.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-actions { display: flex; gap: 14px; align-items: center; }
.form-note { font-size: 12px; color: var(--muted); }
.form-success {
  display: none;
  padding: 14px 16px;
  background: rgba(26,110,92,0.08);
  border: 1px solid rgba(26,110,92,0.25);
  border-radius: var(--r-md);
  color: var(--teal);
  font-size: 14px;
}
.form-success.show { display: block; }

/* ========== Contact ========== */
.contact { background: #fff; border-top: 1px solid var(--line); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px); align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-channels { display: grid; gap: 24px; margin-top: 32px; }
.channel {
  display: grid; grid-template-columns: 36px 1fr auto; gap: 20px;
  padding: 20px 0; border-top: 1px solid var(--line);
  align-items: center;
}
.channel:last-child { border-bottom: 1px solid var(--line); }
.channel .icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(26,110,92,0.08); color: var(--teal);
  border-radius: var(--r-md);
}
.channel .icon svg { width: 18px; height: 18px; }
.channel .ttl { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.18em; color: var(--muted); font-weight: 500; text-transform: uppercase; }
.channel .val { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
.channel .val a:hover { color: var(--teal); }
.channel .copy {
  font-family: var(--font-en); font-size: 12px; letter-spacing: 0.08em;
  color: var(--muted); cursor: pointer; padding: 6px 10px;
  border: 1px solid var(--line-strong); border-radius: var(--r-md);
  transition: all .15s;
}
.channel .copy:hover { color: var(--teal); border-color: var(--teal); }
.channel .copy.done { color: var(--teal); border-color: var(--teal); }

/* ========== Footer ========== */
.footer {
  background: var(--ink); color: rgba(248,245,237,0.7);
  padding: clamp(56px, 7vw, 96px) 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: var(--cloud); font-size: 12px; letter-spacing: 0.18em; font-family: var(--font-en);
  text-transform: uppercase; margin: 0 0 16px; font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { font-size: 14.5px; color: rgba(248,245,237,0.7); transition: color .15s; }
.footer ul a:hover { color: var(--gold); }
.footer-brand .slogan {
  margin: 18px 0 24px;
  font-size: 15px; line-height: 1.6; color: rgba(248,245,237,0.7);
  max-width: 360px;
}
.footer-bottom {
  border-top: 1px solid rgba(248,245,237,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(248,245,237,0.55);
}
.footer-bottom .legal { display: flex; gap: 24px; }

/* ========== Reveal animation ========== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== Tweaks panel chrome override (keep light) ========== */
.tweaks-toolbar { z-index: 70 !important; }

/* ========== Decorative "+" axis on hero ========== */
.cross-bg {
  position: absolute; pointer-events: none;
  color: var(--line);
}

/* ========== Hero variant: soft ========== */
body[data-hero="soft"] .hero-visual .frame {
  background-color: rgba(232,181,71,0.06);
  background-image: none;
  border-color: rgba(232,181,71,0.3);
  border-radius: 50%;
}
body[data-hero="soft"] .hero-visual .corner { display: none; }
body[data-hero="soft"] .hero { background:
  radial-gradient(900px 500px at 80% 0%, rgba(232,181,71,0.10), transparent 60%),
  radial-gradient(700px 500px at 0% 90%, rgba(26,110,92,0.08), transparent 60%);
}
body[data-hero="soft"] .hero-caption { left: 50%; transform: translateX(-50%); text-align:center; }
body.theme-dark[data-hero="soft"] .hero { background:
  radial-gradient(900px 500px at 80% 0%, rgba(232,181,71,0.10), transparent 60%),
  radial-gradient(700px 500px at 0% 90%, rgba(26,110,92,0.18), transparent 60%);
}

/* ========== Theme variant: dark ========== */
body.theme-dark {
  background: var(--ink);
  color: var(--cloud);
}
body.theme-dark .nav { background: rgba(20,32,29,0.85); }
body.theme-dark .nav-links a, body.theme-dark .nav-brand .wordmark { color: var(--cloud); }
body.theme-dark .nav-brand .wordmark { color: #fff; }
body.theme-dark .hero h1 .accent { color: var(--cloud); }
body.theme-dark .lead, body.theme-dark .body-lg, body.theme-dark .body, body.theme-dark .small, body.theme-dark .industry .name .sub { color: rgba(248,245,237,0.7); }
body.theme-dark .about { background: #1A2A26; border-color: rgba(248,245,237,0.08); }
body.theme-dark .industries { background: #1A2A26; border-color: rgba(248,245,237,0.08); }
body.theme-dark .contact { background: #1A2A26; border-color: rgba(248,245,237,0.08); }
body.theme-dark .products { background: var(--ink); }
body.theme-dark .dealer { background: var(--ink); }
body.theme-dark .product, body.theme-dark .dealer-card { background: #1A2A26; color: var(--cloud); }
body.theme-dark .product .pmeta { border-color: rgba(248,245,237,0.12); }
body.theme-dark .product:hover { background: #213632; }
body.theme-dark .products-grid, body.theme-dark .industry-list { background: rgba(248,245,237,0.08); }
body.theme-dark .industry { background: #1A2A26; }
body.theme-dark .industry:hover { background: #213632; }
body.theme-dark .industry .name, body.theme-dark .product h3, body.theme-dark .pillar .title { color: var(--cloud); }
body.theme-dark .about-quote { color: var(--cloud); }
body.theme-dark .field input, body.theme-dark .field select, body.theme-dark .field textarea {
  background: var(--ink); color: var(--cloud); border-color: rgba(248,245,237,0.18);
}
body.theme-dark .btn-ghost { color: var(--cloud); border-color: rgba(248,245,237,0.3); }
body.theme-dark .channel .copy { color: rgba(248,245,237,0.7); border-color: rgba(248,245,237,0.2); }
body.theme-dark .channel .val { color: var(--cloud); }
body.theme-dark .hero-eyebrow { background: rgba(232,181,71,0.08); border-color: rgba(232,181,71,0.25); color: var(--gold); }
body.theme-dark .hero-visual .frame { background-color: rgba(248,245,237,0.03); }
body.theme-dark .hero-visual .corner { border-color: var(--cloud); }
