/* ============================================================
   Marketix — AI-native marketing agency
   Flat, Stripe-inspired design system + theme tokens
   ============================================================ */

/* ---------- Theme tokens ---------- */
:root {
  /* Type */
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Hairline + radius */
  --hair: 0.5px;
  --radius-btn: 8px;
  --radius-card: 12px;
  --radius-lg: 16px;

  /* Layout */
  --maxw: 1100px;

  /* Light theme (default) */
  --bg:            #ffffff;
  --bg-soft:       #f6f9fc;
  --surface:       #ffffff;
  --surface-2:     #f6f9fc;

  --border:        #e4e9f0;
  --border-strong: #d4dbe5;

  --text:          #0a2540;
  --text-soft:     #425466;
  --text-dim:      #8792a2;

  --accent:        #635bff;
  --accent-fg:     #ffffff;
  --accent-soft:   #635bff14;

  --ok:            #1a7f5a;
  --ok-soft:       #1a7f5a14;

  --btn-bg:        #0a2540;
  --btn-fg:        #ffffff;
  --btn-bg-hover:  #16314f;
}

/* Light mode only — dark theme and system-preference switching removed. */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .2s ease, color .2s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section.tight { padding: 64px 0; }
.section.alt { background: var(--bg-soft); border-top: var(--hair) solid var(--border); border-bottom: var(--hair) solid var(--border); }
.center { text-align: center; }
.grad-text { color: var(--accent); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.6rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.lead { font-size: 1.125rem; line-height: 1.6; color: var(--text-soft); max-width: 560px; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head .lead { margin: 16px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  padding: 11px 18px; border-radius: var(--radius-btn);
  border: 1px solid transparent; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--btn-bg); color: var(--btn-fg); }
.btn-primary:hover { background: var(--btn-bg-hover); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--border-strong); }
.btn-link { background: transparent; color: var(--accent); padding-left: 4px; padding-right: 4px; }
.btn-link:hover { color: var(--accent); opacity: .8; }
.btn-lg { padding: 13px 22px; font-size: 16px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: var(--hair) solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; }
.brand-logo { height: 26px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 15px; color: var(--text-soft); font-weight: 500;
  padding: 8px 13px; border-radius: 7px; transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg-soft); }
.nav-cta { display: flex; align-items: center; gap: 8px; }

.nav-toggle { display: none; background: none; border: 1px solid var(--border-strong); border-radius: var(--radius-btn); width: 40px; height: 38px; cursor: pointer; color: var(--text); }
.nav-toggle span { display: block; width: 17px; height: 1.5px; background: currentColor; margin: 3px auto; border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-bottom: 64px; }
.hero h1 { margin: 20px 0 18px; max-width: 14ch; }
.hero .lead { max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 14px; color: var(--text-dim); font-size: 14px; flex-wrap: wrap; }
.hero-trust strong { color: var(--text); font-weight: 600; }

/* Hero stats band — thin top border, 3 evenly spaced stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: var(--hair) solid var(--border);
  padding: 36px 0 8px;
}
.hero-stats .stat { padding: 0 8px; }
.hero-stats .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: -0.01em; }
.hero-stats .lbl { font-family: var(--font-body); color: var(--text-soft); font-size: 14px; margin-top: 4px; }

/* Hero visual — flat dashboard card */
.orb-card {
  border: var(--hair) solid var(--border); border-radius: var(--radius-card);
  background: var(--surface); padding: 20px;
}
.orb-card .bar { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.orb-card .bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.flow { display: grid; gap: 10px; }
.flow-node {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px; border-radius: 10px;
  border: var(--hair) solid var(--border); background: var(--surface-2);
  font-size: 14px;
}
.flow-node .ic {
  width: 32px; height: 32px; flex: none; border-radius: 8px;
  display: grid; place-items: center; font-size: 0.95rem;
  background: var(--accent-soft); color: var(--accent);
}
.flow-node .meta { display: flex; flex-direction: column; min-width: 0; }
.flow-node .meta b { font-weight: 600; }
.flow-node .meta span { font-size: 12.5px; color: var(--text-dim); }
.flow-node .status { margin-left: auto; font-size: 11.5px; padding: 3px 9px; border-radius: 999px; font-weight: 600; flex: none; }
.status.live { background: var(--ok-soft); color: var(--ok); }
.status.run { background: var(--accent-soft); color: var(--accent); }
.flow .connector { height: 12px; width: 1px; background: var(--border-strong); margin-left: 30px; }

/* ---------- Logo strip ---------- */
.logos { padding: 36px 0; border-top: var(--hair) solid var(--border); border-bottom: var(--hair) solid var(--border); background: var(--bg-soft); }
.logos p { text-align: center; color: var(--text-dim); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 44px; align-items: center; }
.logo-row span { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--text-dim); letter-spacing: -0.01em; }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 20px; }
.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 {
  border: var(--hair) solid var(--border); border-radius: var(--radius-card);
  background: var(--surface); padding: 26px;
  transition: border-color .15s ease, background .15s ease;
}
.card:hover { border-color: var(--border-strong); }
.card .ic-box {
  width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center;
  font-size: 1.25rem; margin-bottom: 16px;
  background: var(--surface-2); border: var(--hair) solid var(--border);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: 15px; }
.card .tag-row { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  font-size: 12.5px; font-weight: 500; color: var(--text-soft);
  padding: 4px 10px; border-radius: 999px; border: var(--hair) solid var(--border); background: var(--surface-2);
}
.card.accent { position: relative; }

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 14px; }
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -0.01em; color: var(--text); }
.stat .num.grad-text { color: var(--accent); }
.stat .lbl { color: var(--text-soft); font-size: 14px; margin-top: 4px; }

/* ---------- Framework / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 24px; border: var(--hair) solid var(--border); border-radius: var(--radius-card); background: var(--surface); }
.step .n { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--accent); margin-bottom: 14px; display: block; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 14.5px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: -1; }
.feature-list { list-style: none; margin-top: 24px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-soft); font-size: 15px; }
.feature-list .ck {
  width: 22px; height: 22px; flex: none; border-radius: 6px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); font-size: 0.72rem; margin-top: 1px; font-weight: 700;
}
.feature-list b { color: var(--text); font-weight: 600; }
.media-card {
  border: var(--hair) solid var(--border); border-radius: var(--radius-card); padding: 22px;
  background: var(--surface);
}

/* ---------- Pricing ---------- */
.toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 auto 44px; }
.toggle-wrap span { color: var(--text-soft); font-size: 15px; font-weight: 500; }
.toggle-wrap .save { font-size: 12px; color: var(--accent); background: var(--accent-soft); padding: 3px 9px; border-radius: 999px; font-weight: 600; }
.switch { position: relative; width: 46px; height: 26px; background: var(--surface-2); border: var(--hair) solid var(--border-strong); border-radius: 999px; cursor: pointer; transition: background .15s; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); transition: transform .15s; }
.switch.on::after { transform: translateX(20px); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  border: var(--hair) solid var(--border); border-radius: var(--radius-card); padding: 30px 26px;
  background: var(--surface); display: flex; flex-direction: column;
}
.price-card.featured { border: 1px solid var(--accent); }
.price-card.featured .badge {
  align-self: flex-start; margin-bottom: 14px;
  background: var(--accent); color: var(--accent-fg); font-size: 12px; font-weight: 600;
  padding: 4px 11px; border-radius: 999px; letter-spacing: .02em;
}
.price-card .plan { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.price-card .desc { color: var(--text-soft); font-size: 14.5px; margin: 6px 0 22px; min-height: 42px; }
.price-card .amount { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
.price-card .amount small { font-size: 0.95rem; font-weight: 500; color: var(--text-dim); letter-spacing: 0; }
.price-card .term { color: var(--text-dim); font-size: 13.5px; margin-top: 2px; }
.price-card .btn { margin: 22px 0; width: 100%; }
.price-card ul { list-style: none; display: grid; gap: 11px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-soft); font-size: 14.5px; }
.price-card li .ck { color: var(--accent); flex: none; font-weight: 700; }

/* ---------- Resources ---------- */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.res-card { border: var(--hair) solid var(--border); border-radius: var(--radius-card); overflow: hidden; background: var(--surface); transition: border-color .15s; display: flex; flex-direction: column; }
.res-card:hover { border-color: var(--border-strong); }
.res-thumb { aspect-ratio: 16/9; display: grid; place-items: center; font-size: 1.9rem; background: var(--bg-soft); border-bottom: var(--hair) solid var(--border); color: var(--accent); }
.res-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.res-body .kind { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); }
.res-body h3 { font-size: 1.05rem; margin: 9px 0; }
.res-body p { color: var(--text-soft); font-size: 14.5px; flex: 1; }
.res-body .more { margin-top: 16px; font-weight: 500; font-size: 14.5px; color: var(--accent); display: inline-flex; gap: 5px; transition: gap .15s; }
.res-card:hover .more { gap: 9px; }

.res-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 44px; }
.res-tab { padding: 8px 16px; border-radius: 999px; border: var(--hair) solid var(--border-strong); background: transparent; color: var(--text-soft); font-family: var(--font-body); font-size: 14.5px; font-weight: 500; cursor: pointer; transition: .15s; }
.res-tab:hover { color: var(--text); background: var(--bg-soft); }
.res-tab.active { background: var(--btn-bg); color: var(--btn-fg); border-color: var(--btn-bg); }

/* ---------- Segmented control (solutions) ---------- */
.seg { display: inline-flex; padding: 4px; gap: 4px; border: var(--hair) solid var(--border); border-radius: 10px; background: var(--surface-2); margin: 0 auto 44px; }
.seg button { padding: 9px 18px; border: none; background: none; color: var(--text-soft); font-family: var(--font-body); font-weight: 500; font-size: 14.5px; border-radius: 7px; cursor: pointer; transition: .15s; }
.seg button.active { background: var(--btn-bg); color: var(--btn-fg); }
.seg-panel { display: none; }
.seg-panel.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Inputs ---------- */
.input {
  padding: 12px 16px; border-radius: var(--radius-btn);
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--text);
  font-family: var(--font-body); font-size: 15px;
}
.input::placeholder { color: var(--text-dim); }
.input:focus { outline: none; border-color: var(--accent); }

/* ---------- CTA band ---------- */
.cta-band {
  border: var(--hair) solid var(--border); border-radius: var(--radius-lg); padding: 60px 48px; text-align: center;
  background: var(--bg-soft);
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band .eyebrow { margin-bottom: 16px; }
.cta-band .lead { margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 740px; margin: 0 auto; display: grid; gap: 10px; }
.faq details { border: var(--hair) solid var(--border); border-radius: 10px; background: var(--surface); padding: 2px 22px; }
.faq details[open] { border-color: var(--border-strong); }
.faq summary { cursor: pointer; padding: 18px 0; font-weight: 600; font-family: var(--font-display); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--text-dim); transition: transform .2s; font-family: var(--font-body); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--text-soft); padding: 0 0 20px; font-size: 15px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 80px 0 36px; text-align: center; }
.page-hero h1 { margin: 18px auto 16px; max-width: 16ch; }
.page-hero .lead { margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer { border-top: var(--hair) solid var(--border); padding: 60px 0 32px; margin-top: 40px; background: var(--bg-soft); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer-brand p { color: var(--text-soft); font-size: 14.5px; margin: 14px 0 0; max-width: 30ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-dim); margin-bottom: 14px; font-weight: 600; }
.footer-col a { display: block; color: var(--text-soft); font-size: 14.5px; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 24px; border-top: var(--hair) solid var(--border); color: var(--text-dim); font-size: 14px; flex-wrap: wrap; gap: 14px; }
.footer-bottom .socials { display: flex; gap: 8px; }
.footer-bottom .socials a { width: 32px; height: 32px; border-radius: var(--radius-btn); border: var(--hair) solid var(--border-strong); display: grid; place-items: center; }
.footer-bottom .socials a:hover { background: var(--surface); }

/* ---------- Blog / Article ---------- */
.article { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.article-head { padding: 64px 0 0; }
.article-head h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin: 16px 0 0; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 18px; color: var(--text-dim); font-size: 14px; }
.article-meta .author { color: var(--text); font-weight: 500; }
.article-meta .sep { color: var(--border-strong); }
.article-meta .tag { color: var(--accent); font-family: var(--font-body); font-weight: 600; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; }

.prose { margin-top: 8px; }
.prose > p:first-of-type { font-size: 1.18rem; color: var(--text); }
.prose p { color: var(--text-soft); font-size: 1.0625rem; line-height: 1.75; margin: 0 0 22px; }
.prose h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 40px 0 14px; }
.prose h3 { font-family: var(--font-display); font-size: 1.2rem; margin: 30px 0 10px; }
.prose ul, .prose ol { margin: 0 0 22px 1.2em; color: var(--text-soft); display: grid; gap: 9px; font-size: 1.0625rem; line-height: 1.7; }
.prose li { padding-left: 4px; }
.prose blockquote { margin: 28px 0; padding: 4px 0 4px 22px; border-left: 2px solid var(--accent); color: var(--text); font-size: 1.18rem; font-family: var(--font-display); font-weight: 500; line-height: 1.5; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose hr { border: none; border-top: var(--hair) solid var(--border); margin: 40px 0; }
.prose strong { color: var(--text); font-weight: 600; }
.prose .takeaway { border: var(--hair) solid var(--border); background: var(--bg-soft); border-radius: var(--radius-card); padding: 22px 24px; margin: 28px 0; }
.prose .takeaway p { margin: 0; }
.prose .takeaway p + p { margin-top: 10px; }

.post-back { display: inline-flex; align-items: center; gap: 6px; color: var(--text-soft); font-size: 14.5px; font-weight: 500; }
.post-back:hover { color: var(--text); }
.post-foot { max-width: 720px; margin: 48px auto 0; padding: 0 24px; }

.blog-meta-row { display: flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: 13px; margin-top: 12px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .split, .split.reverse .split-media { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .res-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 660px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0;
    background: var(--bg); padding: 14px 24px 22px; gap: 2px;
    border-bottom: var(--hair) solid var(--border); align-items: stretch;
  }
  .site-header.open .nav-links a { padding: 12px 13px; }
  .hero-stats { grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .grid-2, .grid-3, .grid-4, .res-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-band { padding: 44px 24px; }
  .seg { width: 100%; overflow-x: auto; }
}

/* ---------- Page extras: forms, team, contact ---------- */
.form-card { border: var(--hair) solid var(--border); border-radius: var(--radius-card); background: var(--surface); padding: 28px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 14px; font-weight: 500; color: var(--text); }
.field .input, .field textarea.input { width: 100%; }
textarea.input { resize: vertical; min-height: 150px; line-height: 1.6; }
.form-note { color: var(--text-dim); font-size: 13px; margin-top: 6px; }

.contact-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 40px; align-items: start; }
.contact-detail { margin-bottom: 22px; }
.contact-detail .lbl { font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 5px; }
.contact-detail a, .contact-detail p { color: var(--text-soft); font-size: 15px; }
.contact-detail a:hover { color: var(--accent); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { border: var(--hair) solid var(--border); border-radius: var(--radius-card); background: var(--surface); padding: 26px; text-align: center; }
.avatar { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.4rem; color: var(--accent); background: var(--accent-soft); border: var(--hair) solid var(--border); }
.team-card h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent); font-size: 14px; font-weight: 500; }
.team-card p { color: var(--text-soft); font-size: 14px; margin-top: 10px; }

.empty-state { border: var(--hair) solid var(--border); border-radius: var(--radius-card); background: var(--bg-soft); padding: 44px; text-align: center; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--text-soft); max-width: 460px; margin: 0 auto; }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------- Lucide icons ---------- */
.ic-box { color: var(--accent); }
.ic-box svg { width: 22px; height: 22px; }
.flow-node .ic svg { width: 17px; height: 17px; display: block; }
.res-thumb svg { width: 30px; height: 30px; }
[data-lucide] { display: inline-flex; }
.socials a svg { width: 16px; height: 16px; }
