/* ============================================================
   VISTA IT & MARKETING PTY LTD — Design System v3
   Sourcing from India · Exporting worldwide (HK · Singapore ·
   Middle East · USA · Canada) + IT & Marketing.
   Direction: Modern tech gradient (cyan → blue → purple → magenta)
   from the VISTA brand mark, on clean cool-white. Aurora · Glass · 3D.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #10142e;          /* deep brand navy (logo wordmark) */
  --ink-2: #1a2150;
  --ink-soft: #2a3168;
  /* Brand gradient stops (cyan → blue → purple → magenta) */
  --c-cyan: #1ba9e8;
  --c-blue: #3b59e0;
  --c-indigo: #5b2fd0;
  --c-purple: #8a2fd0;
  --c-magenta: #e0228f;
  /* Legacy token names repointed to the brand gradient so the
     whole site recolors through the cascade. */
  --gold: #6a2fd0;         /* primary accent (indigo-purple) */
  --gold-2: #b06bff;       /* bright accent for text on dark */
  --gold-deep: #4a1fb0;    /* deep accent for text on light */
  --saffron: #3b59e0;      /* secondary (blue) */
  --saffron-dark: #2b46c8;
  --paprika: #e0228f;      /* hot accent (magenta) */
  --spice: #1ba9e8;        /* tertiary (cyan) */
  --spice-dark: #1380c0;
  --spice-2: #2fb6f0;
  --cream: #f6f7fc;        /* page background, cool white */
  --cream-2: #eef0fb;
  --cream-3: #e4e7f7;
  --card: #ffffff;
  --text: #3a3f5c;
  --muted: #6b7090;
  --line: #e3e6f4;
  --line-2: #d2d6ec;

  --grad: linear-gradient(120deg, var(--c-cyan) 0%, var(--c-blue) 38%, var(--c-purple) 68%, var(--c-magenta) 100%);
  --grad-soft: linear-gradient(120deg, rgba(27,169,232,.14), rgba(138,47,208,.12) 60%, rgba(224,34,143,.12));

  --shadow-sm: 0 2px 10px rgba(16, 20, 46, .06);
  --shadow-md: 0 14px 38px rgba(16, 20, 46, .12);
  --shadow-lg: 0 30px 70px rgba(16, 20, 46, .20);
  --shadow-gold: 0 12px 34px rgba(106, 47, 208, .30);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --maxw: 1240px;
  --gap: clamp(1rem, 3vw, 2rem);

  --serif: "Playfair Display", "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.08; color: var(--ink); letter-spacing: -.015em; }
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
p { color: var(--text); }
.lead { font-size: clamp(1.06rem, 2vw, 1.32rem); color: var(--muted); line-height: 1.6; font-weight: 400; }
.serif-i { font-style: italic; }

/* gradient / shimmer text */
.gradient-text {
  background: linear-gradient(100deg, var(--c-cyan) 0%, var(--c-blue) 30%, var(--c-purple) 60%, var(--c-magenta) 85%, var(--c-cyan) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.2rem); }
.section { padding: clamp(3.5rem, 8vw, 7.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.center { text-align: center; }
.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 700; font-size: .76rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--saffron)); border-radius: 2px; }
.section-head { max-width: 740px; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); }
.section-head.left { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: 1rem; padding: .9rem 1.6rem; min-height: 48px;
  border-radius: 999px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); background-size: 160% auto; color: #fff; box-shadow: var(--shadow-gold); transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-position .5s var(--ease); }
.btn--primary:hover { transform: translateY(-3px); background-position: right center; box-shadow: 0 18px 40px rgba(106, 47, 208, .42); }
.btn--primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45), transparent 70%); transform: translateX(-120%); transition: transform .7s var(--ease); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-3px); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(8px); }
.btn--light:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 247, 252, .72);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(246, 247, 252, .9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; }
.brand .brand-logo-img { height: 42px; width: auto; display: block; }
@media (max-width: 480px) { .brand .brand-logo-img { height: 36px; } }
.nav-links { display: flex; align-items: center; gap: clamp(.4rem, 1.6vw, 1.5rem); }
.nav-links a { font-weight: 500; font-size: .97rem; color: var(--ink); padding: .4rem .2rem; position: relative; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: linear-gradient(90deg, var(--gold), var(--saffron)); transition: width .25s var(--ease); border-radius: 2px; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: .7rem; }
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); flex-direction: column; gap: 5px; align-items: center; justify-content: center; background: #fff; }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); padding: 1.2rem; gap: .3rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .35s var(--ease);
    max-height: calc(100vh - 78px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .9rem .6rem; border-radius: 10px; }
  .nav-links a:hover { background: var(--cream-2); }
  .nav-links a::after { display: none; }
  .nav-cta .btn--primary { display: none; }
  .burger { display: flex; }
}

/* ---------- Aurora background (for dark sections) ---------- */
.aurora { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; will-change: transform; }
.aurora .a1 { width: 46vw; height: 46vw; left: -8vw; top: -12vw; background: radial-gradient(circle, var(--saffron), transparent 68%); animation: drift1 18s ease-in-out infinite alternate; }
.aurora .a2 { width: 40vw; height: 40vw; right: -10vw; top: 8vw; background: radial-gradient(circle, var(--paprika), transparent 68%); animation: drift2 22s ease-in-out infinite alternate; }
.aurora .a3 { width: 38vw; height: 38vw; left: 24vw; bottom: -16vw; background: radial-gradient(circle, var(--spice), transparent 70%); opacity: .4; animation: drift3 26s ease-in-out infinite alternate; }
.aurora .a4 { width: 30vw; height: 30vw; right: 14vw; bottom: -8vw; background: radial-gradient(circle, var(--gold), transparent 70%); opacity: .5; animation: drift1 20s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { to { transform: translate3d(8%, 10%, 0) scale(1.15); } }
@keyframes drift2 { to { transform: translate3d(-10%, 8%, 0) scale(1.1); } }
@keyframes drift3 { to { transform: translate3d(6%, -10%, 0) scale(1.2); } }

/* film grain overlay */
.grain::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .06;
  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='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(135% 130% at 82% -10%, #241a5e 0%, var(--ink) 52%, #080a1e 100%);
  color: #fff; padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7.5rem);
}
.hero .container { position: relative; z-index: 3; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.78); margin-top: 1.4rem; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; margin-top: 2.6rem; }
.hero-badge { display: flex; align-items: center; gap: .55rem; font-size: .88rem; color: rgba(255,255,255,.78); }
.hero-badge svg { width: 20px; height: 20px; color: var(--gold-2); flex: none; }

/* 3D / visual stage */
.hero-stage { position: relative; width: 100%; min-height: 460px; }
#hero3d { position: absolute; inset: -6% -4%; z-index: 1; }
#hero3d canvas { width: 100% !important; height: 100% !important; display: block; }
.hero-stage .stage-fallback { position: absolute; inset: 0; z-index: 0; border-radius: var(--radius-lg); opacity: 1; transition: opacity 1s var(--ease); }
#hero3d.ready + .stage-fallback { opacity: 0; }
/* broken-image fallback: keep the warm gradient holder */
.img-fallback { background: linear-gradient(135deg, var(--saffron), var(--gold-deep)); }
.ph.img-fallback::after, .bento-item.img-fallback::after { opacity: .5; }
@media (max-width: 980px) { .hero-stage { min-height: 380px; max-width: 540px; margin: 0 auto; } }
@media (max-width: 480px) { .hero-stage { min-height: 320px; } }

/* floating glass stat card over the 3D stage */
.float-card {
  position: absolute; z-index: 4; background: rgba(255,255,255,.1); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.22); border-radius: 16px; padding: .85rem 1.1rem;
  display: flex; align-items: center; gap: .7rem; box-shadow: 0 16px 40px rgba(0,0,0,.3); color: #fff;
}
.float-card .fc-ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none; background: linear-gradient(135deg, var(--gold), var(--saffron-dark)); }
.float-card .fc-ic svg { width: 20px; height: 20px; color: #fff; }
.float-card strong { display: block; font-size: .95rem; }
.float-card span { font-size: .76rem; color: rgba(255,255,255,.7); }
.float-card.fc-tl { top: 4%; left: -2%; }
.float-card.fc-br { bottom: 6%; right: -2%; }
@media (max-width: 560px) { .float-card.fc-tl { left: 0; } .float-card.fc-br { right: 0; } }

/* ---------- Marquee (infinite scroll) ---------- */
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 2.6rem; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .chip { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--ink); font-size: .98rem; white-space: nowrap; }
.marquee-track .chip svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; }
.marquee-track .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: .5; align-self: center; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Image treatments ---------- */
.ph { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--cream-2), var(--cream-3)); }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,20,16,.18), transparent 50%); pointer-events: none; }

/* ---------- Bento grid ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 168px; gap: 1rem; }
.bento-item { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.bento-item:hover img { transform: scale(1.08); }
.bento-item .cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1rem 1.1rem; color: #fff; }
.bento-item .cap strong { font-family: var(--serif); font-size: 1.15rem; display: block; }
.bento-item .cap span { font-size: .82rem; opacity: .85; }
.bento-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,12,8,.82) 4%, rgba(18,12,8,.1) 55%, transparent); z-index: 1; }
.bento-item.tag-spice .cap strong { color: #fff; }
.b-2x2 { grid-column: span 2; grid-row: span 2; }
.b-2x1 { grid-column: span 2; }
.b-1x2 { grid-row: span 2; }
@media (max-width: 820px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .b-2x2 { grid-column: span 2; grid-row: span 2; }
  .b-2x1 { grid-column: span 2; }
  .b-1x2 { grid-row: span 1; }
}
@media (max-width: 480px) { .bento { grid-auto-rows: 132px; } .b-2x2, .b-2x1 { grid-column: span 2; } .b-2x2 { grid-row: span 2; } }

/* ---------- Divisions ---------- */
.division-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end; color: #fff;
  box-shadow: var(--shadow-md); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.division-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.division-card .bg { position: absolute; inset: 0; }
.division-card .bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.division-card:hover .bg img { transform: scale(1.07); }
.division-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,12,8,.94) 6%, rgba(18,12,8,.35) 58%, rgba(18,12,8,.05)); }
.division-card .content { position: relative; z-index: 2; padding: clamp(1.7rem, 3vw, 2.6rem); }
.division-card .tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--gold); color: var(--ink); padding: .32rem .75rem; border-radius: 999px; margin-bottom: .9rem; }
.division-card.is-spice .tag { background: var(--spice-2); color: #fff; }
.division-card h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.division-card p { color: rgba(255,255,255,.86); margin-top: .5rem; max-width: 44ch; }
.division-card .more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; font-weight: 600; color: var(--gold-2); }
.division-card .more svg { width: 16px; height: 16px; transition: transform .25s; }
.division-card:hover .more svg { transform: translateX(5px); }

/* ---------- Generic cards (+ spotlight) ---------- */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem); box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card::before { /* cursor spotlight */
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .3s; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(106,47,208,.14), transparent 45%);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card:hover::before { opacity: 1; }
.card .icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  margin-bottom: 1.2rem; background: linear-gradient(135deg, rgba(59,89,224,.16), rgba(106,47,208,.12)); color: var(--gold-deep);
}
.card .icon svg { width: 26px; height: 26px; }
.card.spice .icon { background: linear-gradient(135deg, rgba(31,122,92,.16), rgba(47,156,118,.1)); color: var(--spice-dark); }
.card h3 { font-size: 1.24rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .97rem; }

/* category pill grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1rem; }
.cat {
  display: flex; align-items: center; gap: .9rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1rem 1.1rem; transition: .28s var(--ease); position: relative; overflow: hidden;
}
.cat:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.cat .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; background: linear-gradient(135deg, rgba(59,89,224,.16), rgba(106,47,208,.1)); color: var(--gold-deep); }
.cat .ic svg { width: 24px; height: 24px; }
.cat strong { display: block; font-size: .98rem; color: var(--ink); }
.cat span { font-size: .82rem; color: var(--muted); }

/* ---------- Product catalogue (editorial, no emoji) ---------- */
.prod-group { margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.prod-group-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.3rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.prod-group-head .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; flex: none; background: linear-gradient(135deg, var(--ink), var(--ink-2)); color: var(--gold-2); }
.prod-group-head .ic svg { width: 24px; height: 24px; }
.prod-group-head h3 { font-size: clamp(1.2rem, 2.4vw, 1.55rem); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
  display: flex; flex-direction: column; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
/* refined header band; emoji text hidden via font-size:0, brand-tag preserved */
.product .thumb {
  font-size: 0; height: 92px; position: relative; overflow: hidden;
  background: radial-gradient(120% 130% at 18% 12%, rgba(255,255,255,.5), transparent 52%), linear-gradient(135deg, var(--saffron), var(--gold-deep));
}
.product .thumb::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.3) 1px, transparent 1px); background-size: 14px 14px; opacity: .35; }
.product .thumb.photo { height: 132px; background: var(--cream-2); }
.product .thumb.photo img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.product .thumb.photo::after { display: none; }
.product:hover .thumb.photo img { transform: scale(1.06); transition: transform .6s var(--ease); }
.product .thumb.icon { height: 132px; display: grid; place-items: center; }
.product .thumb.icon .emoji { font-size: 3rem; line-height: 1; z-index: 1; filter: drop-shadow(0 3px 6px rgba(0,0,0,.22)); transition: transform .5s var(--ease); }
.product:hover .thumb.icon .emoji { transform: scale(1.08); }
.product:nth-child(3n+2) .thumb { background: radial-gradient(120% 130% at 18% 12%, rgba(255,255,255,.5), transparent 52%), linear-gradient(135deg, var(--paprika), #8f3220); }
.product:nth-child(3n) .thumb { background: radial-gradient(120% 130% at 18% 12%, rgba(255,255,255,.45), transparent 52%), linear-gradient(135deg, var(--spice-2), var(--spice-dark)); }
.product.spice .thumb { background: radial-gradient(120% 130% at 18% 12%, rgba(255,255,255,.45), transparent 52%), linear-gradient(135deg, var(--spice-2), var(--spice-dark)); }
.product .brand-tag {
  position: absolute; top: .6rem; left: .6rem; z-index: 2; background: rgba(255,255,255,.95); color: var(--ink);
  font-size: .62rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .26rem .6rem; border-radius: 999px; box-shadow: var(--shadow-sm); font-family: var(--sans);
}
.product .pbody { padding: .9rem 1rem 1.1rem; border-top: 2px solid transparent; }
.product .pname { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 1.02rem; line-height: 1.28; }
.product .psize { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

/* ---------- Feature / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.split-media:hover img { transform: scale(1.05); }
.split-media .badge {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2; background: rgba(255,255,255,.94); color: var(--ink);
  font-weight: 600; font-size: .85rem; padding: .5rem .9rem; border-radius: 999px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: .5rem;
}
.split-media .badge svg { width: 18px; height: 18px; color: var(--gold-deep); }
.tick-list { margin-top: 1.5rem; display: grid; gap: .85rem; }
.tick-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--text); }
.tick-list svg { width: 22px; height: 22px; color: var(--spice); flex: none; margin-top: 2px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--gold-deep); font-weight: 700; line-height: 1; }
.stat .label { font-size: .9rem; color: var(--muted); margin-top: .45rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step .n { font-family: var(--serif); font-size: 1.5rem; color: #fff; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--grad); margin-bottom: 1.1rem; box-shadow: var(--shadow-gold); }
.step h4 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); background: radial-gradient(130% 130% at 80% -10%, #241a5e, var(--ink) 58%, #080a1e); color: #fff; padding: clamp(2.6rem, 6vw, 4.5rem); text-align: center; }
.cta-band > .container { position: relative; z-index: 3; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 580px; margin: 1rem auto 0; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: radial-gradient(130% 140% at 78% -12%, #241a5e, var(--ink) 58%, #080a1e); color: #fff; padding: clamp(3.2rem, 7vw, 5.5rem) 0 clamp(3rem, 7vw, 4.5rem); position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 3; max-width: 840px; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.8); margin-top: 1rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--gold-2); }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; padding: .9rem 1rem; color: var(--text);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px; transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(106,47,208,.16); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .6rem; }
.form-success { display: none; background: rgba(31,122,92,.1); border: 1px solid var(--spice); color: var(--spice-dark); padding: 1rem 1.2rem; border-radius: 12px; font-weight: 600; margin-bottom: 1.2rem; }
.form-success.show { display: block; }
.form-error { display: none; background: rgba(192,67,43,.08); border: 1px solid var(--paprika); color: var(--paprika); padding: 1rem 1.2rem; border-radius: 12px; font-weight: 600; margin-bottom: 1.2rem; }
.form-error.show { display: block; }

/* contact info list */
.info-list { display: grid; gap: 1.3rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(59,89,224,.16), rgba(106,47,208,.1)); color: var(--gold-deep); flex: none; }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.info-item p, .info-item a { font-size: 1.02rem; color: var(--ink); font-weight: 500; }
.info-item a:hover { color: var(--gold-deep); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.35rem 0; font-family: var(--serif); font-size: 1.16rem; color: var(--ink); font-weight: 600; }
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--cream-2); color: var(--gold-deep); display: grid; place-items: center; font-size: 1.3rem; transition: .3s; }
.faq-item.open .pm { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding-bottom: 1.35rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.66); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; margin-top: 2rem; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; position: relative; z-index: 2; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand .brand-logo-img { height: 46px; }
.footer-about { margin: 1.1rem 0 1.4rem; font-size: .94rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.6rem; padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .85rem; color: rgba(255,255,255,.55); position: relative; z-index: 2; }
.footer-bottom a:hover { color: var(--gold-2); }

/* ---------- Reveal animation (JS-gated; safe without JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; }

/* 3D tilt cards */
.tilt { transform-style: preserve-3d; transition: transform .25s var(--ease); will-change: transform; }
.tilt-inner { transform: translateZ(40px); }

/* ---------- Markets we serve ---------- */
.markets { position: relative; overflow: hidden; }
.market-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
@media (max-width: 1040px) { .market-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .market-grid { grid-template-columns: repeat(2, 1fr); } }
.market {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.3rem 1.4rem; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.market::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; background: var(--grad); }
.market:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.market .flag {
  width: 56px; height: 56px; margin: .3rem auto 1rem; border-radius: 16px;
  display: grid; place-items: center; color: #fff; background: var(--grad); background-size: 180% auto;
  box-shadow: var(--shadow-gold);
}
.market .flag svg { width: 28px; height: 28px; }
.market h4 { font-size: 1.12rem; margin-bottom: .25rem; }
.market p { font-size: .86rem; color: var(--muted); line-height: 1.45; }
.market .pin { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .6rem; }
.route-note { display: inline-flex; align-items: center; gap: .6rem; margin-top: 2.2rem; font-weight: 600; color: var(--ink); background: var(--grad-soft); border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.3rem; }
.route-note svg { width: 20px; height: 20px; color: var(--gold-deep); }

/* ---------- Brands we supply (logo wall) ---------- */
.brand-wall { position: relative; }
.brand-strip { position: relative; overflow: hidden; padding: .6rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.brand-track { display: flex; gap: 1.1rem; width: max-content; animation: brandscroll 42s linear infinite; }
.brand-track.rev { animation-direction: reverse; animation-duration: 50s; }
.brand-wall:hover .brand-track { animation-play-state: paused; }
@keyframes brandscroll { to { transform: translateX(-50%); } }
.brand-logo {
  flex: none; height: 78px; min-width: 168px; padding: 0 1.6rem;
  display: grid; place-items: center; background: var(--card);
  border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.brand-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.brand-logo img { max-height: 46px; max-width: 130px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .62; transition: filter .25s, opacity .25s; }
.brand-logo:hover img { filter: none; opacity: 1; }
.brand-logo img + .wordmark { display: none; } /* show wordmark only when logo image is absent/failed */
.brand-logo .wordmark {
  font-family: var(--serif); font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em;
  color: var(--ink); white-space: nowrap; text-align: center; line-height: 1.05;
}
.brand-logo .wordmark small { display: block; font-family: var(--sans); font-size: .56rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

/* ---------- Section blending ---------- */
.bg-tint { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.bg-grad-soft { background: var(--grad-soft); }
.seam-top { position: relative; }
.seam-top::before { content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 120px; height: 3px; border-radius: 3px; background: var(--grad); opacity: .85; }
.section--flow { padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(2.5rem, 6vw, 5rem); }

/* ---------- Utilities ---------- */
.bg-cream2 { background: var(--cream-2); }
.bg-dark { background: var(--ink); color: #fff; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.maxw-sm { max-width: 640px; }
[hidden] { display: none !important; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .aurora span { animation: none; }
  .marquee-track { animation: none; }
  .brand-track { animation: none; }
  .gradient-text { animation: none; }
}
