/* ==========================================================================
   StartupZHub redesign 2026
   Dark navy + electric blue. One theme, locked.
   Radius rule: containers 16px, interactive elements pill. Applied everywhere.
   Glassmorphism = web approximation (backdrop-filter), not Apple Liquid Glass.
   ========================================================================== */

@font-face {
  font-family: "Outfit";
  src: url("/fonts/Outfit-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --bg: #070d1a;
  --bg-raised: #0b1528;
  --surface: #101d38;
  --surface-2: #14244a;
  --line: rgba(148, 178, 255, 0.14);
  --line-strong: rgba(148, 178, 255, 0.28);
  --text: #e9effc;
  --muted: #94a5c9;
  --accent: #2f7dff;
  --accent-soft: #6ea4ff;
  --accent-ink: #071022;
  --glow: rgba(47, 125, 255, 0.32);
  --radius: 16px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { max-width: 1240px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }

::selection { background: var(--accent); color: #fff; }

/* ------------------------------------------------------------------ type */
h1, h2, h3, h4 { font-weight: 640; letter-spacing: -0.02em; line-height: 1.08; text-wrap: balance; }

.display-xl { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 700; letter-spacing: -0.03em; }
.display-lg { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.display-md { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }

.lede { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 46ch; }

.accent-word { color: var(--accent-soft); }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  cursor: pointer;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #1e5fd6);
  color: #fff;
  box-shadow: 0 8px 28px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.25); }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(148, 178, 255, 0.06);
}
.btn-ghost:hover { background: rgba(148, 178, 255, 0.12); transform: translateY(-2px); }

.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ------------------------------------------------- header: glass approx */
.site-header {
  position: fixed; inset-inline: 0; top: 14px; z-index: 50;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  display: flex; align-items: center; gap: clamp(12px, 2.5vw, 36px);
  height: var(--nav-h);
  padding-inline: clamp(16px, 2.5vw, 28px);
  border-radius: 999px;
  isolation: isolate; overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(9, 17, 36, 0.55);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 16px 50px rgba(2, 8, 22, 0.55);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  max-width: calc(100vw - 32px);
}
@media (prefers-reduced-transparency: reduce) {
  .nav-pill { background: #0b1528; backdrop-filter: none; -webkit-backdrop-filter: none; }
}

.brand img { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: clamp(8px, 1.6vw, 22px); font-weight: 500; font-size: 0.98rem; }
.nav-links > li { position: relative; }
.nav-links a { padding: 8px 6px; color: var(--muted); transition: color 0.3s; border-radius: 999px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }

/* dropdown */
.has-menu > button {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; color: var(--muted);
  font: inherit; font-weight: 500; cursor: pointer; padding: 8px 6px;
  transition: color 0.3s;
}
.has-menu:hover > button, .has-menu:focus-within > button { color: var(--text); }
.has-menu .caret { transition: transform 0.3s var(--ease); font-size: 0.7em; }
.has-menu:hover .caret, .has-menu:focus-within .caret { transform: rotate(180deg); }

.menu {
  position: absolute; top: calc(100% + 18px); left: 50%;
  translate: -50% 8px;
  min-width: 240px; padding: 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(9, 17, 36, 0.82);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 24px 60px rgba(2, 8, 22, 0.6);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), translate 0.3s var(--ease), visibility 0.3s;
}
.has-menu:hover .menu, .has-menu:focus-within .menu { opacity: 1; visibility: visible; translate: -50% 0; }
.menu a {
  display: block; padding: 11px 14px; border-radius: 10px;
  color: var(--muted); font-size: 0.95rem;
}
.menu a:hover { background: rgba(110, 164, 255, 0.12); color: var(--text); }
.menu a span { display: block; font-size: 0.8rem; color: var(--muted); font-weight: 400; }

.nav-cta { margin-left: 4px; padding: 11px 22px; font-size: 0.95rem; }

/* mobile nav */
.nav-toggle {
  display: none; background: none; border: 0; color: var(--text);
  width: 42px; height: 42px; cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .nav-links, .site-header .nav-cta { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 40;
    padding: 112px 28px 40px;
    background: rgba(7, 13, 26, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex; flex-direction: column; gap: 4px;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  .mobile-menu a {
    font-size: 1.2rem; font-weight: 600; padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu .sub { font-size: 1rem; font-weight: 500; color: var(--muted); padding-left: 18px; }
  .mobile-menu .btn { margin-top: 20px; justify-content: center; flex: none; }
}
@media (min-width: 901px) { .mobile-menu { display: none; } }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(7, 13, 26, 0.92) 8%, rgba(7, 13, 26, 0.55) 52%, rgba(10, 24, 56, 0.35)),
    linear-gradient(to top, var(--bg) 0%, transparent 30%);
}
.hero-inner { width: 100%; padding-top: var(--nav-h); }
.hero-copy { max-width: 640px; }
.hero-copy .eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-soft);
  margin-bottom: 18px;
}
.hero-copy p { margin: 22px 0 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero .load-in { opacity: 0; translate: 0 26px; animation: rise 0.9s var(--ease) forwards; }
.hero .load-in:nth-child(2) { animation-delay: 0.12s; }
.hero .load-in:nth-child(3) { animation-delay: 0.24s; }
.hero .load-in:nth-child(4) { animation-delay: 0.36s; }
@keyframes rise { to { opacity: 1; translate: 0 0; } }

/* page hero (inner pages, image based) */
.page-hero {
  position: relative; min-height: 62dvh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(40px, 6vw, 72px);
  overflow: hidden;
}
.page-hero .bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-scrim { z-index: -1; }
.page-hero .kicker { color: var(--accent-soft); font-weight: 600; margin-bottom: 12px; }

/* -------------------------------------------------------------- sections */
section { padding-block: clamp(72px, 10vw, 128px); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head p { color: var(--muted); margin-top: 16px; max-width: 60ch; }

/* reveal on scroll — content visible by default; hides only when JS confirms
   it can reveal (html.js), so a blocked script never leaves a blank page */
.reveal { opacity: 1; translate: 0 0; }
html.js .reveal { opacity: 0; translate: 0 34px; transition: opacity 0.9s var(--ease), translate 0.9s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
html.js .reveal.in { opacity: 1; translate: 0 0; }

/* ------------------------------------------------------ services bento */
.bento {
  display: grid; gap: 18px;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
}
.bento-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.bento-card > img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.bento-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(6, 12, 26, 0.94) 12%, rgba(9, 20, 44, 0.35) 55%, rgba(9, 20, 44, 0.15));
  transition: background 0.5s var(--ease);
}
.bento-card:hover > img { transform: scale(1.06); }
.bento-card:hover::before {
  background: linear-gradient(to top, rgba(10, 30, 70, 0.95) 12%, rgba(20, 50, 110, 0.45) 60%, rgba(20, 50, 110, 0.2));
}
.bento-card .card-body { padding: 26px; width: 100%; }
.bento-card h3 { font-size: 1.45rem; margin-bottom: 6px; }
.bento-card .tag { color: var(--accent-soft); font-weight: 600; font-size: 0.9rem; }
.bento-card .go {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.35s, transform 0.35s var(--ease);
}
.bento-card:hover .go { background: var(--accent); transform: rotate(45deg); }

.b-lg { grid-column: span 7; grid-row: span 2; }
.b-md { grid-column: span 5; }
.b-sm { grid-column: span 5; }
.b-wide { grid-column: span 12; }
.b-half { grid-column: span 6; }
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .b-lg, .b-md, .b-sm, .b-wide, .b-half { grid-column: auto; grid-row: auto; }
}

/* ------------------------------------------------------------- marquee */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  padding-block: 22px; white-space: nowrap;
  background: var(--bg-raised);
}
.marquee-track { display: inline-flex; gap: 56px; animation: slide 30s linear infinite; will-change: transform; }
.marquee span { font-size: 1.15rem; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 56px; }
.marquee b { color: var(--accent-soft); font-weight: 600; }
@keyframes slide { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------- stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat {
  border-top: 1px solid var(--line-strong);
  padding-top: 26px;
}
.stat .num { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.03em; color: var(--accent-soft); }
.stat .label { color: var(--muted); margin-top: 4px; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- how it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px 24px 32px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.step::after {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; right: 14px; bottom: -18px;
  font-size: 5.4rem; font-weight: 700; letter-spacing: -0.04em;
  color: rgba(110, 164, 255, 0.1); line-height: 1;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--accent-soft); }
.step p { color: var(--muted); font-size: 0.97rem; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ split rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split .media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.split .media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split ul.checks { margin-top: 22px; display: grid; gap: 12px; }
.split ul.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.split ul.checks li::before {
  content: ""; flex: 0 0 auto; width: 20px; height: 20px; margin-top: 3px;
  border-radius: 999px;
  background:
    center / 12px no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>'),
    var(--accent);
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* -------------------------------------------------------- testimonials */
.quotes { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; align-items: stretch; }
.quote {
  padding: 30px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
}
.quote.featured { background: linear-gradient(150deg, var(--surface-2), var(--surface)); border-color: var(--line-strong); }
.quote blockquote { font-size: 1.05rem; line-height: 1.65; color: var(--text); }
.quote.featured blockquote { font-size: 1.2rem; }
.quote footer { margin-top: auto; color: var(--muted); font-size: 0.92rem; }
.quote footer b { color: var(--text); display: block; font-weight: 600; }
@media (max-width: 960px) { .quotes { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: 24px; padding: clamp(48px, 7vw, 88px); text-align: center; }
.cta-band .bg-video, .cta-band > img.bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(8, 18, 44, 0.82); }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--muted); max-width: 52ch; margin: 0 auto 32px; }
.cta-band .phone { display: block; margin-top: 22px; font-size: 1.3rem; font-weight: 600; color: var(--accent-soft); }

/* --------------------------------------------------------------- footer */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-raised); padding: clamp(48px, 6vw, 72px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.site-footer img.logo { height: 40px; width: auto; margin-bottom: 18px; }
.site-footer p, .site-footer li, .site-footer a { color: var(--muted); font-size: 0.96rem; }
.site-footer h4 { font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; font-weight: 600; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--accent-soft); }
.footer-base { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 0.88rem; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); transition: background 0.3s, transform 0.3s var(--ease);
}
.socials a:hover { background: var(--accent); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: var(--text); }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------- service pages */
.svc-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.svc-layout .aside { position: sticky; top: 110px; display: grid; gap: 18px; }
.aside-card {
  padding: 26px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
}
.aside-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.aside-card li { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; color: var(--muted); font-size: 0.95rem; }
.aside-card li + li { border-top: 1px solid var(--line); }
.aside-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.prose h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); margin-bottom: 16px; max-width: 68ch; }
.prose strong { color: var(--text); }
@media (max-width: 860px) { .svc-layout { grid-template-columns: 1fr; } .svc-layout .aside { position: static; } }

.deliver-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.deliver {
  padding: 22px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.deliver:hover { border-color: var(--accent); transform: translateY(-4px); }
.deliver h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--accent-soft); }
.deliver p { color: var(--muted); font-size: 0.94rem; }
@media (max-width: 620px) { .deliver-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ blog */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.post-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.post-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.post-card .body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card time { color: var(--accent-soft); font-size: 0.88rem; font-weight: 600; }
.post-card h3 { font-size: 1.35rem; }
.post-card p { color: var(--muted); font-size: 0.97rem; }
@media (max-width: 760px) { .post-grid { grid-template-columns: 1fr; } }

.article { max-width: 760px; margin-inline: auto; }
.article .meta { color: var(--accent-soft); font-weight: 600; margin-bottom: 14px; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 26px; }
.article .cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; border: 1px solid var(--line); }
.article p { color: var(--muted); margin-bottom: 18px; font-size: 1.05rem; }
.article p strong { color: var(--text); }
.article h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 44px 0 16px; color: var(--text);
}
.article h2:first-of-type { margin-top: 8px; }
/* the global reset sets `ul { list-style: none }`, so restore markers here */
.article ul, .article ol { margin: 0 0 18px 1.15em; color: var(--muted); font-size: 1.05rem; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li { margin-bottom: 10px; padding-left: 4px; }
.article li::marker { color: var(--accent-soft); }
.article li strong { color: var(--text); }
.article blockquote {
  margin: 28px 0; padding: 18px 24px;
  border-left: 3px solid var(--accent);
  background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0;
}
.article blockquote p { margin: 0; color: var(--text); }
.article .takeaway {
  margin: 40px 0 8px; padding: 24px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface);
}
.article .takeaway h2 { margin: 0 0 12px; font-size: 1.15rem; }
.article .takeaway p:last-child, .article .takeaway ul:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  margin-bottom: 16px;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.contact-card .ic {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 999px;
  display: grid; place-items: center; background: rgba(47, 125, 255, 0.15);
}
.contact-card .ic svg { width: 22px; height: 22px; stroke: var(--accent-soft); }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p, .contact-card a.line { color: var(--muted); font-size: 0.97rem; }
.contact-card a.line:hover { color: var(--accent-soft); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero .load-in { animation: none; opacity: 1; translate: 0 0; }
  html.js .reveal { opacity: 1; translate: 0 0; transition: none; }
  .marquee-track { animation: none; }
  .btn, .bento-card > img, .go, .post-card, .deliver, .contact-card { transition: none; }
}
