/* ==========================================================================
   CRETA CORE GLOBAL — Design System
   Clean light corporate · logo-derived palette (yellow + charcoal)
   ========================================================================== */

:root {
  /* Brand */
  --yellow:      #FDDE00;
  --yellow-soft: #FDE955;
  --yellow-glow: #FFF3A6;
  --yellow-deep: #E0BE00;

  /* Ink / neutrals */
  --ink:    #14171A;
  --ink-2:  #20262C;
  --graphite:#3A434C;
  --muted:  #6B7480;
  --muted-2:#9AA2AB;
  --line:   #E6E9ED;
  --line-2: #EFF1F4;

  /* Surfaces */
  --bg:       #FFFFFF;
  --bg-soft:  #F7F8FA;
  --bg-soft-2:#EFF2F5;
  --bg-ink:   #14171A;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(20,23,26,.05);
  --shadow:    0 14px 40px rgba(20,23,26,.08);
  --shadow-lg: 0 30px 70px rgba(20,23,26,.14);
  --ring:      0 0 0 4px rgba(253,222,0,.30);

  --radius:   18px;
  --radius-sm:12px;
  --radius-lg:28px;

  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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; }
::selection { background: var(--yellow); color: var(--ink); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 100px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 72px 0; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--graphite); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--graphite); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 20px;
}
.eyebrow::before {
  content:""; width: 30px; height: 3px; border-radius: 3px;
  background: var(--yellow); box-shadow: 0 0 0 1px var(--yellow-deep) inset;
}
.eyebrow--center { justify-content: center; }
.text-center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 60px; }
.section-head.left { margin-left: 0; }
.highlight { position: relative; white-space: nowrap; }
.highlight::after {
  content:""; position: absolute; left:-2px; right:-2px; bottom: .08em; height: .36em;
  background: var(--yellow); z-index:-1; border-radius: 3px; transform: skewX(-12deg);
  opacity: .9;
}
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: 15px 28px; border-radius: 999px; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn--primary { background: var(--yellow); color: var(--ink); box-shadow: 0 10px 26px rgba(253,222,0,.45); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(253,222,0,.6); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); background: #000; box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-3px); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 34px; width: auto; transition: height .4s var(--ease); }
.header.scrolled .brand img { height: 30px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: .96rem;
  padding: 9px 16px; border-radius: 999px; color: var(--ink-2);
  transition: background .25s, color .25s; position: relative;
}
.nav-links a:hover { background: var(--bg-soft-2); color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content:""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 3px;
  background: var(--yellow); border-radius: 3px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle span:nth-child(1){ top: 15px; } .nav-toggle span:nth-child(2){ top: 21px; } .nav-toggle span:nth-child(3){ top: 27px; }
body.nav-open .nav-toggle span:nth-child(1){ top:21px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
body.nav-open .nav-toggle span:nth-child(3){ top:21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 170px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 span.accent { color: var(--ink); position: relative; }
.hero .lead { margin: 26px 0 34px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust div { }
.hero-trust .n { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--ink); }
.hero-trust .l { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

/* Hero visual */
.hero-visual { position: relative; aspect-ratio: 1/1; }
.hero-card {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-soft); color: var(--ink); flex: none; }
.hero-card .ic svg { width: 24px; height: 24px; }
.hero-card .t { font-family: var(--font-display); font-weight: 600; font-size: .98rem; line-height: 1.2; }
.hero-card .s { font-size: .78rem; color: var(--muted); }
.hero-orb {
  position: absolute; inset: 8% 8% auto auto; width: 78%; aspect-ratio: 1;
  border-radius: 32px; background:
    radial-gradient(120% 120% at 30% 20%, var(--yellow-glow), transparent 55%),
    linear-gradient(150deg, var(--yellow) 0%, var(--yellow-soft) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-orb::after {
  content:""; position: absolute; inset:0;
  background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 34px 34px; opacity: .06;
}
.spark { position:absolute; border-radius:50%; background: var(--ink); opacity:.85; }

/* ---------- Hero value-flow (value-added distributor story) ---------- */
.vflow { position: absolute; inset: 0; }
.vflow-wires { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; z-index: 1; }
.wire { fill: none; stroke: var(--line); stroke-width: 2.4; }
.wire-hot { stroke: url(#wgrad); stroke-width: 2.8; }
.flow-in  { fill: var(--graphite); }
.flow-out { fill: var(--yellow); filter: url(#dotGlow); }

.vlabel {
  position: absolute; z-index: 4; width: 38%;
  font-family: var(--font-display); font-weight: 600;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2);
}

.vchip {
  position: absolute; z-index: 3; transform: translate(-50%,-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 15px; font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  color: var(--ink); white-space: nowrap; box-shadow: var(--shadow-sm);
}
.vchip svg { width: 16px; height: 16px; color: var(--ink); }
.vchip .d { width: 8px; height: 8px; border-radius: 50%; background: var(--graphite); flex: none; }
.vchip.vout .d { background: var(--yellow); }

/* hub */
.vhub {
  position: absolute; left: 52%; top: 50%; transform: translate(-50%,-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.vhub-glow {
  position: absolute; left: 50%; top: 38%; width: 240px; height: 240px;
  transform: translate(-50%,-50%); border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, var(--yellow-glow), transparent 62%);
  animation: hubPulse 3.6s ease-in-out infinite;
}
.vhub-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; border-radius: 18px;
  padding: 15px 20px 15px 16px; box-shadow: var(--shadow-lg);
}
.vhub-mark { width: 44px; height: 44px; display: grid; place-items: center; flex: none; }
.vhub-mark img { width: 44px; height: auto; }
.vhub-text { display: flex; flex-direction: column; line-height: 1; }
.vhub-name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; }
.vhub-sub { font-size: .74rem; color: rgba(255,255,255,.62); margin-top: 4px; }
.vhub-tags { display: flex; gap: 7px; }
.vhub-tags span {
  font-family: var(--font-display); font-weight: 500; font-size: .68rem;
  background: #fff; border: 1px solid var(--line); color: var(--graphite);
  padding: 5px 11px; border-radius: 999px; box-shadow: var(--shadow-sm);
  animation: tagPulse 6s ease-in-out infinite;
}
.vhub-tags span:nth-child(2) { animation-delay: 2s; }
.vhub-tags span:nth-child(3) { animation-delay: 4s; }

@keyframes hubPulse { 0%,100% { opacity: .55; transform: translate(-50%,-50%) scale(.92); } 50% { opacity: .9; transform: translate(-50%,-50%) scale(1.06); } }
@keyframes tagPulse { 0%,72%,100% { background:#fff; color:var(--graphite); border-color:var(--line); } 12%,40% { background:var(--yellow); color:var(--ink); border-color:var(--yellow); } }
@keyframes vbob { 0%,100% { transform: translate(-50%,-50%); } 50% { transform: translate(-50%, calc(-50% - 7px)); } }
.vbob { animation: vbob 7s ease-in-out infinite; }
.vbob.d1 { animation-delay: -2.3s; }
.vbob.d2 { animation-delay: -4.6s; }

@media (max-width: 880px) {
  .vhub-card { padding: 13px 16px 13px 14px; }
  .vhub-name { font-size: .98rem; }
  .vchip { font-size: .8rem; padding: 8px 13px; }
  .vlabel { font-size: .62rem; }
}
/* keep the whole diagram inside narrow phones (wires + chips scale together) */
@media (max-width: 600px) { .vflow { transform: scale(.86); transform-origin: center; } }
@media (max-width: 430px) { .vflow { transform: scale(.74); transform-origin: center; } }

/* background grid + glow */
.bg-grid { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.bg-grid::before {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 35%, transparent 75%);
          mask-image: radial-gradient(120% 90% at 70% 0%, #000 35%, transparent 75%);
  opacity: .6;
}
.glow { position:absolute; border-radius:50%; filter: blur(70px); opacity:.5; z-index:-1; pointer-events:none; }
.glow--y { background: var(--yellow-glow); }

/* ---------- 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: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.card::before {
  content:""; position:absolute; left:0; top:0; height: 4px; width: 100%;
  background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .icn {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--bg-soft); color: var(--ink); margin-bottom: 22px; transition: background .4s, transform .4s var(--ease);
}
.card:hover .icn { background: var(--yellow); transform: rotate(-6deg); }
.card .icn svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; color: var(--muted); }
.card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { font-size: .76rem; font-weight: 500; padding: 5px 11px; border-radius: 999px; background: var(--bg-soft-2); color: var(--graphite); }

.num-badge { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--yellow-deep); }

/* ---------- Marquee ---------- */
.marquee { 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; gap: 18px; width: max-content; animation: scroll-x 38s linear infinite; }
@media (hover: hover) { .marquee:hover .marquee-track { animation-play-state: paused; } }
.marquee--rev .marquee-track { animation-direction: reverse; animation-duration: 46s; }
.brand-chip {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: .01em;
  padding: 16px 30px; border-radius: 14px; background: #fff; border: 1px solid var(--line);
  color: var(--graphite); white-space: nowrap; transition: color .3s, border-color .3s, transform .3s;
}
.brand-chip:hover { color: var(--ink); border-color: var(--yellow); transform: translateY(-2px); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 16px; border-radius: var(--radius); }
.stat .v { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem,4vw,3.2rem); color: var(--ink); line-height:1; }
.stat .v .suf { color: var(--yellow-deep); }
.stat .k { margin-top: 10px; font-size: .92rem; color: var(--muted); letter-spacing: .02em; }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-item .chk { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--yellow); display: grid; place-items: center; color: var(--ink); }
.feature-item .chk svg { width: 16px; height: 16px; }
.feature-item h4 { font-size: 1.05rem; margin-bottom: 2px; }
.feature-item p { font-size: .94rem; color: var(--muted); }

.media {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: linear-gradient(150deg, var(--ink), #262d34); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px; padding: 20px; min-height: 420px;
}
.media::after { content:""; position:absolute; inset:0; z-index:0; pointer-events:none; background-image: linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size: 40px 40px; }
.media > * { position: relative; z-index: 1; }
.media .badge { align-self: flex-start; background: var(--yellow); color: var(--ink); font-family: var(--font-display); font-weight:700; padding: 10px 16px; border-radius: 12px; }
.media-head { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.media-core { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-content: center; }
.mtile { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 13px 14px; color: #fff; transition: background .3s, transform .3s var(--ease); }
.mtile:hover { background: rgba(253,222,0,.16); transform: translateY(-2px); }
.mtile svg { width: 22px; height: 22px; color: var(--yellow); flex: none; }
.mtile span { font-family: var(--font-display); font-weight: 500; font-size: .84rem; line-height: 1.15; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 64px 56px;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.7); }
.cta-band::before { content:""; position:absolute; right:-60px; top:-60px; width: 320px; height: 320px; border-radius:50%; background: radial-gradient(circle, rgba(253,222,0,.5), transparent 65%); }
.cta-grid { display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center; position: relative; z-index: 2; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 72px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer img.flogo { height: 32px; margin-bottom: 20px; }
.footer p { color: rgba(255,255,255,.6); font-size: .95rem; }
.footer h5 { font-family: var(--font-display); color:#fff; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.62); font-size: .95rem; transition: color .25s, padding .25s; }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact a { display:flex; gap:10px; align-items:flex-start; color: rgba(255,255,255,.72); font-size:.95rem; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height:18px; flex:none; color: var(--yellow); margin-top: 3px; }
.footer-bottom { padding-top: 26px; display:flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 160px 0 70px; position: relative; overflow: hidden; }
.page-hero .lead { max-width: 640px; }
.crumb { font-size: .85rem; color: var(--muted); margin-bottom: 18px; font-family: var(--font-display); }
.crumb a:hover { color: var(--ink); }
.crumb span { color: var(--yellow-deep); }

/* ---------- Accordion (products) ---------- */
.accordion { display: grid; gap: 16px; }
.acc {
  border: 1px solid var(--line); border-radius: var(--radius); background:#fff; overflow: hidden;
  transition: box-shadow .35s, border-color .35s;
}
.acc.open { box-shadow: var(--shadow); border-color: transparent; }
.acc-head { display: flex; align-items: center; gap: 18px; padding: 24px 28px; width: 100%; text-align: left; }
.acc-head .acc-ic { width: 50px; height: 50px; border-radius: 13px; background: var(--bg-soft); display: grid; place-items: center; color: var(--ink); flex:none; transition: background .3s; }
.acc.open .acc-head .acc-ic, .acc-head:hover .acc-ic { background: var(--yellow); }
.acc-ic svg { width: 25px; height: 25px; }
.acc-head h3 { font-size: 1.18rem; flex: 1; }
.acc-head .plus { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); position: relative; flex:none; transition: .35s var(--ease); }
.acc-head .plus::before,.acc-head .plus::after { content:""; position:absolute; background: var(--ink); border-radius:2px; top:50%; left:50%; transform: translate(-50%,-50%); transition:.35s var(--ease); }
.acc-head .plus::before { width: 13px; height: 2.5px; }
.acc-head .plus::after { width: 2.5px; height: 13px; }
.acc.open .acc-head .plus { background: var(--yellow); border-color: var(--yellow); transform: rotate(180deg); }
.acc.open .acc-head .plus::after { opacity: 0; }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.acc.open .acc-body { grid-template-rows: 1fr; }
.acc-body > div { overflow: hidden; }
.acc-inner { padding: 0 28px 28px 96px; }
.acc-inner .chips { display: flex; flex-wrap: wrap; gap: 9px; }
.acc-inner .chips span { font-size: .85rem; background: var(--bg-soft); border:1px solid var(--line-2); padding: 7px 13px; border-radius: 999px; color: var(--graphite); }

/* ---------- Forms ---------- */
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display:block; font-family: var(--font-display); font-weight:500; font-size: .9rem; margin-bottom: 8px; }
.field input,.field textarea,.field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-soft);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus,.field textarea:focus,.field select:focus { outline: none; border-color: var(--yellow); background:#fff; box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 14px; }
.form-ok { display:none; padding: 16px; border-radius: var(--radius-sm); background: rgba(253,222,0,.16); border:1px solid var(--yellow); color: var(--ink); font-weight:500; margin-bottom: 20px; }
.form-ok.show { display:block; }

/* contact tiles */
.contact-tiles { display: grid; gap: 16px; }
.ctile { display:flex; gap:16px; align-items:flex-start; padding: 22px; border:1px solid var(--line); border-radius: var(--radius); background:#fff; transition: transform .35s var(--ease), box-shadow .35s; }
.ctile:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.ctile .ci { width:48px; height:48px; border-radius:13px; background: var(--yellow); display:grid; place-items:center; color: var(--ink); flex:none; }
.ctile .ci svg { width:23px; height:23px; }
.ctile h4 { font-size:1rem; margin-bottom:3px; }
.ctile p,.ctile a { font-size:.95rem; color: var(--muted); }
.ctile a:hover { color: var(--ink); }

/* sector pills */
.pills { display:flex; flex-wrap:wrap; gap:10px; }
.pill { display:inline-flex; align-items:center; gap:8px; padding: 10px 18px; border-radius:999px; background:#fff; border:1px solid var(--line); font-family:var(--font-display); font-weight:500; font-size:.92rem; }
.pill .dot { width:8px;height:8px;border-radius:50%; background: var(--yellow); }

/* timeline */
.tl { position: relative; display:grid; gap: 30px; padding-left: 34px; }
.tl::before { content:""; position:absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; }
.tl-item::before { content:""; position:absolute; left: -34px; top: 4px; width: 20px; height:20px; border-radius:50%; background:#fff; border: 3px solid var(--yellow); }
.tl-item h4 { font-size: 1.1rem; }
.tl-item .yr { font-family: var(--font-display); font-size: .82rem; color: var(--yellow-deep); font-weight:600; letter-spacing:.05em; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s; } .reveal[data-d="2"]{ transition-delay:.16s; }
.reveal[data-d="3"]{ transition-delay:.24s; } .reveal[data-d="4"]{ transition-delay:.32s; }
.reveal[data-d="5"]{ transition-delay:.40s; } .reveal[data-d="6"]{ transition-delay:.48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; }
  .marquee-track { animation: none !important; }
  .vbob, .vhub-glow, .vhub-tags span, .floaty { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* float anim for hero cards */
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
.floaty { animation: floaty 6s ease-in-out infinite; }
.floaty.d1 { animation-delay: -2s; } .floaty.d2 { animation-delay: -4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 880px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  /* On mobile, backdrop-filter on the scrolled header would trap the position:fixed
     drawer inside the header box (breaks/hides it). Use a solid header instead. */
  .header.scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; background: #fff; box-shadow: 0 1px 0 var(--line), var(--shadow-sm); }
  .header { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: #fff; flex-direction: column; align-items: stretch; gap: 6px;
    padding: 100px 22px 30px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 99;
  }
  body.nav-open .nav-links { display: flex; transform: none; }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .nav-links a.active::after { display:none; }
  .nav-links a.active { background: var(--bg-soft-2); }
  .nav-drawer-cta { display:flex !important; margin-top: 12px; }
  .hero-grid, .split, .cta-grid { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; max-width: 440px; height: 340px; aspect-ratio: auto; align-self: center; margin: 4px auto 10px; order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta-band { padding: 44px 28px; }
  .acc-inner { padding-left: 28px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .container { padding-inline: 18px; }
}
.nav-drawer-cta { display: none; }

/* ==========================================================================
   Media feature tiles (fix for empty/broken media panels)
   ========================================================================== */
.media-feature { display: grid; gap: 10px; }
.mf { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 14px; padding: 13px 15px; box-shadow: var(--shadow); }
.mf .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--bg-soft); display: grid; place-items: center; color: var(--ink); flex: none; }
.mf .ic svg { width: 22px; height: 22px; }
.mf .t { font-family: var(--font-display); font-weight: 600; font-size: .95rem; line-height: 1.15; }
.mf .s { font-size: .78rem; color: var(--muted); }
.media-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.media-chips span { font-family: var(--font-display); font-weight: 500; font-size: .8rem; padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.media-chips span.hot { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

/* ==========================================================================
   Products: solution spotlight cards
   ========================================================================== */
.sol-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.scard { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; position: relative; }
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.scard svg { width: 30px; height: 30px; color: var(--ink); margin-bottom: 14px; }
.scard h3 { font-size: 1.1rem; margin-bottom: 6px; }
.scard p { font-size: .9rem; color: var(--muted); }
.scard .scount { display: inline-block; margin-top: 14px; font-family: var(--font-display); font-weight: 600; font-size: .76rem;
  color: var(--yellow-deep); background: rgba(253,222,0,.16); padding: 4px 11px; border-radius: 999px; }

/* ==========================================================================
   Products: interactive brand explorer
   ========================================================================== */
.explorer-bar { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fchip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 500; font-size: .85rem;
  padding: 9px 15px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--graphite); transition: .25s var(--ease); }
.fchip svg { width: 16px; height: 16px; }
.fchip:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.fchip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.fchip.active svg { color: var(--yellow); }
.explorer-search { position: relative; flex: 1; min-width: 220px; max-width: 320px; }
.explorer-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); }
.explorer-search input { width: 100%; padding: 12px 16px 12px 42px; border: 1.5px solid var(--line); border-radius: 999px;
  font-family: inherit; font-size: .95rem; background: var(--bg-soft); transition: .25s; }
.explorer-search input:focus { outline: none; border-color: var(--yellow); background: #fff; box-shadow: var(--ring); }
.explorer-count { font-size: .9rem; color: var(--muted); margin: 0 0 22px; font-family: var(--font-display); min-height: 1.2em; }

.brand-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.bcard { animation: cardIn .5s var(--ease) both; animation-delay: calc(var(--i,0) * .03s); }
@keyframes cardIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.bcard-inner { height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.bcard-inner::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.bcard:hover .bcard-inner { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.bcard:hover .bcard-inner::before { transform: scaleX(1); }
.bcard-top { display: flex; align-items: center; gap: 12px; }
.bmark { position: relative; width: 48px; height: 48px; border-radius: 12px; overflow: hidden; flex: none;
  background: #fff; border: 1px solid var(--line); display: grid; place-items: center; }
.bmark img { width: 30px; height: 30px; object-fit: contain; }
.bmark em { display: none; font-style: normal; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; letter-spacing: .02em; }
.bmark.noimg { background: var(--bc, var(--ink)); border-color: transparent; }
.bmark.noimg em { display: block; }
.bname { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; }
.bdesc { font-size: .9rem; color: var(--muted); flex: 1; }
.btags { display: flex; flex-wrap: wrap; gap: 6px; }
.bt { font-size: .72rem; font-weight: 500; padding: 4px 9px; border-radius: 999px; background: var(--bg-soft-2); color: var(--graphite); }
.bcard-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 2px; font-family: var(--font-display);
  font-weight: 600; font-size: .85rem; color: var(--ink); align-self: flex-start; }
.bcard-cta svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.bcard-cta:hover svg { transform: translateX(4px); }
.explorer-empty { text-align: center; padding: 50px 20px; color: var(--muted); font-family: var(--font-display); }

/* ==========================================================================
   Smart assistant (chatbot) widget
   ========================================================================== */
.bot { position: fixed; right: 22px; bottom: 22px; z-index: 240; }
.bot-fab { position: relative; width: 62px; height: 62px; border-radius: 50%; background: var(--yellow); color: var(--ink);
  display: grid; place-items: center; box-shadow: 0 14px 32px rgba(253,222,0,.5); transition: transform .3s var(--ease), opacity .3s; }
.bot-fab svg { width: 28px; height: 28px; }
.bot-fab:hover { transform: translateY(-3px) scale(1.05); }
.bot-fab-dot { position: absolute; top: 9px; right: 10px; width: 11px; height: 11px; border-radius: 50%; background: #1ec96b; border: 2px solid var(--yellow); animation: botDot 2.2s ease-in-out infinite; }
@keyframes botDot { 0%,100% { box-shadow: 0 0 0 0 rgba(30,201,107,.55); } 50% { box-shadow: 0 0 0 7px rgba(30,201,107,0); } }
.bot.open .bot-fab { transform: scale(.85); opacity: 0; pointer-events: none; }

.bot-panel { position: absolute; right: 0; bottom: 0; width: 384px; max-width: calc(100vw - 36px);
  height: 580px; max-height: calc(100vh - 110px); background: #fff; border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(18px) scale(.95); transform-origin: bottom right; pointer-events: none; transition: .32s var(--ease); }
.bot.open .bot-panel { opacity: 1; transform: none; pointer-events: auto; }
.bot-head { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 15px; background: var(--ink); color: #fff; }
.bot-head-l { display: flex; align-items: center; gap: 11px; }
.bot-ava { width: 40px; height: 40px; border-radius: 11px; background: var(--yellow); color: var(--ink); display: grid; place-items: center; flex: none; }
.bot-ava svg { width: 22px; height: 22px; }
.bot-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.1; }
.bot-status { font-size: .73rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.bot-status .dot { width: 7px; height: 7px; border-radius: 50%; background: #1ec96b; }
.bot-close { width: 34px; height: 34px; border-radius: 9px; color: #fff; display: grid; place-items: center; transition: background .25s; }
.bot-close:hover { background: rgba(255,255,255,.14); }
.bot-close svg { width: 18px; height: 18px; }
.bot-body { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 18px 15px; display: flex; flex-direction: column; gap: 11px; background: var(--bg-soft); }
.msg { max-width: min(300px, 78vw); flex: 0 0 auto; }
.msg.is-bot { align-self: flex-start; }
.msg.is-me { align-self: flex-end; }
.msg-b { display: block; padding: 11px 14px; border-radius: 16px; font-size: .92rem; line-height: 1.5; box-shadow: var(--shadow-sm); overflow-wrap: anywhere; }
.msg.is-bot .msg-b { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 5px; color: var(--ink); }
.msg.is-me .msg-b { background: var(--ink); color: #fff; border-bottom-right-radius: 5px; }
.typing { display: flex; gap: 4px; align-items: center; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); animation: tp 1s infinite; }
.typing span:nth-child(2) { animation-delay: .15s; } .typing span:nth-child(3) { animation-delay: .3s; }
@keyframes tp { 0%,60%,100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
.bot-quick { flex: 0 0 auto; display: flex; flex-wrap: wrap; gap: 7px; padding: 10px 14px; border-top: 1px solid var(--line); background: #fff; }
.bot-quick:empty { display: none; }
.qchip { font-family: var(--font-display); font-weight: 500; font-size: .82rem; padding: 8px 13px; border-radius: 999px;
  background: var(--bg-soft-2); border: 1px solid var(--line); color: var(--ink); transition: .2s; }
.qchip:hover { background: var(--yellow); border-color: var(--yellow); transform: translateY(-1px); }
.bot-input { flex: 0 0 auto; display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); background: #fff; }
.bot-input input { flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 16px; font-family: inherit; font-size: .92rem; background: var(--bg-soft); }
.bot-input input:focus { outline: none; border-color: var(--yellow); background: #fff; box-shadow: var(--ring); }
.bot-input button { width: 44px; height: 44px; border-radius: 50%; background: var(--yellow); color: var(--ink); display: grid; place-items: center; flex: none; transition: transform .25s; }
.bot-input button:hover { transform: scale(1.06); }
.bot-input button svg { width: 19px; height: 19px; }

/* explorer + bot responsive */
@media (max-width: 1024px) { .brand-grid { grid-template-columns: repeat(3,1fr); } .sol-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 860px)  { .sol-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px)  { .brand-grid { grid-template-columns: repeat(2,1fr); } .explorer-search { max-width: none; flex-basis: 100%; order: -1; } }
@media (max-width: 520px)  {
  .brand-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bcard-inner { padding: 16px; }
  .bmark { width: 40px; height: 40px; }
  .sol-grid { grid-template-columns: 1fr; }
  .bot { right: 14px; bottom: 14px; }
  .bot-panel { width: calc(100vw - 28px); height: calc(100dvh - 124px); }
}
@media (prefers-reduced-motion: reduce) { .bcard, .bot-fab-dot, .typing span { animation: none !important; } }

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.wa-fab { position: fixed; left: 22px; bottom: 22px; z-index: 200; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s, opacity .3s, visibility .3s; }
.wa-fab svg { width: 33px; height: 33px; position: relative; z-index: 1; }
.wa-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 36px rgba(37,211,102,.6); }
/* hide the WhatsApp button while the chat panel is open so the two don't overlap */
.bot.open ~ .wa-fab { opacity: 0; visibility: hidden; transform: scale(.6); pointer-events: none; }
.wa-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.55);
  animation: waPulse 2.4s ease-out infinite; }
.wa-fab .wa-tip { position: absolute; left: 70px; white-space: nowrap; background: var(--ink); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem; padding: 8px 13px; border-radius: 10px;
  opacity: 0; transform: translateX(-6px); pointer-events: none; transition: .25s var(--ease); box-shadow: var(--shadow-sm); }
.wa-fab .wa-tip::before { content: ""; position: absolute; left: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--ink); border-radius: 2px; }
.wa-fab:hover .wa-tip { opacity: 1; transform: none; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (max-width: 520px) { .wa-fab { width: 52px; height: 52px; left: 14px; bottom: 14px; } .wa-fab svg { width: 30px; height: 30px; } .wa-fab .wa-tip { display: none; } }
@media (prefers-reduced-motion: reduce) { .wa-fab::after { animation: none; } }

/* ==========================================================================
   Brand watermark (inspired by the letterhead's faint centre mark)
   ========================================================================== */
.footer { position: relative; overflow: hidden; }
.footer::after { content: ""; position: absolute; right: -50px; bottom: -70px; width: 360px; height: 360px;
  background: url("../img/mark-white.png") no-repeat center / contain; opacity: .045; pointer-events: none; z-index: 0; }
.footer .container { position: relative; z-index: 1; }
@media (max-width: 520px) { .footer::after { width: 240px; height: 240px; right: -40px; bottom: -50px; } }

/* ==========================================================================
   Mobile redesign — tighter vertical rhythm + compact, aligned hero graphic
   ========================================================================== */
@media (max-width: 880px) {
  /* shorter page: trim section spacing */
  .section { padding: 52px 0; }
  .section--tight { padding: 38px 0; }
  .section-head { margin: 0 auto 30px; }
  .hero { padding: 116px 0 32px; }
  .hero .lead { margin: 16px 0 22px; }
  .grid { gap: 16px; }
  .card { padding: 24px; }
  .card .icn { width: 50px; height: 50px; margin-bottom: 14px; }
  .cta-band { padding: 34px 22px; }
  .footer { padding: 48px 0 26px; }
  .footer-top { gap: 26px; padding-bottom: 30px; }

  /* hero value-flow: compact + no overlap between side chips and the hub */
  .hero-visual { height: 300px; max-width: 430px; }
  .vflow { transform: none; }
  .vhub-glow { width: 190px; height: 190px; }
  .vhub-card { padding: 13px; }
  .vhub-mark { width: 38px; height: 38px; }
  .vhub-mark img { width: 38px; }
  .vhub-text { display: none; }      /* mobile hub = compact white-mark badge so side chips clear it */
  .vhub-tags { display: none; }      /* declutter on small screens */
  .vchip { font-size: .72rem; padding: 6px 10px; gap: 6px; }
  .vchip svg { width: 14px; height: 14px; }
  .vchip .d { width: 6px; height: 6px; }
  .vlabel { font-size: .56rem; letter-spacing: .12em; }
}
@media (max-width: 520px) {
  .section { padding: 44px 0; }
  .section--tight { padding: 32px 0; }
  .section-head { margin: 0 auto 26px; }
  .hero h1 { font-size: clamp(2.1rem, 8.6vw, 2.7rem); }
  .lead { font-size: 1rem; }
  .hero-visual { height: 278px; }
  .stat { padding: 22px 12px; }
}

/* ==========================================================================
   Compact mobile value-flow (Brands → Creta Core hub → Project)
   Hidden on web/iPad; shown only on phones (≤600px) in place of the diagram
   ========================================================================== */
.vflow-mini { display: none; align-items: flex-start; justify-content: center; gap: 4px; width: 100%; max-width: 340px; margin: 0 auto; }
.vm-node { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: none; width: 66px; text-align: center; }
.vm-ic { width: 44px; height: 44px; border-radius: 13px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); box-shadow: var(--shadow-sm); }
.vm-ic svg { width: 22px; height: 22px; }
.vm-hub { position: relative; width: 50px; height: 50px; border-radius: 15px; background: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow); }
.vm-hub img { width: 31px; height: auto; }
.vm-hub::after { content: ""; position: absolute; inset: -5px; border-radius: 19px; border: 1.5px solid var(--yellow); opacity: 0; animation: vmRing 3s ease-out infinite; }
.vm-label { font-family: var(--font-display); font-weight: 600; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); line-height: 1.25; }
.vm-label-hub { color: var(--ink); }
.vm-wire { position: relative; flex: 0 1 34px; height: 2px; margin-top: 22px; background: linear-gradient(90deg, var(--line), var(--yellow)); border-radius: 2px; }
.vm-pulse { position: absolute; top: 50%; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 8px var(--yellow); transform: translate(-50%,-50%); animation: vmFlow 2.1s linear infinite; }
.vm-pulse2 { animation-delay: 1.05s; }
@keyframes vmFlow { 0% { left: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes vmRing { 0% { transform: scale(.7); opacity: .55; } 100% { transform: scale(1.5); opacity: 0; } }

/* ==========================================================================
   Phone-only: kinetic-editorial redesign (web + iPad unchanged, >600px)
   Compact value-flow + scrolling brands + bold animated type
   ========================================================================== */
@media (max-width: 600px) {
  /* ---- hero shell ---- */
  .hero { padding: 100px 0 6px; }
  .hero-grid { gap: 0; }

  /* ---- compact value-flow: Brands → Creta Core hub → Project (no duplicate logo) ---- */
  .hero-visual { display: block; order: -1; height: auto; max-width: none; aspect-ratio: auto; margin: 6px 0 20px; }
  .vflow { display: none; }            /* hide the full desktop diagram on phones */
  .vflow-mini { display: flex; }       /* show the compact value-flow instead */

  /* ---- kinetic-editorial headline ---- */
  .hero h1 { font-size: clamp(2.45rem, 11.5vw, 3.3rem); letter-spacing: -.03em; line-height: 1.04; }
  .hero .lead { margin: 16px 0 24px; }
  .hero .highlight::after { transform-origin: left; animation: markerDraw .75s var(--ease) .5s both; }
  .hero .glow--y { animation: auroraDrift 9s ease-in-out infinite alternate; }

  /* ---- vertical rhythm ---- */
  .section { padding: 58px 0; }
  .section--tight { padding: 42px 0; }
  .section-head { margin: 0 auto 34px; }
  .grid { gap: 18px; }

  /* ---- scrolling brands: keep both kinetic rows on mobile ---- */
  .marquee.marquee--rev { display: block; }
  .brand-chip { font-size: 1rem; padding: 14px 24px; }
}

@keyframes coreRing { 0% { width: 70px; height: 70px; opacity: .5; } 100% { width: 200px; height: 200px; opacity: 0; } }
@keyframes markerDraw { from { transform: skewX(-12deg) scaleX(0); } to { transform: skewX(-12deg) scaleX(1); } }
@keyframes auroraDrift { 0% { transform: translate(0,0) scale(1); opacity: .45; } 100% { transform: translate(-26px,18px) scale(1.18); opacity: .7; } }

@media (prefers-reduced-motion: reduce) {
  .vm-hub::after, .vm-pulse { animation: none; opacity: 0; }
  .hero .glow--y { animation: none; }
  .hero .highlight::after { animation: none; transform: skewX(-12deg); }
}

/* ==========================================================================
   Skip link (accessibility)
   ========================================================================== */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--ink); color: #fff;
  padding: 11px 18px; border-radius: 0 0 12px 0; font-family: var(--font-display); font-weight: 600; }
.skip-link:focus { left: 0; box-shadow: var(--shadow); }
