/* ==========================================================================
   Blacksoff — Design System
   Display: Sora | Body: Inter | Code/Data: JetBrains Mono
   ========================================================================== */

:root{
  --ink:#0A0A12;
  --ink-2:#13131F;
  --bg:#F6F6FA;
  --card:#FFFFFF;
  --violet:#7C5CFF;
  --violet-dark:#5B3FE0;
  --violet-soft:#EFEAFF;
  --mint:#00D2B8;
  --mint-soft:#DFFBF5;
  --amber:#FFB020;
  --text:#0A0A12;
  --text-mute:#5C5F72;
  --line:#E6E6EF;
  --line-dark:#26263A;
  --radius-lg:22px;
  --radius-md:14px;
  --radius-sm:8px;
  --shadow: 0 20px 50px -18px rgba(10,10,18,0.18);
  --shadow-sm: 0 10px 24px -14px rgba(10,10,18,0.16);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:'Sora',sans-serif; margin:0; line-height:1.08; letter-spacing:-0.01em; }
p{ margin:0; }
.mono{ font-family:'JetBrains Mono',monospace; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

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

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.section{ padding:104px 0; }
.section--tight{ padding:72px 0; }
@media (max-width:768px){
  .section{ padding:64px 0; }
  .section--tight{ padding:48px 0; }
}

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'JetBrains Mono',monospace; font-size:12.5px; letter-spacing:.04em;
  color:var(--violet); background:var(--violet-soft); border-radius:999px; padding:7px 14px;
  font-weight:600;
}
.eyebrow--dark{ background:rgba(255,255,255,0.08); color:#C9BEFF; }

.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{ font-size:clamp(28px,3.6vw,42px); margin-top:14px; }
.section-head p{ margin-top:16px; font-size:17px; color:var(--text-mute); line-height:1.6; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 26px; border-radius:999px; font-weight:600; font-size:15px;
  border:1px solid transparent; transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--violet); color:#fff; box-shadow:0 14px 30px -12px rgba(124,92,255,.55); }
.btn-primary:hover{ background:var(--violet-dark); box-shadow:0 18px 34px -12px rgba(124,92,255,.65); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--ink); transform:translateY(-2px); }
.btn-ghost-dark{ background:transparent; color:#fff; border-color:rgba(255,255,255,.28); }
.btn-ghost-dark:hover{ border-color:#fff; transform:translateY(-2px); }
.btn-white{ background:#fff; color:var(--violet-dark); box-shadow:0 14px 30px -12px rgba(0,0,0,.35); }
.btn-white:hover{ transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn-sm{ padding:11px 18px; font-size:14px; }

/* ---------- Nav ---------- */
.nav{
  position:sticky; top:0; z-index:100;
  background:rgba(246,246,250,0.82); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav__inner{ display:flex; align-items:center; justify-content:space-between; padding:16px 24px; max-width:var(--container); margin:0 auto; }
.brand{ display:flex; align-items:center; gap:10px; font-family:'Sora',sans-serif; font-weight:700; font-size:19px; }
.brand__mark{ width:34px; height:34px; border-radius:9px; background:linear-gradient(145deg,var(--violet),#A390FF); display:flex; align-items:center; justify-content:center; box-shadow:0 8px 16px -6px rgba(124,92,255,.55); }
.brand__mark svg{ width:18px; height:18px; }
.nav__links{ display:flex; align-items:center; gap:34px; }
.nav__links a{ font-size:14.5px; font-weight:500; color:var(--text); position:relative; padding:4px 0; }
.nav__links a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--violet); transition:width .25s ease; }
.nav__links a:hover::after{ width:100%; }
.nav__cta{ display:flex; align-items:center; gap:14px; }
.nav__email{ font-family:'JetBrains Mono',monospace; font-size:13px; color:var(--text-mute); display:flex; align-items:center; gap:6px; }
.nav__toggle{ display:none; background:none; border:none; padding:6px; }
.nav__toggle span{ display:block; width:22px; height:2px; background:var(--ink); margin:5px 0; border-radius:2px; transition:.25s; }

@media (max-width:960px){
  .nav__links{ position:fixed; top:0; right:0; height:100vh; width:min(320px,85vw); background:#fff; flex-direction:column; align-items:flex-start; padding:100px 30px 30px; gap:24px; box-shadow:-20px 0 40px rgba(0,0,0,.1); transform:translateX(100%); transition:transform .35s ease; }
  .nav__links.open{ transform:translateX(0); }
  .nav__email{ display:none; }
  .nav__toggle{ display:block; z-index:110; }
  .nav__toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2){ opacity:0; }
  .nav__toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero{ position:relative; padding:76px 0 40px; overflow:hidden; }
.hero__glow{ position:absolute; top:-180px; right:-180px; width:560px; height:560px; background:radial-gradient(circle,rgba(124,92,255,.22),transparent 65%); filter:blur(10px); z-index:0; }
.hero__grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center; position:relative; z-index:1; }
.hero h1{ font-size:clamp(34px,4.6vw,58px); }
.hero h1 em{ font-style:normal; color:var(--violet); }
.hero p.lead{ margin-top:22px; font-size:18px; color:var(--text-mute); max-width:520px; line-height:1.65; }
.hero__actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.hero__trust{ display:flex; align-items:center; gap:22px; margin-top:44px; flex-wrap:wrap; }
.hero__stars{ display:flex; align-items:center; gap:8px; font-size:14px; color:var(--text-mute); }
.hero__stars .stars{ color:var(--amber); letter-spacing:2px; }
.hero__avatars{ display:flex; align-items:center; }
.hero__avatars span{ width:32px; height:32px; border-radius:50%; border:2px solid var(--bg); margin-left:-10px; background:linear-gradient(145deg,#CFC3FF,var(--violet)); }
.hero__avatars span:first-child{ margin-left:0; }

@media (max-width:960px){ .hero__grid{ grid-template-columns:1fr; } }

/* ---- Browser / code mockup (signature element) ---- */
.devcard{ background:var(--ink); border-radius:26px; padding:0; box-shadow:var(--shadow); overflow:hidden; }
.devcard__bar{ display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.05); padding:14px 18px; }
.devcard__bar .dot{ width:10px; height:10px; border-radius:50%; }
.devcard__bar .dot.r{ background:#FF5F57; } .devcard__bar .dot.y{ background:#FEBC2E; } .devcard__bar .dot.g{ background:#28C840; }
.devcard__bar .url{ margin-left:14px; font-family:'JetBrains Mono',monospace; font-size:11.5px; color:#8B8DA8; background:rgba(255,255,255,.06); padding:5px 12px; border-radius:6px; flex:1; }
.devcard__body{ display:grid; grid-template-columns:1fr 1fr; }
.devcard__code{ padding:22px 20px; font-family:'JetBrains Mono',monospace; font-size:12px; line-height:1.85; color:#9AA0C4; border-right:1px solid rgba(255,255,255,.06); }
.devcard__code .k{ color:#C9A8FF; } .devcard__code .s{ color:#8FE3D0; } .devcard__code .t{ color:#7C9CFF; } .devcard__code .c{ color:#5C5F72; }
.devcard__preview{ padding:20px; display:flex; flex-direction:column; gap:10px; }
.dp-line{ height:9px; border-radius:4px; background:rgba(255,255,255,.08); }
.dp-block{ height:64px; border-radius:10px; background:linear-gradient(135deg, rgba(124,92,255,.35), rgba(0,210,184,.25)); }
.devcard__footer{ display:flex; justify-content:space-between; align-items:center; padding:16px 20px; border-top:1px dashed rgba(255,255,255,.1); }
.devcard__footer .status{ display:flex; align-items:center; gap:8px; font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--mint); }
.devcard__footer .dotpulse{ width:8px; height:8px; border-radius:50%; background:var(--mint); animation:pulse 1.8s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{ box-shadow:0 0 0 0 rgba(0,210,184,.55);} 50%{ box-shadow:0 0 0 8px rgba(0,210,184,0);} }
.devcard__footer .time{ font-family:'JetBrains Mono',monospace; font-size:11.5px; color:#6B6E8C; }
@media (max-width:560px){ .devcard__body{ grid-template-columns:1fr; } .devcard__code{ border-right:none; border-bottom:1px solid rgba(255,255,255,.06); } }

/* ---------- Trust strip ---------- */
.trust-strip{ padding:36px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-strip__inner{ display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.trust-strip p{ font-size:12.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--text-mute); font-weight:600; white-space:nowrap; }
.trust-strip__logos{ display:flex; gap:36px; flex-wrap:wrap; align-items:center; opacity:.8; }
.trust-strip__logos span{ font-family:'Sora',sans-serif; font-weight:700; color:var(--text-mute); font-size:16px; }

/* ---------- Stats ---------- */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; }
.stat{ background:var(--card); padding:34px 24px; text-align:center; }
.stat .num{ font-family:'Sora',sans-serif; font-size:clamp(30px,3.4vw,44px); font-weight:700; color:var(--violet); }
.stat .lbl{ margin-top:6px; font-size:13.5px; color:var(--text-mute); }
@media (max-width:768px){ .stats{ grid-template-columns:repeat(2,1fr); } }

/* ---------- Service Cards ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:960px){ .grid-3{ grid-template-columns:1fr 1fr; } .grid-4{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .grid-3, .grid-2, .grid-4{ grid-template-columns:1fr; } }

.svc-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); padding:32px 28px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease; position:relative; overflow:hidden;
}
.svc-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-sm); border-color:transparent; }
.svc-card__icon{ width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:var(--violet-soft); margin-bottom:22px; }
.svc-card__icon svg{ width:26px; height:26px; }
.svc-card h3{ font-size:20px; margin-bottom:10px; }
.svc-card p{ color:var(--text-mute); font-size:14.5px; line-height:1.6; }
.svc-card__link{ display:inline-flex; align-items:center; gap:6px; margin-top:18px; font-size:13.5px; font-weight:600; color:var(--violet); }

.svc-card--sm{ padding:26px 22px; }
.svc-card--sm .svc-card__icon{ width:44px; height:44px; margin-bottom:16px; }
.svc-card--sm .svc-card__icon svg{ width:21px; height:21px; }
.svc-card--sm h3{ font-size:16.5px; margin-bottom:8px; }
.svc-card--sm p{ font-size:13.5px; }

/* ---------- Process ---------- */
.process{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:900px){ .process{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .process{ grid-template-columns:1fr; } }
.step{ position:relative; padding-top:8px; }
.step .pinbadge{ width:44px; height:44px; border-radius:12px; background:var(--ink); display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
.step .pinbadge span{ font-family:'JetBrains Mono',monospace; color:var(--mint); font-weight:700; font-size:14px; }
.step h4{ font-size:17px; margin-bottom:8px; }
.step p{ font-size:14px; color:var(--text-mute); line-height:1.6; }
.step:not(:last-child)::after{ content:""; position:absolute; top:22px; left:60px; width:calc(100% - 44px); height:1px; background:repeating-linear-gradient(90deg,var(--line) 0 6px, transparent 6px 12px); }
@media (max-width:900px){ .step::after{ display:none; } }

/* ---------- Dark band (performance feature) ---------- */
.band-dark{ background:var(--ink); color:#fff; border-radius:32px; overflow:hidden; position:relative; }
.band-dark .container{ padding-top:80px; padding-bottom:80px; }
.band-dark h2{ color:#fff; }
.band-dark p{ color:#A6A8C4; }
.band-dark .grid-2{ align-items:center; gap:60px; }
.checklist{ display:flex; flex-direction:column; gap:16px; margin-top:28px; }
.checklist li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; color:#DCDCF0; }
.checklist svg{ flex-shrink:0; margin-top:3px; width:18px; height:18px; color:var(--mint); }

.lh-mock{ background:#12121C; border:1px solid var(--line-dark); border-radius:20px; padding:26px; }
.lh-mock__row{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.lh-mock__row:last-child{ margin-bottom:0; }
.lh-score{ display:flex; align-items:center; gap:14px; }
.lh-score .ring{ width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'JetBrains Mono',monospace; font-weight:700; font-size:13px; color:#0A0A12; background:conic-gradient(var(--mint) 0deg, var(--mint) calc(var(--pct,90) * 3.6deg), rgba(255,255,255,.08) calc(var(--pct,90) * 3.6deg)); position:relative; }
.lh-score .ring::before{ content:""; position:absolute; inset:4px; border-radius:50%; background:#12121C; }
.lh-score .ring span{ position:relative; color:#fff; font-size:13px; }
.lh-score .label{ font-size:13.5px; color:#C6C8E0; }

/* ---------- Portfolio / Case cards ---------- */
.case{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; transition:transform .3s ease, box-shadow .3s ease; }
.case:hover{ transform:translateY(-6px); box-shadow:var(--shadow-sm); }
.case__browser{ background:var(--ink); }
.case__browser .devcard__bar{ padding:10px 14px; }
.case__browser .devcard__bar .url{ font-size:10.5px; padding:4px 10px; }
.case__browser .thumb{ height:120px; background:linear-gradient(135deg, rgba(124,92,255,.35), rgba(0,210,184,.22)); }
.case__body{ padding:22px 24px; }
.case__industry{ font-family:'JetBrains Mono',monospace; font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--violet); }
.case__body h3{ font-size:19px; margin-top:8px; }
.case__loc{ font-size:12.5px; color:var(--text-mute); margin-top:4px; }
.case__metrics{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:12px; overflow:hidden; margin-top:16px; }
.case__metrics div{ background:var(--card); padding:14px 10px; text-align:center; }
.case__metrics b{ display:block; font-family:'Sora',sans-serif; font-size:19px; }
.case__metrics span{ font-size:11px; color:var(--text-mute); }
.case__quote{ margin-top:16px; font-size:13.5px; color:var(--text-mute); font-style:italic; line-height:1.6; border-left:2px solid var(--violet-soft); padding-left:14px; }
.filter-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px; }
.filter-btn{ padding:9px 18px; border-radius:999px; border:1px solid var(--line); background:var(--card); font-size:13.5px; font-weight:600; color:var(--text-mute); transition:.2s; }
.filter-btn.active, .filter-btn:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }

/* ---------- Testimonials ---------- */
.tmn{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px; height:100%; }
.tmn .stars{ color:var(--amber); font-size:14px; letter-spacing:2px; }
.tmn p.quote{ margin-top:16px; font-size:15px; line-height:1.7; color:var(--text); }
.tmn__person{ display:flex; align-items:center; gap:12px; margin-top:22px; }
.tmn__avatar{ width:42px; height:42px; border-radius:50%; background:linear-gradient(145deg,#CFC3FF,var(--violet)); flex-shrink:0; }
.tmn__person b{ font-size:14px; display:block; }
.tmn__person span{ font-size:12.5px; color:var(--text-mute); }

/* ---------- FAQ ---------- */
.faq{ border-bottom:1px solid var(--line); }
.faq__q{ width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:22px 0; background:none; border:none; text-align:left; font-size:16px; font-weight:600; font-family:'Sora',sans-serif; color:var(--text); }
.faq__q .plus{ width:22px; height:22px; flex-shrink:0; position:relative; }
.faq__q .plus::before, .faq__q .plus::after{ content:""; position:absolute; background:var(--ink); border-radius:2px; transition:.3s; }
.faq__q .plus::before{ width:14px; height:2px; top:10px; left:4px; }
.faq__q .plus::after{ width:2px; height:14px; left:10px; top:4px; }
.faq.open .plus::after{ transform:rotate(90deg); opacity:0; }
.faq__a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq__a p{ padding-bottom:22px; font-size:14.5px; color:var(--text-mute); line-height:1.7; max-width:640px; }

/* ---------- CTA band ---------- */
.cta-band{ background:linear-gradient(135deg,var(--violet),#9C89FF 60%, #A390FF); border-radius:32px; padding:70px 50px; text-align:center; position:relative; overflow:hidden; }
.cta-band::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 80% 0%, rgba(255,255,255,.18), transparent 55%); }
.cta-band h2{ color:#fff; font-size:clamp(26px,3.4vw,40px); position:relative; }
.cta-band p{ color:rgba(255,255,255,.88); margin-top:14px; font-size:16px; position:relative; }
.cta-band__actions{ margin-top:30px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; }

/* ---------- Footer ---------- */
.footer{ background:var(--ink); color:#A6A8C4; padding-top:80px; }
.footer h4{ color:#fff; font-size:15px; margin-bottom:18px; }
.footer__grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer__brand p{ margin-top:16px; font-size:14px; line-height:1.7; max-width:280px; color:#8688A8; }
.footer__links li{ margin-bottom:12px; }
.footer__links a{ font-size:14px; color:#A6A8C4; transition:color .2s; }
.footer__links a:hover{ color:#fff; }
.footer__contact li{ font-size:14px; margin-bottom:14px; color:#A6A8C4; display:flex; gap:10px; }
.footer__contact svg{ width:17px; height:17px; flex-shrink:0; margin-top:2px; color:var(--violet); }
.footer__bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:13px; color:#65678A; flex-wrap:wrap; gap:12px; }
.footer__social{ display:flex; gap:12px; }
.footer__social a{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; transition:.25s; }
.footer__social a:hover{ background:var(--violet); }
.footer__social svg{ width:16px; height:16px; }
@media (max-width:900px){ .footer__grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer__grid{ grid-template-columns:1fr; } }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger.in .r-item{ opacity:1; transform:translateY(0); }
.r-item{ opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
.r-item:nth-child(1){ transition-delay:.02s; } .r-item:nth-child(2){ transition-delay:.1s; }
.r-item:nth-child(3){ transition-delay:.18s; } .r-item:nth-child(4){ transition-delay:.26s; }
.r-item:nth-child(5){ transition-delay:.34s; } .r-item:nth-child(6){ transition-delay:.42s; }

/* ---------- Page hero (inner pages) ---------- */
.pagehero{ padding:64px 0 40px; text-align:center; }
.pagehero h1{ font-size:clamp(30px,4.2vw,50px); margin-top:16px; }
.pagehero p{ margin:18px auto 0; max-width:600px; color:var(--text-mute); font-size:17px; }

/* ---------- Utility ---------- */
.tag-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.tag{ font-family:'JetBrains Mono',monospace; font-size:11.5px; background:var(--bg); border:1px solid var(--line); padding:6px 12px; border-radius:999px; color:var(--text-mute); }

/* Contact page */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:start; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.form-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); padding:34px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13px; font-weight:600; margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border:1px solid var(--line); border-radius:10px; font-family:'Inter',sans-serif; font-size:14.5px; background:#FBFBFE; transition:border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--violet); outline:none; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:520px){ .field-row{ grid-template-columns:1fr; } }
.info-card{ background:var(--ink); color:#fff; border-radius:var(--radius-lg); padding:34px; margin-bottom:20px; }
.info-card li{ display:flex; gap:14px; margin-bottom:20px; font-size:14.5px; }
.info-card li:last-child{ margin-bottom:0; }
.info-card svg{ width:20px; height:20px; color:var(--mint); flex-shrink:0; margin-top:2px; }
.info-card b{ display:block; margin-bottom:3px; }
.info-card span{ color:#A6A8C4; font-size:13.5px; }
.map-frame{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); height:220px; }

/* About page */
.about-hero-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
@media (max-width:900px){ .about-hero-grid{ grid-template-columns:1fr; } }
.value-card{ padding:26px; border-radius:var(--radius-md); background:var(--card); border:1px solid var(--line); }
.team-card{ text-align:center; }
.team-card .avatar{ width:100%; aspect-ratio:1; border-radius:18px; background:linear-gradient(150deg,#CFC3FF,var(--violet)); margin-bottom:16px; }
.team-card h4{ font-size:16px; }
.team-card span{ font-size:13px; color:var(--text-mute); }

.timeline{ position:relative; padding-left:30px; border-left:2px dashed var(--line); }
.tl-item{ position:relative; padding-bottom:38px; }
.tl-item:last-child{ padding-bottom:0; }
.tl-item::before{ content:""; position:absolute; left:-37px; top:2px; width:12px; height:12px; border-radius:50%; background:var(--violet); border:3px solid var(--bg); }
.tl-item .yr{ font-family:'JetBrains Mono',monospace; font-size:12.5px; color:var(--violet); font-weight:600; }
.tl-item h4{ margin-top:6px; font-size:17px; }
.tl-item p{ margin-top:6px; font-size:14px; color:var(--text-mute); }
