@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800&family=Public+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #f5f3ee; --surface: #ffffff; --surface-2: #edeae3;
  --border: #d8d3c8; --border-strong: #b7af9e;
  --text: #1b1f23; --text-muted: #6b655a;
  --accent: #b5651d; --accent-soft: rgba(181,101,29,.1); --accent-contrast: #ffffff;
  --glow: #f0b169;
  --dark-1: #241a10; --dark-2: #3a2716;
  --ok-fg: #2f7d5b; --ok-bg: rgba(47,125,91,.1);
  --warn-fg: #a9740a; --warn-bg: rgba(169,116,10,.12);
  --info-fg: #3d5a80; --info-bg: rgba(61,90,128,.1);
  --pro-fg: #6a4c93; --pro-bg: rgba(106,76,147,.1);
  --crit-fg: #8c5a3d; --crit-bg: rgba(140,90,61,.08);
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --font-sans: 'Public Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Archivo', 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 2px rgba(27,31,35,.06);
  --shadow-md: 0 8px 28px rgba(27,31,35,.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width:100%; overflow-x:hidden; }
body { margin:0; background:var(--bg); color:var(--text); font-family:var(--font-sans); font-size:15px; line-height:1.6; max-width:100%; overflow-x:hidden; }
h1,h2,h3,h4 { font-family:var(--font-display); margin:0; text-wrap:balance; }
p { margin:0; }
a { color:inherit; }
img,svg { max-width:100%; }
.wrap { max-width:1240px; margin:0 auto; padding:0 40px; }
.eyebrow { font-family:var(--font-mono); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--accent); font-weight:600; }


/* nav */
.nav { position:sticky; top:0; z-index:40; background:rgba(245,243,238,.88); backdrop-filter:blur(8px); border-bottom:1px solid var(--border); }
.nav-row { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:16px 40px; max-width:1240px; margin:0 auto; }
.brand { display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand .mark { width:34px; height:34px; border-radius:9px; background:var(--accent); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:13px; }
.brand b { font-family:var(--font-display); font-size:15px; font-weight:700; color:var(--text); }
.brand span { display:block; font-size:9.5px; color:var(--text-muted); letter-spacing:.05em; text-transform:uppercase; margin-top:1px; }
.nav-links { display:flex; gap:26px; flex-shrink:0; }
.nav-links a { font-size:13.5px; font-weight:600; text-decoration:none; color:var(--text-muted); white-space:nowrap; }
.nav-links a:hover { color:var(--text); }
.nav-cta { display:flex; gap:10px; align-items:center; flex-shrink:0; }
.btn { font-family:var(--font-sans); font-weight:700; font-size:13.5px; padding:10px 18px; border-radius:9px; border:1px solid var(--border-strong); background:var(--surface); color:var(--text); cursor:pointer; text-decoration:none; display:inline-flex; align-items:center; gap:7px; }
.btn:hover { background:var(--surface-2); }
.btn.primary { background:var(--accent); border-color:var(--accent); color:#fff; }
.btn.primary:hover { background:#9a5518; }
.btn.on-dark { background:var(--glow); border-color:var(--glow); color:var(--dark-1); }
.btn.on-dark:hover { background:#f6c284; }
.btn.ghost-dark { background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.22); color:#f6efe4; }
.btn.ghost-dark:hover { background:rgba(255,255,255,.12); }
.btn.lg { padding:14px 26px; font-size:14.5px; border-radius:11px; }

/* hero */
.hero { position:relative; overflow:hidden; background:
    radial-gradient(ellipse 900px 620px at 15% 0%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(155deg, var(--dark-1) 0%, var(--dark-2) 100%);
  color:#f6efe4; padding:76px 0 90px; }
.hero-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.hero-pill { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius:999px; padding:6px 14px; font-size:12px; font-family:var(--font-mono); color:var(--glow); margin-bottom:22px; }
.hero h1 { font-size:44px; font-weight:800; line-height:1.12; letter-spacing:-.015em; margin-bottom:20px; }
.hero h1 em { font-style:normal; color:var(--glow); }
.hero .lede { font-size:17px; line-height:1.65; color:#d9cdbd; max-width:520px; margin-bottom:30px; }
.hero-ctas { display:flex; gap:12px; margin-bottom:38px; flex-wrap:wrap; }
.hero-note { font-size:12.5px; color:#a79684; }
.hero-stats { display:flex; gap:28px; margin-top:36px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); }
.hero-stats div b { display:block; font-family:var(--font-display); font-size:19px; color:#fff; }
.hero-stats div span { display:block; font-size:11px; color:#a79684; margin-top:2px; }

/* hero visual: workflow card */
.flow-card { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:16px; padding:22px; backdrop-filter:blur(2px); }
.flow-card-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.flow-card-head b { font-size:12.5px; color:#f6efe4; font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.05em; }
.flow-step { display:flex; gap:12px; align-items:flex-start; padding:11px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.flow-step:last-child { border-bottom:none; }
.flow-num { width:22px; height:22px; border-radius:6px; background:rgba(240,177,105,.16); color:var(--glow); font-family:var(--font-mono); font-size:11px; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
.flow-step b { display:block; font-size:13px; color:#fff; margin-bottom:2px; }
.flow-step span { font-size:11.5px; color:#c9baa6; }

/* sections */
.section { padding:108px 0; }
.section.tight { padding:72px 0; }
.section-head { max-width:660px; margin-bottom:56px; }
.section-head h2 { font-size:30px; font-weight:700; letter-spacing:-.01em; margin-top:10px; }
.section-head p { font-size:15.5px; color:var(--text-muted); margin-top:12px; line-height:1.65; }
.section.on-surface { background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

/* pains */
.pains { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pain-card { background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:28px 26px; }
.pain-card .ic { width:38px; height:38px; border-radius:10px; background:var(--warn-bg); color:var(--warn-fg); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.pain-card h3 { font-size:15.5px; font-weight:700; margin-bottom:8px; }
.pain-card p { font-size:13px; color:var(--text-muted); line-height:1.6; }

/* workflow timeline */
.wf { display:grid; grid-template-columns:repeat(6,1fr); gap:14px; margin-top:28px; position:relative; }
.wf::before { content:''; position:absolute; top:-17px; left:8%; right:8%; height:2px; background:repeating-linear-gradient(90deg, var(--border-strong) 0 6px, transparent 6px 11px); z-index:0; }
.wf-step { background:var(--surface); border:1px solid var(--border); border-radius:12px; padding:20px 16px 18px; position:relative; }
.wf-step .n { position:absolute; top:-17px; left:16px; width:26px; height:26px; border-radius:50%; background:var(--accent); color:#fff; font-family:var(--font-mono); font-size:10.5px; font-weight:700; display:flex; align-items:center; justify-content:center; box-shadow:0 0 0 4px var(--surface); }
.wf-step h4 { font-size:12.5px; font-weight:700; line-height:1.3; margin:8px 0 6px; }
.wf-step p { font-size:11px; color:var(--text-muted); line-height:1.5; }

.zz { position:relative; margin-top:48px; padding:44px 0 56px; }
.zz-row { display:flex; gap:8px; position:relative; z-index:1; }
.zz-item { flex:1; display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 6px; }
.zz-item.up { transform:translateY(-24px); }
.zz-item.down { transform:translateY(24px); }
.zz-num { width:38px; height:38px; border-radius:50%; background:var(--accent); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-weight:700; font-size:14px; margin-bottom:12px; box-shadow:0 0 0 6px var(--bg); flex-shrink:0; }
.on-surface .zz-num { box-shadow:0 0 0 6px var(--surface); }
.zz-item h4 { font-size:12.5px; font-weight:700; margin-bottom:6px; }
.zz-item p { font-size:11px; color:var(--text-muted); line-height:1.5; max-width:150px; }
@media (max-width: 860px) {
  .zz-row { flex-wrap:wrap; }
  .zz-item { flex:1 1 45%; transform:none !important; margin-bottom:24px; }
}

/* roles */
.roles { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feat-quad { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.mkt-hero-grid { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:52px; }
.roles-flex { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; }
.roles-flex .role-card { flex:1 1 300px; max-width:calc(33.333% - 14px); }
@media (max-width: 860px) { .roles-flex .role-card { max-width:calc(50% - 10px); } }
.role-card { background:var(--surface); border:1px solid var(--border); border-radius:12px; padding:22px 20px; text-align:left; transition:transform .15s, box-shadow .15s; }
.role-card:hover, .wf-step:hover { transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.role-card .ic { width:32px; height:32px; border-radius:8px; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; margin-bottom:12px; font-size:15px; }
.role-card h4 { font-size:13px; font-weight:700; margin-bottom:5px; }
.role-card p { font-size:11.5px; color:var(--text-muted); line-height:1.5; }

/* IA spotlight */
.ia-section { background:linear-gradient(155deg, var(--dark-1) 0%, var(--dark-2) 100%); color:#f6efe4; }
.ia-grid { display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center; }
.ia-section .section-head p { color:#c9baa6; }
.ia-section .section-head .eyebrow { color:var(--glow); }
.ia-feature { display:flex; gap:14px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.09); }
.ia-feature:last-child { border-bottom:none; }
.ia-feature .ic { width:34px; height:34px; border-radius:9px; background:rgba(240,177,105,.14); color:var(--glow); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ia-feature h4 { font-size:14px; font-weight:700; color:#fff; margin-bottom:4px; }
.ia-feature p { font-size:12.5px; color:#c9baa6; line-height:1.6; }
.chat-mock { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:16px; padding:20px; }
.chat-mock .row { display:flex; margin-bottom:12px; position:relative; opacity:0; transform:translateY(6px); transition:opacity .4s ease, transform .4s ease; }
.chat-mock .row.visible { opacity:1; transform:translateY(0); }
.chat-mock .row.user { justify-content:flex-end; }
.chat-mock .bubble { max-width:80%; padding:10px 14px; border-radius:12px; font-size:12.5px; line-height:1.55; }
.chat-mock .row.user .bubble { background:var(--glow); color:var(--dark-1); border-bottom-right-radius:3px; }
.chat-mock .row.bot .bubble { background:rgba(255,255,255,.08); color:#f0ebe2; border-bottom-left-radius:3px; transition:opacity .25s ease; }
.chat-mock .row.bot { position:relative; }
.chat-mock .row.bot .bubble.typing { position:absolute; left:0; top:0; z-index:1; display:flex; align-items:center; gap:4px; width:auto; opacity:0; margin:0; }
.chat-mock .row.bot.typing-active .bubble.typing { opacity:1; }
.chat-mock .row.bot.typing-active > .bubble:not(.typing) { opacity:0; }
.chat-mock .typing-dot { width:6px; height:6px; border-radius:50%; background:#f0ebe2; opacity:.5; display:inline-block; animation:chatTypingBounce 1.1s infinite ease-in-out; }
.chat-mock .typing-dot:nth-child(2) { animation-delay:.15s; }
.chat-mock .typing-dot:nth-child(3) { animation-delay:.3s; }
@keyframes chatTypingBounce {
  0%, 60%, 100% { transform:translateY(0); opacity:.5; }
  30% { transform:translateY(-4px); opacity:1; }
}
@media (prefers-reduced-motion: reduce) {
  .chat-mock .row { opacity:1; transform:none; transition:none; }
  .chat-mock .row.bot .bubble.typing { display:none; }
}
.mock-stack { display:flex; flex-direction:column; gap:16px; }
.agente-mock { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:16px; padding:18px 20px; }
.agente-mock-head { display:flex; align-items:center; gap:8px; margin-bottom:4px; font-size:11.5px; font-family:var(--font-mono); color:var(--glow); text-transform:uppercase; letter-spacing:.05em; }
.agente-mock-title { font-size:13.5px; font-weight:700; color:#fff; margin-bottom:12px; }
.agente-mock-item { display:flex; gap:10px; padding:9px 0; border-top:1px solid rgba(255,255,255,.08); }
.agente-mock-item:first-of-type { border-top:none; }
.agente-mock-item .dot { width:8px; height:8px; border-radius:50%; margin-top:5px; flex-shrink:0; }
.agente-mock-item.crit .dot { background:#e88477; }
.agente-mock-item.warn .dot { background:#e0b84a; }
.agente-mock-item.ok .dot { background:#74d3a3; }
.agente-mock-item p { font-size:12px; color:#e6ddd0; line-height:1.55; }
.doc-mock { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:16px; padding:18px 20px; display:flex; gap:16px; align-items:center; }
.doc-thumb { flex-shrink:0; width:84px; height:104px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius:8px; padding:10px 9px; display:flex; flex-direction:column; gap:5px; }
.doc-thumb .ic-row { color:var(--glow); margin-bottom:4px; }
.doc-thumb .ln { height:3px; border-radius:2px; background:rgba(255,255,255,.18); }
.doc-thumb .ln.w60 { width:60%; } .doc-thumb .ln.w80 { width:80%; } .doc-thumb .ln.w40 { width:40%; }
.doc-thumb .stamp { margin-top:auto; align-self:flex-end; font-family:var(--font-mono); font-size:7px; color:#e88477; border:1px solid #e88477; border-radius:3px; padding:1px 4px; transform:rotate(-8deg); }
.doc-verdict h4 { font-size:12.5px; color:var(--glow); font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.04em; margin-bottom:8px; }
.doc-verdict ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:5px; }
.doc-verdict li { font-size:11.5px; color:#e6ddd0; display:flex; gap:6px; }
.doc-verdict li b { color:#fff; font-weight:600; }
.doc-verdict li.match { color:#a8dfc0; }

/* integrations */
.integ-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.integ-grid-flex { display:flex; flex-wrap:wrap; justify-content:center; gap:22px; }
.integ-grid-flex .integ-card { flex:1 1 320px; max-width:calc(33.333% - 15px); }
@media (max-width: 860px) { .integ-grid-flex .integ-card { max-width:calc(50% - 11px); } }
.integ-card { background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:26px 24px; }
.integ-card-head { display:flex; align-items:flex-start; justify-content:space-between; gap:6px; margin-bottom:12px; }
.integ-card h3 { font-size:14.5px; font-weight:700; flex:1 1 auto; min-width:0; }
.integ-card-head .tag { flex-shrink:0; white-space:nowrap; }
.integ-card p { font-size:12.5px; color:var(--text-muted); line-height:1.6; margin-bottom:12px; }
.integ-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:6px; }
.integ-list li { font-size:12px; color:var(--text); display:flex; align-items:center; gap:7px; }
.integ-list li .dot { width:6px; height:6px; border-radius:50%; flex-shrink:0; }
.integ-list li.live .dot { background:var(--ok-fg); }
.integ-list li.soon .dot { background:var(--warn-fg); }
.tag { font-family:var(--font-mono); font-size:10px; font-weight:700; padding:3px 9px; border-radius:999px; letter-spacing:.02em; }
.tag.live { background:var(--ok-bg); color:var(--ok-fg); }
.tag.soon { background:var(--warn-bg); color:var(--warn-fg); }

/* comparison */
.pricing-callout { display:flex; align-items:center; gap:16px; background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:20px 24px; margin-top:20px; }
.pricing-callout .ic { width:38px; height:38px; border-radius:10px; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pricing-callout p { font-size:13px; color:var(--text-muted); line-height:1.6; }
.pricing-callout b { color:var(--text); }

/* pricing */
.pricing-toggle { display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:8px; font-size:12.5px; color:var(--text-muted); }
.plans { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:36px; align-items:stretch; }
.plan { background:var(--surface); border:2px solid var(--border); border-radius:16px; padding:28px 24px; display:flex; flex-direction:column; }
.plan.featured { border-color:var(--accent); position:relative; }
.plan-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--accent); color:#fff; font-size:10.5px; font-weight:700; padding:4px 14px; border-radius:999px; font-family:var(--font-mono); }
.plan h3 { font-size:16px; font-weight:700; margin-bottom:6px; }
.plan .sub { font-size:12px; color:var(--text-muted); margin-bottom:18px; min-height:32px; }
.plan .price { font-family:var(--font-display); font-size:34px; font-weight:800; margin-bottom:2px; }
.plan .price span { font-size:13px; font-weight:600; color:var(--text-muted); }
.plan .price-note { font-size:11.5px; color:var(--text-muted); margin-bottom:22px; }
.plan-list { list-style:none; margin:0 0 24px; padding:0; display:flex; flex-direction:column; gap:10px; flex:1; }
.plan-list li { font-size:12.5px; display:flex; gap:9px; align-items:flex-start; line-height:1.5; }
.plan-list li .ck { color:var(--ok-fg); flex-shrink:0; margin-top:1px; }
.plans-two { grid-template-columns:1.4fr 1fr; }
.plan-single { padding:28px 32px; }
.price-row { margin-bottom:22px; }
.price-top { display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; }
.price-now { font-family:var(--font-display); font-size:34px; font-weight:800; line-height:1; }
.price-unit { font-size:13px; font-weight:600; color:var(--text-muted); }
.price-save { display:inline-flex; align-items:center; gap:5px; font-family:var(--font-mono); font-size:11px; font-weight:700; color:var(--ok-fg, #2f7d5b); background:var(--ok-bg, rgba(47,125,91,.1)); padding:4px 10px; border-radius:20px; white-space:nowrap; }
.price-was-row { display:flex; align-items:center; gap:8px; margin-top:5px; font-size:12.5px; color:var(--text-muted); flex-wrap:wrap; }
.price-was { text-decoration:line-through; text-decoration-color:var(--border-strong); }
.price-trial { display:flex; align-items:center; gap:8px; font-size:12px; color:var(--text-muted); margin-top:12px; padding-top:12px; border-top:1px dashed var(--border); }
.price-trial .dot { width:6px; height:6px; border-radius:50%; background:var(--ok-fg, #2f7d5b); flex-shrink:0; }
.addons-row { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:24px; }
.addons-row-2 { grid-template-columns:1fr 1fr; }
.addon-chip { background:var(--surface); border:1px solid var(--border); border-radius:12px; padding:20px 22px; }
.addon-chip .top { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px; }
.addon-chip b { font-size:13px; }
.addon-chip .p { font-family:var(--font-mono); font-size:12.5px; color:var(--accent); font-weight:700; }
.addon-chip p { font-size:11.5px; color:var(--text-muted); line-height:1.5; }
.founding { display:flex; gap:20px; align-items:center; background:linear-gradient(155deg, var(--dark-1) 0%, var(--dark-2) 100%); border-radius:16px; padding:28px 32px; margin-top:44px; color:#f6efe4; }
.founding .ic { width:46px; height:46px; border-radius:12px; background:rgba(240,177,105,.16); color:var(--glow); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:20px; }
.founding h3 { font-size:16px; color:#fff; margin-bottom:6px; }
.founding p { font-size:13px; color:#c9baa6; line-height:1.6; max-width:640px; }

/* security strip */
.trust-strip { display:flex; flex-wrap:wrap; gap:28px; justify-content:center; padding:28px 0; }
.trust-item { display:flex; align-items:center; gap:9px; font-size:12.5px; color:var(--text-muted); font-weight:600; }
.trust-item .ic { color:var(--accent); font-size:16px; }

/* faq */
.faq-list { max-width:760px; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { width:100%; text-align:left; background:none; border:none; padding:20px 4px; font-family:var(--font-sans); font-size:14.5px; font-weight:700; color:var(--text); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq-q .chev { transition:transform .15s; color:var(--accent); flex-shrink:0; }
.faq-item.open .faq-q .chev { transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .2s ease; }
.faq-item.open .faq-a { max-height:400px; }
.faq-a p { font-size:13.5px; color:var(--text-muted); line-height:1.7; padding:0 4px 20px; max-width:640px; }

/* final cta */
.final-cta { background:linear-gradient(155deg, var(--dark-1) 0%, var(--dark-2) 100%); color:#f6efe4; text-align:center; padding:80px 0; }
.final-cta h2 { font-size:32px; color:#fff; margin-bottom:14px; }
.final-cta p { font-size:15px; color:#d9cdbd; max-width:520px; margin:0 auto 30px; }
.final-cta .ctas { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* footer */
footer { background:var(--surface); border-top:1px solid var(--border); padding:48px 0 28px; }
.foot-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:32px; margin-bottom:36px; }
.foot-col h5 { font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.05em; color:var(--text-muted); margin-bottom:14px; }
.foot-col a { display:block; font-size:13px; color:var(--text); text-decoration:none; margin-bottom:10px; }
.foot-col a:hover { color:var(--accent); }
.foot-col p { font-size:12.5px; color:var(--text-muted); line-height:1.6; max-width:280px; margin-top:12px; }
.foot-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:24px; border-top:1px solid var(--border); font-size:12px; color:var(--text-muted); flex-wrap:wrap; gap:10px; }

@media (max-width: 860px) {
  .hero-grid, .ia-grid { grid-template-columns:1fr; }
  .pains, .roles, .integ-grid, .plans, .addons-row { grid-template-columns:1fr 1fr; }
  .wf { grid-template-columns:repeat(4,1fr); }
  .foot-grid { grid-template-columns:1fr 1fr; }
  .nav-links { display:none; }
  .hero h1 { font-size:32px; }
}

.view { display:none; }
.subnav { position:sticky; top:68px; z-index:30; background:rgba(245,243,238,.92); backdrop-filter:blur(10px); box-shadow:0 1px 0 var(--border), 0 6px 14px -10px rgba(27,31,35,.15); overflow-x:auto; }
.subnav-row { display:flex; padding:12px 40px 10px; max-width:1240px; margin:0 auto; min-width:640px; }
.nav-cta-ghost { font-size:12.5px; font-weight:700; color:var(--accent); border:1px solid var(--accent); padding:8px 16px; border-radius:8px; text-decoration:none; white-space:nowrap; transition:background .15s, color .15s; }
.nav-cta-ghost:hover { background:var(--accent); color:#fff; }
.subnav-row a { flex:1; display:flex; flex-direction:column; align-items:center; gap:6px; text-decoration:none; position:relative; padding:0 4px; }
.subnav-row a:not(:last-of-type)::after { content:''; position:absolute; top:9px; left:50%; width:100%; height:0; border-top:2px dotted var(--border-strong); z-index:0; }
.sn-dot { width:20px; height:20px; border-radius:50%; border:2px solid var(--border-strong); background:var(--bg); display:flex; align-items:center; justify-content:center; font-size:9px; font-weight:700; color:var(--text-muted); font-family:var(--font-mono); transition:background .2s, border-color .2s, color .2s; position:relative; z-index:1; }
.subnav-row a.active .sn-dot { background:var(--accent); border-color:var(--accent); color:#fff; }
.sn-label { font-size:10.5px; font-weight:600; color:var(--text-muted); white-space:nowrap; transition:color .2s; }
.subnav-row a.active .sn-label { color:var(--accent); font-weight:700; }
.subnav-indicator { display:none; }
#producto, #marketplace, #configurable, #reportes, #piz-ia, #integraciones, #precios, #faq, #contacto { scroll-margin-top:112px; }
.view.active { display:block; }
.view-toggle { display:flex; background:var(--surface-2); border:1px solid var(--border); border-radius:10px; padding:3px; gap:2px; }
.view-toggle button { font-family:var(--font-sans); font-weight:700; font-size:12.5px; padding:8px 16px; border-radius:7px; border:none; background:none; color:var(--text-muted); cursor:pointer; }
.view-toggle button.active { background:var(--surface); color:var(--text); box-shadow:var(--shadow-sm); }

.home-hero { position:relative; overflow:hidden; padding:96px 0 64px; text-align:center;
  background:
    radial-gradient(ellipse 620px 420px at 12% 0%, var(--accent-soft), transparent 60%),
    radial-gradient(ellipse 620px 420px at 88% 10%, rgba(61,90,128,.10), transparent 60%),
    var(--bg); }
.home-hero::before, .home-hero::after { content:''; position:absolute; border-radius:50%; opacity:.5; pointer-events:none; }
.home-hero::before { width:340px; height:340px; border:1px solid var(--border-strong); top:-140px; left:-90px; }
.home-hero::after { width:220px; height:220px; border:1px solid var(--border-strong); bottom:-100px; right:6%; }
.path-card { position:relative; z-index:1; }
.path-preview { margin-top:18px; padding-top:16px; border-top:1px solid var(--border); display:flex; flex-direction:column; gap:8px; }
.path-preview .pv-row { display:flex; align-items:center; gap:8px; font-size:11px; color:var(--text-muted); }
.path-preview .pv-dot { width:6px; height:6px; border-radius:50%; flex-shrink:0; }
.path-preview .pv-dot.ok { background:var(--ok-fg); }
.path-preview .pv-dot.accent { background:var(--accent); }
.path-preview .pv-bar { flex:1; height:4px; background:var(--surface-2); border-radius:2px; overflow:hidden; }
.path-preview .pv-bar span { display:block; height:100%; background:var(--ok-fg); }
.home-hero .eyebrow { justify-content:center; display:flex; }
.home-hero h1 { font-size:42px; font-weight:800; letter-spacing:-.015em; line-height:1.15; max-width:800px; margin:14px auto 20px; }
.home-hero .lede { font-size:16.5px; color:var(--text-muted); max-width:600px; margin:0 auto 48px; line-height:1.65; }
.path-cards { display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:880px; margin:0 auto; }
.path-card { background:var(--surface); border:1px solid var(--border); border-radius:18px; padding:36px 32px; text-align:left; cursor:pointer; transition:border-color .15s, box-shadow .15s; }
.path-card:hover { border-color:var(--accent); box-shadow:var(--shadow-md); }
.path-card .ic { width:46px; height:46px; border-radius:12px; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; margin-bottom:18px; font-size:20px; }
.path-card h3 { font-size:19px; font-weight:700; margin-bottom:8px; }
.path-card p { font-size:13.5px; color:var(--text-muted); line-height:1.6; margin-bottom:18px; }
.path-card .go { font-size:13px; font-weight:700; color:var(--accent); display:flex; align-items:center; gap:6px; }

.carne-strip { padding:72px 0 96px; border-top:1px solid var(--border); background:var(--surface); }
.carne-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px 40px; max-width:1120px; margin:40px auto 0; }

.flow3 { display:grid; grid-template-columns:repeat(3,1fr); gap:0; max-width:1000px; margin:40px auto 0; position:relative; }
.flow3::before { content:''; position:absolute; top:26px; left:16.5%; right:16.5%; height:2px; background:repeating-linear-gradient(90deg, var(--border-strong) 0 8px, transparent 8px 14px); z-index:0; }
.flow3-step { position:relative; z-index:1; text-align:center; padding:0 20px; }
.flow3-step .circ { width:52px; height:52px; border-radius:50%; background:var(--surface); border:2px solid var(--accent); color:var(--accent); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-size:20px; }
.flow3-step h4 { font-size:15px; font-weight:700; margin-bottom:8px; }
.flow3-step p { font-size:12.5px; color:var(--text-muted); line-height:1.6; max-width:220px; margin:0 auto; }

.stats-band { background:linear-gradient(155deg, var(--dark-1) 0%, var(--dark-2) 100%); padding:52px 0; }
.stats-band .wrap { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stats-band .stat b { display:block; font-family:var(--font-display); font-size:30px; font-weight:800; color:var(--glow); }
.stats-band .stat span { display:block; font-size:12px; color:#c9baa6; margin-top:6px; }

.chart-card { display:grid; grid-template-columns:1.4fr 1fr; gap:0; max-width:960px; margin:0 auto; background:var(--surface-2); border:1px solid var(--border); border-radius:16px; overflow:hidden; }
.chart-card-viz { padding:26px 28px; background:var(--surface); }
.chart-card-viz-head { font-size:12.5px; font-weight:700; color:var(--text-muted); margin-bottom:12px; }
.chart-card-kpis { padding:26px 24px; display:flex; flex-direction:column; gap:18px; justify-content:center; }
.kpi-tile b { display:block; font-family:var(--font-display); font-size:20px; font-weight:800; color:var(--text); }
.kpi-tile span { display:block; font-size:11.5px; color:var(--text-muted); margin-top:3px; }
@media (max-width: 860px) { .chart-card { grid-template-columns:1fr; } }

@media (max-width: 860px) {
  .flow3 { grid-template-columns:1fr; gap:32px; }
  .flow3::before { display:none; }
  .stats-band .wrap { grid-template-columns:1fr 1fr; }
}
.carne-item { display:flex; gap:14px; align-items:flex-start; }
.carne-item .ic { width:36px; height:36px; border-radius:10px; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:16px; }
.carne-item h4 { font-size:13.5px; font-weight:700; margin-bottom:4px; }
.carne-item p { font-size:12px; color:var(--text-muted); line-height:1.55; }

.feature-big-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:1120px; margin:40px auto 0; }
.feature-big { background:var(--surface-2); border:1px solid var(--border); border-radius:18px; overflow:hidden; text-align:left; display:flex; flex-direction:column; }
.feature-big-visual { background:linear-gradient(155deg, var(--dark-1) 0%, var(--dark-2) 100%); padding:22px 24px; min-height:168px; display:flex; flex-direction:column; justify-content:center; }
.feature-big-body { padding:26px 28px 30px; }
.feature-big-body h3 { font-size:17px; font-weight:700; margin-bottom:8px; }
.feature-big-body p { font-size:13px; color:var(--text-muted); line-height:1.6; margin-bottom:18px; }
.feature-mini-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; max-width:1120px; margin:20px auto 0; }

.contact-overlay { position:fixed; inset:0; background:rgba(20,16,10,.55); display:none; align-items:flex-start; justify-content:center; padding:6vh 20px 20px; z-index:9999; overflow-y:auto; }
.contact-overlay.open { display:flex; }
.contact-modal { background:var(--surface); border-radius:16px; width:min(480px,100%); box-shadow:var(--shadow-md); border:1px solid var(--border); }
.contact-head { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; padding:22px 24px 4px; }
.contact-head h2 { font-size:18px; font-weight:700; }
.contact-head p { font-size:12.5px; color:var(--text-muted); margin-top:6px; }
.contact-close { background:none; border:none; cursor:pointer; color:var(--text-muted); font-size:19px; line-height:1; padding:4px 6px; border-radius:6px; flex-shrink:0; }
.contact-close:hover { background:var(--surface-2); color:var(--text); }
.contact-body { padding:16px 24px 26px; display:flex; flex-direction:column; gap:14px; }
.cf-field label { display:block; font-size:12px; font-weight:700; margin-bottom:6px; color:var(--text); }
.cf-field input, .cf-field select, .cf-field textarea { width:100%; font-family:var(--font-sans); font-size:13.5px; padding:10px 12px; border-radius:8px; border:1px solid var(--border-strong); background:var(--surface); color:var(--text); }
.cf-field textarea { resize:vertical; min-height:70px; }
.cf-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.cf-row .cf-field { display:flex; flex-direction:column; }
.cf-row .cf-field input, .cf-row .cf-field select { margin-top:auto; }
.hp-field { position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; overflow:hidden; }
.contact-embed { background:var(--surface); border:1px solid var(--border); border-radius:18px; padding:36px; max-width:640px; margin:0 auto; }
.contact-embed.on-dark { background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.14); }
.contact-embed .ce-head { text-align:center; margin-bottom:22px; }
.contact-embed .ce-head h3 { font-size:19px; font-weight:700; margin-bottom:6px; }
.contact-embed.on-dark .ce-head h3 { color:#fff; }
.contact-embed .ce-head p { font-size:13px; color:var(--text-muted); }
.contact-embed.on-dark .ce-head p { color:#c9baa6; }
.contact-embed .cf-field label { color:inherit; }
.contact-embed-form { display:flex; flex-direction:column; gap:16px; }
.contact-embed.on-dark .cf-field label { color:#e6ddd0; }
.contact-embed .ce-success { display:none; text-align:center; padding:20px 0; }
.contact-embed .ce-success .ic { width:48px; height:48px; border-radius:50%; background:var(--ok-bg); color:var(--ok-fg); display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.contact-embed .ce-success p { font-size:13.5px; color:var(--text-muted); }
.contact-embed.on-dark .ce-success p { color:#c9baa6; }
.contact-embed .ce-note { font-size:11px; color:var(--text-muted); text-align:center; margin-top:14px; }
.contact-embed.on-dark .ce-note { color:#a79684; }
.contact-success { display:none; padding:36px 24px; text-align:center; }
.contact-success .ic { width:52px; height:52px; border-radius:50%; background:var(--ok-bg); color:var(--ok-fg); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.contact-success h3 { font-size:16px; font-weight:700; margin-bottom:8px; }
.contact-success p { font-size:13px; color:var(--text-muted); line-height:1.6; }
.feature-mini { background:var(--surface-2); border:1px solid var(--border); border-radius:14px; padding:22px 20px; text-align:left; }
.feature-mini .ic { width:38px; height:38px; border-radius:10px; background:var(--surface); border:1px solid var(--border); color:var(--accent); display:flex; align-items:center; justify-content:center; margin-bottom:14px; font-size:17px; }
.feature-mini h4 { font-size:13.5px; font-weight:700; margin-bottom:6px; }
.feature-mini p { font-size:12px; color:var(--text-muted); line-height:1.55; }
@media (max-width: 860px) {
  .feature-big-grid { grid-template-columns:1fr; }
  .feature-mini-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 860px) {
  .path-cards { grid-template-columns:1fr; }
  .carne-grid { grid-template-columns:1fr 1fr; }
  .home-hero h1 { font-size:30px; }
}


@media (max-width: 480px) {
  .wrap { padding:0 20px; }
  .nav-row { padding:12px 16px; flex-wrap:wrap; row-gap:10px; }
  .brand span { display:none; }
  .nav-cta-ghost { display:none; }
  .view-toggle { order:3; width:100%; }
  .view-toggle button { flex:1; padding:9px 8px; font-size:11.5px; }
  .home-hero { padding:64px 0 48px; }
  .home-hero::before, .home-hero::after { display:none; }
  .home-hero h1 { font-size:26px; }
  .home-hero .lede { font-size:14.5px; margin-bottom:32px; }
  .hero h1 { font-size:26px; }
  .flow3 { grid-template-columns:1fr; gap:28px; }
  .carne-grid { grid-template-columns:1fr; }
  .chart-card { grid-template-columns:1fr; }
  .feature-mini-grid { grid-template-columns:1fr; }
  .subnav-row { padding:12px 16px 10px; }
  .contact-embed { padding:24px; }
}

@media (max-width: 480px) {
  .hero-pill { border-radius:14px; white-space:normal; line-height:1.5; padding:8px 12px; }
  .subnav-row { min-width:0; gap:2px; padding:10px 14px 8px; }
  .subnav-row a { padding:0 2px; gap:4px; flex:none; width:64px; }
  .sn-dot { width:16px; height:16px; font-size:8px; }
  .sn-label { font-size:9px; white-space:normal; text-align:center; line-height:1.2; }
  .subnav-row a:not(:last-of-type)::after { top:7px; }
}

@media (max-width: 480px) {
  .pains, .roles, .integ-grid, .plans, .plans-two, .addons-row, .addons-row-2, .foot-grid {
    grid-template-columns:1fr;
  }
  .hero-stats { flex-wrap:wrap; gap:20px 28px; }
  .cf-row { grid-template-columns:1fr; }
  .doc-mock { flex-direction:column; align-items:flex-start; }
  .founding { flex-direction:column; align-items:flex-start; }
  .pricing-callout { flex-direction:column; align-items:flex-start; }
}

@media (max-width: 860px) {
  .feat-quad { grid-template-columns:1fr 1fr; }
  .mkt-hero-grid { grid-template-columns:1fr; }
  .integ-grid-flex .integ-card { max-width:100%; }
}
@media (max-width: 480px) {
  .feat-quad { grid-template-columns:1fr; }
}

/* comparison table — grouped design (2026-09-08) */
.cmp-shell { border:1px solid var(--border); border-radius:16px; background:var(--surface); overflow:hidden; box-shadow:var(--shadow-sm); }
.cmp-head { display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:0; background:var(--surface-2); border-bottom:1px solid var(--border-strong); position:sticky; top:0; }
.cmp-col-label { padding:14px 18px; font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.05em; color:var(--text-muted); font-weight:700; }
.cmp-col-label.cmp-col-piz { background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; gap:8px; }
.cmp-col-label .cmp-mark { display:none; }
.cmp-group-title { padding:12px 18px 8px; font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--accent); font-weight:700; background:var(--bg); border-bottom:1px solid var(--border); border-top:1px solid var(--border); }
.cmp-shell > .cmp-group-title:first-of-type { border-top:none; }
.cmp-row { display:grid; grid-template-columns:1.6fr 1fr 1fr; border-bottom:1px solid var(--border); }
.cmp-row:last-of-type { border-bottom:none; }
.cmp-feat { padding:13px 18px; font-size:13.5px; color:var(--text); display:flex; flex-direction:column; gap:2px; justify-content:center; }
.cmp-feat span { font-size:12px; color:var(--text-muted); font-weight:400; }
.cmp-cell { padding:13px 18px; display:flex; align-items:center; gap:8px; font-size:13px; }
.cmp-cell.cmp-yes { color:var(--ok-fg); font-weight:600; background:var(--accent-soft); }
.cmp-cell.cmp-no { color:var(--crit-fg); background:var(--crit-bg); }
.cmp-ic { flex-shrink:0; }
.cmp-foot-note { padding:16px 18px; font-size:12px; color:var(--text-muted); background:var(--bg); border-top:1px solid var(--border); }

@media (max-width: 760px) {
  .cmp-head .cmp-col-label:nth-child(2) { display:none; }
  .cmp-row { grid-template-columns:1fr 1fr; }
  .cmp-row > .cmp-cell:nth-child(2) { display:none; }
  .cmp-head { grid-template-columns:1fr 1fr; }
  .cmp-feat { padding:13px 14px; }
  .cmp-cell { padding:13px 14px; }
}
/* soporte senior — Home (2026-09-08) */
.sup-section { background:var(--bg); border-top:1px solid var(--border); }
.sup-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.sup-list { display:flex; flex-direction:column; gap:0; margin-top:8px; }
.sup-item { display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--border); }
.sup-item:last-child { border-bottom:none; }
.sup-item .ic { width:34px; height:34px; border-radius:9px; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.sup-item h4 { font-size:14px; font-weight:700; color:var(--text); margin-bottom:4px; }
.sup-item p { font-size:12.5px; color:var(--text-muted); line-height:1.6; }
.sup-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; }
.sup-tag { font-family:var(--font-mono); font-size:10.5px; font-weight:700; padding:5px 11px; border-radius:999px; background:var(--surface); border:1px solid var(--border-strong); color:var(--text-muted); letter-spacing:.02em; }
.sup-portraits { display:flex; flex-direction:column; gap:20px; }
.sup-portrait { display:flex; gap:18px; align-items:center; background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:18px 20px; box-shadow:var(--shadow-sm); }
.sup-portrait-img { flex-shrink:0; width:88px; height:88px; border-radius:14px; overflow:hidden; }
.sup-portrait-body .role { display:block; font-family:var(--font-mono); font-size:10.5px; text-transform:uppercase; letter-spacing:.05em; color:var(--accent); margin-bottom:8px; }
.sup-portrait-body b { display:block; font-size:14.5px; color:var(--text); margin-bottom:3px; }
.sup-portrait-body p { font-size:12.5px; color:var(--text-muted); line-height:1.6; }
@media (max-width: 860px) {
  .sup-grid { grid-template-columns:1fr; gap:36px; }
}
@media (max-width: 480px) {
  .sup-portrait { flex-direction:column; align-items:flex-start; text-align:left; }
}
/* páginas legales / quiénes somos (2026-09-08) */
.legal-hero { background:var(--bg); border-bottom:1px solid var(--border); padding:64px 0 40px; }
.legal-hero .wrap { max-width:900px; }
.legal-hero .eyebrow { display:block; margin-bottom:10px; }
.legal-hero h1 { font-size:34px; font-weight:800; letter-spacing:-.01em; margin-bottom:10px; }
.legal-updated { font-size:12.5px; color:var(--text-muted); font-family:var(--font-mono); }
.legal-shell { padding:56px 0 96px; background:var(--surface); }
.legal-shell .wrap { max-width:900px; display:grid; grid-template-columns:220px 1fr; gap:56px; align-items:start; }
.legal-toc { position:sticky; top:88px; display:flex; flex-direction:column; gap:2px; }
.legal-toc a { font-size:12.5px; color:var(--text-muted); text-decoration:none; padding:7px 0; border-left:2px solid var(--border); padding-left:14px; line-height:1.4; }
.legal-toc a:hover { color:var(--accent); border-left-color:var(--accent); }
.legal-body h2 { font-size:19px; font-weight:700; margin:44px 0 14px; scroll-margin-top:100px; }
.legal-body h2:first-child { margin-top:0; }
.legal-body h3 { font-size:14.5px; font-weight:700; margin:22px 0 8px; color:var(--text); }
.legal-body p { font-size:14px; color:var(--text-muted); line-height:1.75; margin-bottom:14px; max-width:640px; }
.legal-body ul, .legal-body ol { margin:0 0 14px; padding-left:20px; max-width:640px; }
.legal-body li { font-size:14px; color:var(--text-muted); line-height:1.75; margin-bottom:6px; }
.legal-body li b, .legal-body p b, .legal-body p strong { color:var(--text); font-weight:600; }
.legal-box { background:var(--bg); border:1px solid var(--border); border-radius:12px; padding:18px 20px; margin:18px 0 22px; max-width:640px; }
.legal-box p { margin-bottom:0; font-size:13.5px; }
.legal-box p + p { margin-top:10px; }
@media (max-width: 760px) {
  .legal-shell .wrap { grid-template-columns:1fr; gap:28px; }
  .legal-toc { position:static; flex-direction:row; flex-wrap:wrap; gap:8px 16px; }
  .legal-toc a { border-left:none; padding-left:0; border-bottom:2px solid var(--border); padding-bottom:6px; }
}

/* quiénes somos */
.about-hero { background:linear-gradient(155deg, var(--dark-1) 0%, var(--dark-2) 100%); color:#f6efe4; padding:80px 0 84px; overflow:hidden; position:relative; }
.about-hero::before { content:''; position:absolute; width:480px; height:480px; border-radius:50%; background:radial-gradient(circle, rgba(255,255,255,.05), transparent 65%); top:-220px; right:-140px; pointer-events:none; }
.about-hero .eyebrow { color:var(--glow); }
.about-hero-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:52px; align-items:center; position:relative; z-index:1; }
.about-hero h1 { font-size:36px; font-weight:800; letter-spacing:-.015em; margin:14px 0 18px; color:#fff; }
.about-hero p { font-size:15.5px; color:#d9cdbd; line-height:1.7; }
.about-hero-visual { display:flex; align-items:center; justify-content:center; }
.about-hero-visual .plus { color:var(--glow); flex-shrink:0; }
.about-badge { width:120px; height:120px; border-radius:26px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.14); color:var(--glow); display:flex; align-items:center; justify-content:center; }
.work-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:52px; align-items:center; }
.work-visual { display:flex; align-items:center; justify-content:center; }
.about-pillars { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:8px; }
.about-pillar { background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:26px 24px; }
.about-pillar .ic { width:38px; height:38px; border-radius:10px; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.about-pillar h3 { font-size:15px; font-weight:700; margin-bottom:8px; }
.about-pillar p { font-size:13px; color:var(--text-muted); line-height:1.6; }
@media (max-width: 860px) {
  .about-hero-grid, .work-grid { grid-template-columns:1fr; }
}
@media (max-width: 760px) {
  .about-pillars { grid-template-columns:1fr; }
  .about-hero h1 { font-size:28px; }
}
@media (max-width: 480px) {
  .about-hero { padding:56px 0 48px; }
  .about-hero h1 { font-size:24px; }
  .about-hero p { font-size:14px; }
  .about-badge { width:88px; height:88px; border-radius:20px; }
  .about-badge svg { width:34px; height:34px; }
  .work-visual svg { max-width:220px; }
}
