/* ============================================================
   HarmoniTech — Design System "Khas Harmoni"
   Software House / IT Solutions · PT Harmoni Wisata Estetika
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Heritage */
  --navy: #0B2447;
  --navy-2: #19376D;
  --gold: #CBA153;
  --gold-deep: #B08940;

  /* Tech accents (from the logo) */
  --ocean: #2E8B9E;
  --teal: #38A3B8;
  --sage: #7FA891;
  --coral: #E39C86;

  /* Neutrals */
  --ink: #10192B;
  --slate: #5B6B82;
  --mist: #F5F7FA;
  --line: #E4EAF2;
  --white: #FFFFFF;

  /* Signature gradients */
  --grad-hero: linear-gradient(135deg, #0B2447 0%, #19376D 55%, #2E8B9E 100%);
  --grad-gold: linear-gradient(135deg, #CBA153 0%, #B08940 100%);
  --grad-teal: linear-gradient(135deg, #38A3B8 0%, #7FA891 100%);

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", ui-monospace, monospace;

  /* Rhythm */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(11, 36, 71, 0.06);
  --shadow: 0 14px 40px rgba(11, 36, 71, 0.10);
  --shadow-lg: 0 30px 70px rgba(11, 36, 71, 0.16);
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: clamp(64px, 9vw, 120px);
  position: relative;
}
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: #DCE5F2; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocean);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}
.section--navy .eyebrow { color: var(--gold); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-lead {
  margin-top: 18px;
  font-size: 1.075rem;
  color: var(--slate);
  max-width: 60ch;
}
.section--navy .section-lead { color: #A8BAD4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--grad-gold);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(203, 161, 83, 0.34);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(203, 161, 83, 0.44); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); background: var(--white); }
.btn--ghost-light { background: rgba(255,255,255,0.06); color: var(--white); border-color: rgba(255,255,255,0.28); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.14); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
  padding-block: 18px;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 42px; height: 42px; border-radius: 11px; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy); line-height: 1; }
.brand__sub { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.18em; color: var(--ocean); text-transform: uppercase; }
.nav.is-transparent .brand__name { color: var(--white); }
.nav.is-transparent .brand__sub { color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-gold); transition: width 0.25s var(--ease);
}
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after { width: 100%; }
.nav.is-transparent .nav__link { color: rgba(255,255,255,0.82); }
.nav.is-transparent .nav__link:hover { color: var(--white); }

.nav__actions { display: flex; align-items: center; gap: 14px; }

/* Language toggle */
.lang {
  display: inline-flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
}
.nav.is-transparent .lang { border-color: rgba(255,255,255,0.3); }
.lang__btn {
  padding: 7px 12px;
  color: var(--slate);
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.nav.is-transparent .lang__btn { color: rgba(255,255,255,0.7); }
.lang__btn.is-active { background: var(--navy); color: var(--white); }
.nav.is-transparent .lang__btn.is-active { background: var(--gold); color: var(--navy); }

.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: 0.3s; }
.nav.is-transparent .nav__burger span { background: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: var(--white);
  padding-top: 168px;
  padding-bottom: 110px;
  overflow: hidden;
}
.hero__mesh {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.9;
  background:
    radial-gradient(40% 55% at 82% 18%, rgba(56, 163, 184, 0.55), transparent 70%),
    radial-gradient(38% 50% at 12% 82%, rgba(127, 168, 145, 0.4), transparent 70%),
    radial-gradient(30% 40% at 68% 88%, rgba(203, 161, 83, 0.25), transparent 70%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 80%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 8px; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.8rem; margin-bottom: 26px; backdrop-filter: blur(6px);
}
.hero__pill b { background: var(--grad-gold); color: var(--navy); padding: 3px 10px; border-radius: 999px; font-size: 0.68rem; font-family: var(--font-mono); letter-spacing: 0.04em; }
.hero__title { color: var(--white); font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1.06; }
.hero__title .accent { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__lead { margin-top: 22px; font-size: 1.14rem; color: #C6D4EA; max-width: 52ch; }
.hero__cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { margin-top: 46px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stat .num { font-family: var(--font-mono); font-size: 1.9rem; font-weight: 700; color: var(--white); }
.hero__stat .lbl { font-size: 0.78rem; color: #9FB2CF; letter-spacing: 0.02em; }
.hero__parent { margin-top: 44px; font-size: 0.82rem; color: #93A6C4; display: flex; align-items: center; gap: 10px; }
.hero__parent img { width: 26px; height: 26px; opacity: 0.9; }

/* Hero visual (floating product card) */
.hero__visual { position: relative; }
.hero__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  transform: perspective(1400px) rotateY(-11deg) rotateX(5deg);
  transition: transform 0.5s var(--ease);
}
.hero__card:hover { transform: perspective(1400px) rotateY(-4deg) rotateX(2deg); }
.hero__card img { border-radius: 12px; }
.hero__code {
  position: absolute; left: -26px; bottom: -24px;
  background: var(--ink); color: #CDE7DA;
  font-family: var(--font-mono); font-size: 0.72rem;
  padding: 14px 16px; border-radius: 12px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero__code .k { color: var(--gold); }
.hero__code .s { color: var(--teal); }

/* ---------- Trust / marquee strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--white); }
.trust__inner { display: flex; align-items: center; gap: 40px; padding-block: 22px; flex-wrap: wrap; justify-content: center; }
.trust__label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); }
.trust__items { display: flex; gap: 28px; flex-wrap: wrap; }
.trust__item { font-family: var(--font-mono); font-weight: 600; color: var(--navy); font-size: 0.92rem; opacity: 0.8; }

/* ---------- Cards grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

/* Service card */
.service__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(46,139,158,0.14), rgba(127,168,145,0.14));
  color: var(--ocean);
}
.service__icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 1.22rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 10px; }
.service p { color: var(--slate); font-size: 0.95rem; }
.service__tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }

/* Chips / badges */
.chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ocean);
  border: 1px solid var(--line);
  font-weight: 500;
}
.section--navy .chip { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); color: #BFE0E8; }

/* ---------- Products ---------- */
.product {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  transition: box-shadow 0.3s var(--ease);
}
.product:hover { box-shadow: var(--shadow); }
.product--rev { grid-template-columns: 1.15fr 1fr; }
.product--rev .product__media { order: 2; }
.product__eyebrow { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.product__title { font-size: 1.7rem; margin: 8px 0 6px; }
.product__role { font-size: 0.86rem; color: var(--ocean); font-family: var(--font-mono); margin-bottom: 16px; }
.product__desc { color: var(--slate); font-size: 0.98rem; }
.product__list { margin: 18px 0 20px; display: grid; gap: 10px; }
.product__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.92rem; color: var(--ink); }
.product__list svg { flex: none; width: 18px; height: 18px; color: var(--sage); margin-top: 2px; }
.product__stack { display: flex; flex-wrap: wrap; gap: 8px; }
.product__media { position: relative; }
.product__media img { border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.product__caption {
  margin-top: 14px; font-size: 0.8rem; color: var(--slate);
  display: flex; gap: 8px; align-items: flex-start;
  background: var(--mist); padding: 10px 14px; border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.product__caption b { color: var(--navy); }

/* ---------- Tech stack ---------- */
.stack-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.stack-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono); font-size: 0.86rem; color: #DCE7F5;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.stack-item:hover { transform: translateY(-3px); border-color: var(--gold); }
.stack-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

/* ---------- Process timeline ---------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.process__line { position: absolute; top: 27px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--teal), var(--gold)); opacity: 0.4; }
.process__step { text-align: center; position: relative; }
.process__num {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center;
  background: var(--white); border: 2px solid var(--line);
  font-family: var(--font-mono); font-weight: 700; color: var(--navy);
  position: relative; z-index: 1;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.process__step:hover .process__num { transform: translateY(-4px); border-color: var(--gold); color: var(--gold-deep); }
.process__step h4 { font-family: var(--font-body); font-size: 1.02rem; margin-bottom: 6px; }
.process__step p { font-size: 0.85rem; color: var(--slate); }

/* ---------- Why / feature list ---------- */
.feature { display: flex; gap: 16px; }
.feature__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(56,163,184,0.14); color: var(--teal); }
.feature__ic svg { width: 22px; height: 22px; }
.feature h4 { font-family: var(--font-body); font-size: 1.05rem; color: var(--white); margin-bottom: 6px; }
.feature p { font-size: 0.9rem; color: #A8BAD4; }

/* ---------- Stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.statband__item { text-align: center; }
.statband__num { font-family: var(--font-mono); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.statband__lbl { font-size: 0.85rem; color: #A8BAD4; margin-top: 4px; }

/* ---------- Team ---------- */
.team__card { text-align: center; }
.team__photo {
  width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--mist), #E7EEF6);
  display: grid; place-items: center; color: var(--ocean);
  border: 2px dashed var(--line); overflow: hidden;
}
.team__photo svg { width: 46px; height: 46px; opacity: 0.55; }
.team__card h4 { font-family: var(--font-body); font-size: 1.08rem; }
.team__role { font-size: 0.85rem; color: var(--ocean); font-family: var(--font-mono); }
.team__note { font-size: 0.78rem; color: var(--slate); margin-top: 6px; }

/* ---------- Contact / CTA ---------- */
.cta {
  background: var(--grad-hero); color: var(--white);
  border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 68px);
  position: relative; overflow: hidden;
}
.cta__mesh { position: absolute; inset: 0; background: radial-gradient(50% 60% at 85% 20%, rgba(56,163,184,0.5), transparent 70%), radial-gradient(40% 50% at 10% 90%, rgba(203,161,83,0.3), transparent 70%); }
.cta__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cta h2 { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.cta p { color: #C6D4EA; margin-top: 14px; }
.contact-list { display: grid; gap: 14px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  padding: 16px 20px; border-radius: var(--radius-sm);
}
.contact-item__ic { flex: none; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1); display: grid; place-items: center; color: var(--gold); }
.contact-item__ic svg { width: 20px; height: 20px; }
.contact-item .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: #9FB2CF; font-family: var(--font-mono); }
.contact-item .val { font-size: 0.95rem; color: var(--white); font-weight: 500; word-break: break-word; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #9FB2CF; padding-block: 56px 32px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .brand__name { color: var(--white); }
.footer p { font-size: 0.9rem; margin-top: 14px; max-width: 34ch; }
.footer h5 { color: var(--white); font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__links { display: grid; gap: 10px; }
.footer__links a { font-size: 0.9rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------- i18n visibility ---------- */
[data-lang-hide] { display: none !important; }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(11,36,71,0.5); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.drawer.is-open { opacity: 1; pointer-events: auto; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(84vw, 340px);
  background: var(--white); padding: 28px 26px;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
  display: flex; flex-direction: column; gap: 8px;
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__panel a { padding: 14px 6px; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--navy); }
.drawer__close { align-self: flex-end; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--navy); margin-bottom: 8px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 520px; }
  .hero__card { transform: none; }
  .hero__code { position: static; margin-top: 16px; display: inline-block; }
  .cta__inner { grid-template-columns: 1fr; gap: 30px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__line { display: none; }
}

@media (max-width: 760px) {
  .nav__links, .nav__actions .btn, .nav__actions .lang { display: none; }
  .nav__actions .lang { display: inline-flex; }
  .nav__burger { display: block; }
  .grid--2, .grid--3, .grid--4, .statband { grid-template-columns: 1fr; }
  .product, .product--rev { grid-template-columns: 1fr; gap: 26px; }
  .product--rev .product__media { order: 0; }
  .hero__stats { gap: 26px; }
  .footer__top { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .nav, .drawer, .hero__code, .btn { display: none !important; }
  .hero, .section--navy, .cta { background: var(--white) !important; color: var(--ink) !important; }
  .hero__title, .hero__lead, .section--navy h2, .section--navy h3, .feature h4, .cta h2 { color: var(--navy) !important; -webkit-text-fill-color: var(--navy) !important; }
  .card, .product { box-shadow: none; border: 1px solid #ccc; break-inside: avoid; }
  body { font-size: 11pt; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
