/* =============================================================
   Virtual Fix — styles.css
   Archetype: Bold Tech / Dark · mouse-reactive gradient
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
@property --mx { syntax: "<percentage>"; inherits: true; initial-value: 50%; }
@property --my { syntax: "<percentage>"; inherits: true; initial-value: 45%; }

:root {
  --bg:        #06070e;
  --bg-2:      #0b0d18;
  --card:      #10131f;
  --card-2:    #151a2b;
  --ink:       #f3f6fc;
  --ink-soft:  #c6cede;
  --mute:      #8a93a9;
  --accent:    #ff7a1a;   /* brand orange (Fix) */
  --accent-2:  #3d5afe;   /* brand royal blue (Virtual) */
  --grad-1:    #ff7a1a;   /* orange */
  --grad-2:    #3d5afe;   /* blue */
  --grad-3:    #5b8bff;   /* light blue */
  --grad-4:    #ff9d3f;   /* light orange */
  --line:      rgba(243,246,252,0.10);
  --line-2:    rgba(243,246,252,0.16);

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1200px;
  --radius: 18px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  color-scheme: dark;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.02; letter-spacing: -0.03em; font-family: var(--display); font-weight: 600; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #04121a; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.4rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--accent); color: #04121a;
  border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent);
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--accent); opacity: .7;
}
.eyebrow {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--mute);
}

.section { position: relative; padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head h2 {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  margin-top: 1rem; line-height: 1.03;
}
.section-head p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.06rem; max-width: 56ch; }

.grad-text {
  background: linear-gradient(100deg, #ff8a2b, #ffb057);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.5rem; border-radius: 100px;
  font-weight: 600; font-size: .96rem; letter-spacing: -0.01em;
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft),
              background .3s var(--ease-out), border-color .3s var(--ease-out);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(100deg, #ff7a1a, #ff9d3f);
  color: #04121a;
  box-shadow: 0 10px 30px -8px rgba(255,122,26,.5), inset 0 0 0 1px rgba(255,255,255,.15);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px -10px rgba(255,122,26,.6), inset 0 0 0 1px rgba(255,255,255,.25);
}
.btn-ghost {
  background: rgba(255,255,255,.02);
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--accent); background: rgba(255,122,26,.06); }
.btn-wa { background: linear-gradient(100deg, #25d366, #0fae4f); color: #04140a; box-shadow: 0 10px 30px -8px rgba(37,211,102,.5); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -10px rgba(37,211,102,.6); }
.btn-block { width: 100%; }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

/* =============================================================
   5. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  transition: background .4s var(--ease-out), backdrop-filter .4s var(--ease-out), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6,7,14,.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; }
.brand-mark { width: auto; height: 46px; flex: none; }
.brand span b { color: var(--accent); font-weight: 700; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link { position: relative; font-size: .95rem; color: var(--ink-soft); padding: .3rem 0; transition: color .3s; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--ink); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
.nav-actions { display: flex; align-items: center; gap: .8rem; }

.burger {
  width: 44px; height: 44px; display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; border-radius: 12px;
  border: 1px solid var(--line-2);
}
.burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s; }
.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg-2);
  display: grid; align-content: center; gap: .4rem; padding: 2rem;
  clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-soft);
}
.nav-open .nav-mobile { clip-path: inset(0); }
.nav-mobile a { font-family: var(--display); font-size: 2rem; font-weight: 600; padding: .5rem 0; color: var(--ink); }
.nav-mobile a small { display: block; font-family: var(--mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
.nav-mobile .btn { margin-top: 1.4rem; justify-self: start; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .burger { display: none; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 74px; overflow: clip;
}
.hero-gradient {
  position: absolute; inset: -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle 560px at var(--mx) var(--my), rgba(255,122,26,.30), transparent 55%),
    radial-gradient(circle 720px at calc(var(--mx) + 14%) calc(var(--my) - 12%), rgba(61,90,254,.28), transparent 55%),
    radial-gradient(circle 640px at calc(var(--mx) - 16%) calc(var(--my) + 16%), rgba(255,157,63,.18), transparent 55%),
    radial-gradient(circle 900px at 80% 10%, rgba(91,139,255,.16), transparent 60%);
  filter: blur(42px) saturate(140%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero-noise { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px; }
.hero-inner { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 980px) { .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 3rem; } }
.hero-figure { position: relative; display: none; justify-self: center; animation: heroFloat 6s var(--ease-soft) infinite; }
@media (min-width: 980px) { .hero-figure { display: block; } }
.hero-figure img { position: relative; z-index: 1; width: 100%; max-width: 360px; margin-inline: auto; filter: drop-shadow(0 30px 55px rgba(0,0,0,.5)); }
.hero-figure::before { content: ""; position: absolute; inset: -12% -10%; z-index: 0;
  background: radial-gradient(circle at 50% 45%, rgba(255,122,26,.20), rgba(61,90,254,.16) 45%, transparent 70%);
  filter: blur(40px); }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem; padding: .4rem .9rem;
  border-radius: 100px; border: 1px solid var(--line-2); background: rgba(255,255,255,.02);
  font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
}
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(255,122,26,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,122,26,.6);} 70%{ box-shadow: 0 0 0 10px rgba(255,122,26,0);} 100%{ box-shadow:0 0 0 0 rgba(255,122,26,0);} }
.hero h1 {
  font-size: clamp(2.8rem, 8.5vw, 6rem);
  line-height: 0.98; margin-top: 1.6rem; max-width: 15ch;
}
.hero h1 em { font-style: normal; }
.hero-sub { margin-top: 1.6rem; font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: var(--ink-soft); max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.6rem; }
.hero-meta li { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink-soft); font-size: .92rem; }
.hero-meta svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* =============================================================
   7. Marquee
   ============================================================= */
.marquee { overflow: hidden; position: relative; border-block: 1px solid var(--line); padding-block: 1.4rem; white-space: nowrap; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track { display: inline-flex; gap: 3rem; white-space: nowrap; will-change: transform; }
.marquee-track span { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--mute); letter-spacing: -.01em; }
.marquee-track span.dot { color: var(--accent); }

/* =============================================================
   8. Service cards
   ============================================================= */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cards.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 1.8rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line);
  transition: transform .5s var(--ease-soft), border-color .4s, box-shadow .5s var(--ease-soft);
}
.card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: radial-gradient(240px circle at var(--cx, 50%) var(--cy, 0%), rgba(255,122,26,.14), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.card:hover { border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(255,122,26,.16), rgba(61,90,254,.14));
  border: 1px solid var(--line-2); margin-bottom: 1.2rem;
}
.card-icon svg { width: 26px; height: 26px; color: var(--accent); }
.card h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.card p { color: var(--mute); font-size: .96rem; }
.card-tag { display: inline-block; margin-top: 1rem; font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }

/* =============================================================
   9. Steps
   ============================================================= */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.1rem; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: 2rem 1.6rem; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); }
.step-num { font-family: var(--mono); font-size: .8rem; color: var(--accent); letter-spacing: .2em; }
.step h3 { font-size: 1.24rem; margin: .9rem 0 .5rem; }
.step p { color: var(--mute); font-size: .96rem; }

/* =============================================================
   10. Split feature (on-site / remote)
   ============================================================= */
.split { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } }
.split-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--card); padding: 2.2rem;
  min-height: 320px; display: flex; flex-direction: column;
}
.split-card .glow { position: absolute; inset: auto -30% -40% -30%; height: 60%; filter: blur(60px); opacity: .5; pointer-events: none; }
.split-card.onsite .glow { background: radial-gradient(circle, rgba(255,122,26,.5), transparent 65%); }
.split-card.remote .glow { background: radial-gradient(circle, rgba(61,90,254,.5), transparent 65%); }
.split-card h3 { font-size: 1.7rem; margin: 1rem 0 .7rem; }
.split-card p { color: var(--ink-soft); }
.split-list { margin-top: auto; padding-top: 1.4rem; display: grid; gap: .7rem; }
.split-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-soft); font-size: .95rem; }
.split-list svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }

/* =============================================================
   11. YouTube
   ============================================================= */
.yt-wrap { display: grid; grid-template-columns: 1fr; gap: 2.4rem; align-items: center; }
@media (min-width: 960px) { .yt-wrap { grid-template-columns: .9fr 1.1fr; } }
.yt-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.yt-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--line); background: var(--card); }
.yt-card img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: opacity .4s, transform .6s var(--ease-soft); }
.yt-card:hover img { opacity: .8; transform: scale(1.06); }
.yt-card .play { position: absolute; inset: 0; display: grid; place-items: center; }
.yt-card .play svg { width: 46px; height: 46px; color: #fff; filter: drop-shadow(0 4px 12px rgba(0,0,0,.6)); transition: transform .4s var(--ease-bounce); }
.yt-card:hover .play svg { transform: scale(1.15); }
.yt-card .lbl { position: absolute; left: 10px; bottom: 10px; font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: rgba(0,0,0,.5); padding: 3px 8px; border-radius: 6px; }

/* =============================================================
   12. Reviews
   ============================================================= */
.reviews { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 860px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { padding: 1.8rem; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars svg { width: 18px; height: 18px; color: #ffc93c; }
.review p { color: var(--ink-soft); font-size: 1rem; }
.review .who { margin-top: 1.2rem; font-family: var(--mono); font-size: .78rem; letter-spacing: .06em; color: var(--mute); text-transform: uppercase; }

/* =============================================================
   13. CTA band
   ============================================================= */
.cta-band { position: relative; overflow: hidden; border-radius: 28px; padding: clamp(2.5rem, 6vw, 5rem); text-align: center; border: 1px solid var(--line-2); background: var(--bg-2); }
.cta-band .glow { position: absolute; inset: -40% -10% auto -10%; height: 120%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 30% 20%, rgba(255,122,26,.35), transparent 55%), radial-gradient(circle at 75% 80%, rgba(61,90,254,.32), transparent 55%);
  filter: blur(50px); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); }
.cta-band p { color: var(--ink-soft); margin: 1rem auto 2rem; max-width: 48ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =============================================================
   14. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.4rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer h4 { font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); margin-bottom: 1.1rem; }
.footer a { color: var(--ink-soft); transition: color .3s; }
.footer a:hover { color: var(--accent); }
.footer ul { display: grid; gap: .7rem; font-size: .95rem; }
.footer-brand p { color: var(--mute); margin: 1rem 0; max-width: 34ch; font-size: .95rem; }
.footer-contact { display: grid; gap: .6rem; font-size: .95rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: .6rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); color: var(--mute); font-size: .85rem; }
.socials { display: flex; gap: .7rem; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line-2); }
.socials a:hover { border-color: var(--accent); background: rgba(255,122,26,.06); }
.socials svg { width: 18px; height: 18px; }

/* =============================================================
   15. Page hero (inner pages)
   ============================================================= */
.page-hero { position: relative; padding-top: calc(74px + clamp(3rem, 7vw, 6rem)); padding-bottom: clamp(2rem, 5vw, 4rem); overflow: clip; }
.page-hero .hero-gradient { opacity: .8; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); margin-top: 1.2rem; max-width: 18ch; }
.page-hero p { margin-top: 1.2rem; color: var(--ink-soft); font-size: 1.1rem; max-width: 54ch; }

/* =============================================================
   16. Blog
   ============================================================= */
.post-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 720px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--card); transition: transform .5s var(--ease-soft), border-color .4s; }
.post-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.post-card .thumb { aspect-ratio: 16/9; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: transform .6s var(--ease-soft), opacity .4s; }
.post-card:hover .thumb img { transform: scale(1.06); opacity: 1; }
.post-card .body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card .meta { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.post-card h3 { font-size: 1.24rem; line-height: 1.15; margin-bottom: .6rem; }
.post-card p { color: var(--mute); font-size: .93rem; flex: 1; }
.post-card .read { margin-top: 1.2rem; font-size: .9rem; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: .4rem; }
.post-card:hover .read { color: var(--accent); }

/* Article */
.article { max-width: 760px; margin-inline: auto; }
.article .lede { font-size: 1.25rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 2rem; }
.article-body > * { margin-bottom: 1.3rem; }
.article-body h2 { font-size: 1.7rem; margin-top: 2.6rem; }
.article-body h3 { font-size: 1.3rem; margin-top: 1.8rem; }
.article-body p, .article-body li { color: var(--ink-soft); font-size: 1.06rem; line-height: 1.75; }
.article-body ul { display: grid; gap: .7rem; padding-left: 0; }
.article-body ul li { display: flex; gap: .7rem; }
.article-body ul li::before { content: "▸"; color: var(--accent); }
.article-body strong { color: var(--ink); }
.article-body .callout { background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--accent); padding: 1.4rem 1.6rem; border-radius: 12px; }
.article-feature { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: 2.4rem; aspect-ratio: 16/8; }
.article-feature img { width: 100%; height: 100%; object-fit: cover; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-family: var(--mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); margin-bottom: 1.4rem; }
.article-meta span { color: var(--accent); }

/* =============================================================
   16b. Weekly roundup / news items
   ============================================================= */
.news-cat { font-size: 1.5rem; margin: 2.8rem 0 1.2rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: .6rem; }
.news-cat:first-of-type { margin-top: 0; }
.news-list { display: grid; gap: 1.1rem; }
.news-item { padding: 1.4rem 1.6rem; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 12px; background: var(--bg-2); transition: border-color .3s, transform .4s var(--ease-soft); }
.news-item:hover { border-left-color: var(--accent); border-color: var(--line-2); transform: translateX(3px); }
.news-tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.news-item h3 { font-size: 1.16rem; line-height: 1.2; margin: .5rem 0; }
.news-item p { color: var(--ink-soft); font-size: 1rem; }
.news-src { display: inline-block; margin-top: .85rem; font-size: .85rem; font-weight: 600; color: var(--mute); }
.news-src:hover { color: var(--accent); }
.news-note { color: var(--mute); font-size: .82rem; font-style: italic; }

/* =============================================================
   17. FAQ
   ============================================================= */
.faq { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 1.4rem 0; font-family: var(--display); font-weight: 600; font-size: 1.12rem; }
.faq-q .ico { flex: none; width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--line-2); display: grid; place-items: center; transition: transform .4s var(--ease-out), background .3s, color .3s; color: var(--accent); }
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--accent); color: #04121a; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out); }
.faq-a p { color: var(--mute); padding-bottom: 1.4rem; font-size: 1rem; }

/* =============================================================
   18. Contact / form
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.4rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.contact-methods { display: grid; gap: 1rem; }
.contact-method { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem; border-radius: 14px; border: 1px solid var(--line); background: var(--bg-2); transition: border-color .3s, transform .4s var(--ease-soft); }
.contact-method:hover { border-color: var(--line-2); transform: translateY(-3px); }
.contact-method .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(150deg, rgba(255,122,26,.16), rgba(61,90,254,.14)); border: 1px solid var(--line-2); }
.contact-method .ic svg { width: 22px; height: 22px; color: var(--accent); }
.contact-method h4 { font-family: var(--display); font-size: 1.05rem; margin-bottom: .2rem; }
.contact-method p, .contact-method a { color: var(--mute); font-size: .95rem; }
.contact-method a:hover { color: var(--accent); }

.form { position: relative; padding: 2rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--card); }
.field { position: relative; margin-bottom: 1.1rem; }
.field label { display: block; font-size: .8rem; font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--mute); margin-bottom: .5rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .9rem 1rem; border-radius: 12px;
  background: var(--bg); border: 1px solid var(--line-2); color: var(--ink); font-family: inherit; font-size: .98rem;
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,122,26,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 539px) { .form-row { grid-template-columns: 1fr; } }
.cta-submit { position: relative; overflow: hidden; }
.cta-form-spinner, .cta-form-check { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.form.is-sending .cta-form-label { opacity: 0; }
.form.is-sending .cta-form-spinner { opacity: 1; }
.cta-form-spinner::after { content: ""; width: 18px; height: 18px; border: 2px solid rgba(4,18,26,.35); border-top-color: #04121a; border-radius: 50%; animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-success { display: none; text-align: center; padding: 1rem 0; }
.form.is-sent + .form-success, .form-success.show { display: block; }
.form-success .check { width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 50%; background: linear-gradient(120deg, var(--accent), var(--grad-3)); display: grid; place-items: center; }
.form-success .check svg { width: 30px; height: 30px; color: #04121a; }
.form-success h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.form-success p { color: var(--mute); }

/* =============================================================
   19. Reveal
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* =============================================================
   20. Splash
   ============================================================= */
.splash { position: fixed; inset: 0; z-index: 10000; background: var(--bg); display: grid; place-items: center;
  transition: opacity .8s var(--ease-out), clip-path 1s var(--ease-soft);
  animation: splashSafety .01s 4s forwards; }
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-mark { width: auto; height: 140px; animation: splashPulse 1.6s var(--ease-soft) infinite; filter: drop-shadow(0 16px 30px rgba(0,0,0,.5)); }
@keyframes splashPulse { 0%,100%{ transform: scale(1); opacity:.9;} 50%{ transform: scale(1.08); opacity:1;} }

/* =============================================================
   21. View transitions
   ============================================================= */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: .5s var(--ease-out) both vtOut; }
::view-transition-new(root) { animation: .5s var(--ease-out) both vtIn; }
@keyframes vtOut { to { opacity: 0; transform: translateY(-10px); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(10px); } }

/* =============================================================
   21b. Chat widget (Fixie)
   ============================================================= */
.vfchat-btn { position: fixed; right: 20px; bottom: 20px; z-index: 900; display: flex; align-items: center; gap: .55rem; padding: .6rem 1rem .6rem .6rem; border-radius: 100px; background: linear-gradient(100deg, #ff7a1a, #ff9d3f); color: #04121a; font-weight: 700; box-shadow: 0 12px 30px -8px rgba(255,122,26,.55); cursor: pointer; transition: transform .3s var(--ease-out); }
.vfchat-btn:hover { transform: translateY(-3px); }
.vfchat-btn img { width: 36px; height: 36px; border-radius: 50%; background: #0b0d18; }
.vfchat-btn .lbl { font-size: .9rem; }
@media (max-width: 520px) { .vfchat-btn .lbl { display: none; } }
.vfchat-btn.is-hidden { display: none; }
.vfchat-btn .badge { position: absolute; top: -3px; right: -3px; width: 14px; height: 14px; border-radius: 50%; background: #2ee6a8; border: 2px solid var(--bg); }

.vfchat { position: fixed; right: 20px; bottom: 20px; z-index: 950; width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100dvh - 40px)); display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px -20px rgba(0,0,0,.85); transform: translateY(20px) scale(.98); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease-out), transform .25s var(--ease-out); }
.vfchat.is-open { opacity: 1; transform: none; pointer-events: auto; }
.vfchat-head { display: flex; align-items: center; gap: .7rem; padding: .85rem 1rem; background: linear-gradient(100deg, rgba(255,122,26,.16), rgba(61,90,254,.14)); border-bottom: 1px solid var(--line); }
.vfchat-head img { width: 40px; height: 40px; border-radius: 50%; background: #0b0d18; }
.vfchat-head h4 { font-family: var(--display); font-size: 1rem; line-height: 1.1; }
.vfchat-head p { font-size: .72rem; color: var(--mute); }
.vfchat-head .dot { width: 8px; height: 8px; border-radius: 50%; background: #2ee6a8; display: inline-block; margin-right: 4px; }
.vfchat-close { margin-left: auto; width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; color: var(--ink-soft); font-size: 1.2rem; }
.vfchat-close:hover { background: rgba(255,255,255,.06); }
.vfchat-body { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .55rem; }
.vfmsg { max-width: 84%; padding: .7rem .9rem; border-radius: 14px; font-size: .92rem; line-height: 1.5; animation: vfin .25s var(--ease-out); }
@keyframes vfin { from { opacity: 0; transform: translateY(6px); } }
.vfmsg.bot { align-self: flex-start; background: var(--card); border: 1px solid var(--line); border-bottom-left-radius: 4px; color: var(--ink-soft); }
.vfmsg.user { align-self: flex-end; background: linear-gradient(100deg, #ff7a1a, #ff9d3f); color: #04121a; font-weight: 500; border-bottom-right-radius: 4px; }
.vfmsg b { color: var(--ink); }
.vfmsg.user b { color: #04121a; }
.vfmsg a { color: var(--accent); font-weight: 600; }
.vfchips { display: flex; flex-wrap: wrap; gap: .5rem; padding: .2rem 1rem 0; }
.vfchip { padding: .55rem .85rem; border-radius: 100px; border: 1px solid var(--line-2); background: rgba(255,255,255,.02); color: var(--ink); font-size: .85rem; cursor: pointer; transition: border-color .2s, background .2s; text-align: left; }
.vfchip:hover { border-color: var(--accent); background: rgba(255,122,26,.08); }
.vfchip.wa { background: linear-gradient(100deg, #25d366, #0fae4f); color: #04140a; border: 0; font-weight: 600; }
.vfchat-foot { padding: .7rem 1rem 1rem; border-top: 1px solid var(--line); display: flex; gap: .5rem; }
.vfchat-foot input { flex: 1; padding: .7rem .9rem; border-radius: 100px; background: var(--bg); border: 1px solid var(--line-2); color: var(--ink); font: inherit; font-size: .9rem; }
.vfchat-foot input:focus { outline: none; border-color: var(--accent); }
.vfchat-foot button { width: 42px; height: 42px; flex: none; border-radius: 50%; background: linear-gradient(100deg, #ff7a1a, #ff9d3f); color: #04121a; display: grid; place-items: center; }
.vfchat-foot.is-hidden { display: none; }
.vftyping { align-self: flex-start; display: inline-flex; gap: 4px; padding: .8rem .9rem; background: var(--card); border: 1px solid var(--line); border-radius: 14px; border-bottom-left-radius: 4px; }
.vftyping span { width: 6px; height: 6px; border-radius: 50%; background: var(--mute); animation: vfblink 1.2s infinite; }
.vftyping span:nth-child(2) { animation-delay: .2s; }
.vftyping span:nth-child(3) { animation-delay: .4s; }
@keyframes vfblink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }

/* =============================================================
   22. Reduced motion (only intrusive)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-badge .pulse { animation: none; }
  .splash-mark { animation: none; }
  .marquee-track { animation: none !important; }
}
