:root {
  --ink: #101828;
  --muted: #5d6b82;
  --line: #dbe3ef;
  --surface: #ffffff;
  --surface-alt: #f6f8fc;
  --navy: #071a33;
  --navy-2: #0b274a;
  --blue: #1769e0;
  --blue-dark: #0c4fb7;
  --cyan: #31c7d6;
  --green: #17b26a;
  --radius: 18px;
  --shadow: 0 18px 55px rgba(17, 42, 79, .11);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: white; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219,227,239,.7);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; line-height: 1.1; }
.brand-mark { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(145deg, var(--blue), #05a7c8); box-shadow: 0 8px 24px rgba(23,105,224,.22); }
.brand-mark svg { width: 29px; fill: none; stroke: white; stroke-width: 2; stroke-linejoin: round; }
.brand-mark .brand-line { stroke: rgba(255,255,255,.74); }
.brand strong { display: block; font-size: 19px; letter-spacing: -.02em; }
.brand small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 25px; }
.primary-nav > a:not(.button) { color: #394861; text-decoration: none; font-size: 14px; font-weight: 700; }
.primary-nav > a:not(.button):hover { color: var(--blue); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 7px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid var(--blue);
  border-radius: 11px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(23,105,224,.17);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 12px 30px rgba(23,105,224,.25); }
.button-small { min-height: 39px; padding: 9px 15px; font-size: 13px; border-radius: 9px; }
.button-large { min-height: 54px; padding: 15px 23px; }
.button-outline { color: var(--blue); background: transparent; box-shadow: none; }
.button-outline:hover { color: white; }
.button-ghost { color: var(--ink); border-color: #ccd8e8; background: white; box-shadow: none; }
.button-ghost:hover { color: var(--blue); background: white; border-color: var(--blue); }
.button-ghost-dark { color: var(--blue); background: transparent; border-color: #b9c9df; box-shadow: none; }
.button-ghost-dark:hover { color: white; }
.button-full { width: 100%; }
.button-light { color: var(--blue-dark); background: white; border-color: white; }
.button-light:hover { color: var(--blue-dark); background: #eff7ff; }
.button-outline-light { color: white; background: transparent; border-color: rgba(255,255,255,.58); box-shadow: none; }
.button-outline-light:hover { background: rgba(255,255,255,.1); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(49,199,214,.13), transparent 32%),
    linear-gradient(180deg, #fafdff 0%, #fff 82%);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(70px); opacity: .2; pointer-events: none; }
.hero-glow-one { width: 300px; height: 300px; background: var(--blue); left: -180px; top: 120px; }
.hero-glow-two { width: 260px; height: 260px; background: var(--cyan); right: -130px; bottom: 50px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: 13px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: currentColor; border-radius: 4px; }
.hero h1, .section-heading h2, .cta-card h2 { margin: 18px 0; letter-spacing: -.045em; line-height: 1.08; }
.hero h1 { max-width: 680px; font-size: clamp(43px, 5.4vw, 71px); }
.hero-lead { max-width: 670px; margin: 0 0 30px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 11px 21px; margin-top: 28px; color: #52627a; font-size: 13px; font-weight: 700; }
.hero-trust span::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }

.code-window { overflow: hidden; border: 1px solid rgba(180,206,235,.16); border-radius: 16px; background: #07192f; color: #d8e8ff; box-shadow: 0 28px 80px rgba(7,26,51,.25); }
.hero-code { transform: rotate(1deg); }
.code-topbar { min-height: 51px; display: flex; align-items: center; gap: 12px; padding: 0 17px; color: #9cb1cd; background: #0a213d; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 12px; font-weight: 700; }
.window-dots { display: flex; gap: 6px; margin-right: 5px; }
.window-dots i { width: 9px; height: 9px; border-radius: 50%; background: #ff6b6b; }
.window-dots i:nth-child(2) { background: #ffc65a; }
.window-dots i:nth-child(3) { background: #42d392; }
.copy-button { margin-left: auto; padding: 6px 10px; color: #bfcee2; background: transparent; border: 1px solid rgba(255,255,255,.14); border-radius: 7px; cursor: pointer; font-size: 11px; font-weight: 800; }
.copy-button:hover { border-color: var(--cyan); color: white; }
pre { margin: 0; padding: 25px; overflow-x: auto; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 13px; line-height: 1.9; }
.token-key { color: #75d5ff; }
.token-string { color: #b9e77d; }
.token-bool { color: #ff9bd4; }
.token-muted { color: #8ca1bd; }
.code-status { padding: 12px 17px; color: #9cb1cd; border-top: 1px solid rgba(255,255,255,.07); font-size: 11px; }
.code-status span { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #42d392; box-shadow: 0 0 12px #42d392; }

.carrier-strip { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; margin-top: 92px; padding: 27px 0; border-top: 1px solid var(--line); }
.carrier-strip p { margin: 0; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.carrier-list { display: flex; justify-content: space-between; align-items: center; gap: 24px; color: #35445c; }
.carrier-list span { font-size: 17px; font-weight: 900; letter-spacing: -.02em; }

.section { padding: 106px 0; }
.section-alt { background: var(--surface-alt); }
.section-heading { max-width: 590px; }
.section-heading.centered { max-width: 730px; margin: 0 auto 52px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2 { font-size: clamp(34px, 4vw, 52px); }
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; }
.section-heading.light { color: white; }
.section-heading.light p { color: #b9c9df; }
.text-link { display: inline-block; margin-top: 24px; color: var(--blue); font-weight: 800; text-decoration: none; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { min-height: 270px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 4px 15px rgba(17,42,79,.025); transition: transform .2s, box-shadow .2s, border-color .2s; }
.feature-card:hover { transform: translateY(-5px); border-color: #b8cdef; box-shadow: var(--shadow); }
.icon-box { width: 49px; height: 49px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 13px; color: var(--blue); background: #eaf3ff; }
.icon-box svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--muted); }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.steps { display: grid; gap: 15px; }
.step { display: grid; grid-template-columns: 74px 1fr; gap: 20px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.step-number { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 14px; color: var(--blue); background: #eaf3ff; font-size: 17px; font-weight: 900; }
.step h3 { margin: 1px 0 5px; font-size: 19px; }
.step p { margin: 0; color: var(--muted); }

.developer-section { background: linear-gradient(135deg, #06172c, #0b2a50); }
.developer-section .eyebrow { color: #5be2ee; }
.code-tabs { max-width: 900px; margin: auto; }
.tab-list { display: inline-flex; padding: 5px; border-radius: 11px 11px 0 0; background: #102f55; }
.tab { min-width: 105px; padding: 10px 16px; color: #a7bdd8; background: transparent; border: 0; border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 800; }
.tab.active { color: white; background: var(--blue); }
.tab-panel .code-window { border-radius: 0 16px 16px 16px; box-shadow: none; }
.developer-note { max-width: 900px; margin: 22px auto 0; padding: 14px 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 11px; color: #b9c9df; background: rgba(255,255,255,.04); font-size: 13px; }
.developer-note strong { color: white; }
.developer-note code { color: #75d5ff; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 445px; padding: 29px 25px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.price-card.featured { border: 2px solid var(--blue); box-shadow: var(--shadow); transform: translateY(-10px); }
.popular-label { position: absolute; top: 0; right: 24px; transform: translateY(-50%); padding: 6px 10px; border-radius: 999px; color: white; background: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.price-name { color: var(--blue); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.price { margin: 16px 0 3px; font-size: 43px; font-weight: 900; letter-spacing: -.05em; }
.price sup { font-size: 21px; vertical-align: 13px; }
.price span { margin-left: 4px; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: 0; }
.price-card > p { margin: 0; color: var(--muted); font-size: 14px; }
.price-card ul { flex: 1; margin: 25px 0 28px; padding: 0; list-style: none; }
.price-card li { position: relative; padding: 10px 0 10px 25px; border-bottom: 1px solid #edf1f7; color: #506077; font-size: 13px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.enterprise-card { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 35px; padding: 35px 39px; border-radius: var(--radius); color: white; background: linear-gradient(120deg, #0b274a, #1769e0); }
.enterprise-kicker { color: #76e5ef; font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.enterprise-card h3 { margin: 7px 0; font-size: 26px; }
.enterprise-card p { margin: 0; color: #d4e1f2; }
.pricing-note { margin: 20px auto 0; max-width: 850px; color: #7b8799; text-align: center; font-size: 12px; }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.accordion { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: white; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 22px; color: var(--ink); background: transparent; border: 0; cursor: pointer; text-align: left; font-weight: 800; }
.faq-question span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: #eaf3ff; font-size: 20px; transition: transform .2s; }
.faq-question[aria-expanded="true"] span { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.cta-section { padding: 0 0 105px; }
.cta-card { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 54px; border-radius: 25px; color: white; background:
  radial-gradient(circle at 90% 10%, rgba(49,199,214,.36), transparent 30%),
  linear-gradient(125deg, #0a2750, #1769e0);
  box-shadow: 0 25px 70px rgba(23,105,224,.2);
}
.cta-card h2 { margin: 10px 0 7px; font-size: clamp(31px, 4vw, 45px); }
.cta-card p { margin: 0; color: #d8e7fa; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

.site-footer { padding: 70px 0 25px; color: #aabbd0; background: #061426; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 60px; }
.brand-footer strong { color: white; }
.brand-footer small { color: #9cb1cd; }
.footer-grid > div:first-child p { max-width: 380px; margin-top: 18px; }
.footer-grid h3 { margin: 0 0 15px; color: white; font-size: 14px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { color: #aabbd0; text-decoration: none; font-size: 14px; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.footer-bottom a { color: #aabbd0; text-decoration: none; }

.legal-page { min-height: 68vh; padding: 80px 0 110px; background: var(--surface-alt); }
.legal-card { max-width: 850px; margin: auto; padding: 48px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow); }
.legal-card h1 { margin: 0 0 10px; font-size: 42px; letter-spacing: -.04em; }
.legal-card h2 { margin-top: 32px; }
.legal-card p, .legal-card li { color: var(--muted); }
.placeholder-warning { padding: 15px 18px; border-left: 4px solid #f79009; background: #fff7e8; color: #7a4d00; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .primary-nav { position: fixed; inset: 78px 0 auto 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 20px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .primary-nav > a:not(.button) { padding: 13px 4px; }
  .primary-nav .button { margin-top: 9px; }
  .menu-toggle { display: block; }
  .hero-grid, .split, .faq-layout { grid-template-columns: 1fr; gap: 55px; }
  .hero-code { max-width: 760px; transform: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .price-card.featured { transform: none; }
  .carrier-strip { grid-template-columns: 1fr; gap: 15px; }
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero { padding-top: 65px; }
  .hero h1 { font-size: 43px; }
  .hero-lead { font-size: 17px; }
  .hero-actions, .hero-actions .button, .cta-actions, .cta-actions .button { width: 100%; }
  .carrier-list { flex-wrap: wrap; justify-content: flex-start; gap: 15px 24px; }
  .section { padding: 78px 0; }
  .section-heading.centered { margin-bottom: 36px; }
  .feature-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .step { grid-template-columns: 55px 1fr; padding: 18px; }
  .step-number { width: 48px; height: 48px; }
  .enterprise-card, .cta-card { align-items: stretch; flex-direction: column; padding: 30px 24px; }
  .cta-actions { flex-direction: column; }
  .footer-grid { gap: 35px; }
  .footer-bottom { flex-direction: column; }
  .legal-card { padding: 28px 22px; }
  pre { padding: 20px; font-size: 12px; }
}

/* Blog */
.blog-hero { padding: 82px 0 70px; background: radial-gradient(circle at 78% 8%, rgba(49,199,214,.15), transparent 32%), linear-gradient(180deg, #f7fbff, #fff); }
.blog-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 70px; }
.blog-hero h1, .article-header h1 { margin: 18px 0; max-width: 850px; font-size: clamp(43px, 6vw, 68px); line-height: 1.03; letter-spacing: -.055em; }
.blog-hero-copy { max-width: 690px; color: var(--muted); font-size: 19px; }
.blog-topic-list { display: flex; flex-wrap: wrap; gap: 9px; justify-content: flex-end; }
.blog-topic-list span, .article-tag { padding: 8px 12px; border: 1px solid #cfe0f4; border-radius: 999px; color: var(--blue-dark); background: #fff; font-size: 12px; font-weight: 800; }
.blog-list-section { padding-top: 70px; }
.blog-list-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.blog-list-heading h2 { margin: 0; font-size: clamp(31px, 4vw, 44px); letter-spacing: -.04em; }
.blog-card { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; color: inherit; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 24px 65px rgba(17,42,79,.15); }
.blog-card-art { min-height: 340px; display: grid; place-items: center; padding: 40px; color: white; background: radial-gradient(circle at 85% 10%, rgba(49,199,214,.5), transparent 28%), linear-gradient(145deg, #071a33, #1769e0); }
.blog-card-art svg { width: min(230px, 70%); fill: none; stroke: currentColor; stroke-width: 1.35; opacity: .92; }
.blog-card-body { display: flex; flex-direction: column; justify-content: center; padding: 50px; }
.blog-meta { color: #718096; font-size: 13px; font-weight: 750; letter-spacing: .02em; }
.blog-card h3 { margin: 15px 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.1; letter-spacing: -.04em; }
.blog-card p { margin: 0; color: var(--muted); font-size: 17px; }
.blog-card .text-link { margin-top: 25px; }
.article-header { padding: 60px 0 55px; background: radial-gradient(circle at 75% 0%, rgba(49,199,214,.13), transparent 32%), #f8fbff; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: var(--blue); text-decoration: none; }
.article-header-inner { max-width: 930px; margin: 38px auto 0; }
.article-header h1 { font-size: clamp(42px, 6vw, 66px); }
.article-deck { max-width: 790px; color: var(--muted); font-size: 20px; }
.article-byline { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; margin-top: 27px; color: #64748b; font-size: 13px; }
.article-body { width: min(calc(100% - 40px), 790px); margin: 0 auto; padding: 72px 0 100px; }
.article-body h2 { margin: 52px 0 16px; font-size: 34px; line-height: 1.15; letter-spacing: -.035em; }
.article-body h3 { margin: 35px 0 12px; font-size: 24px; letter-spacing: -.025em; }
.article-body p, .article-body li { color: #42526a; font-size: 18px; }
.article-body a { color: var(--blue-dark); font-weight: 700; }
.article-body ul { margin: 20px 0 30px; padding-left: 24px; }
.article-body li { margin: 8px 0; padding-left: 4px; }
.article-table-wrap { overflow-x: auto; margin: 32px 0; border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: 0 10px 30px rgba(17,42,79,.06); }
.article-table { width: 100%; min-width: 860px; border-collapse: collapse; font-size: 14px; line-height: 1.45; }
.article-table th, .article-table td { padding: 15px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-table thead th { color: white; background: var(--navy-2); font-size: 12px; letter-spacing: .025em; }
.article-table tbody th { color: var(--ink); background: #f7faff; }
.article-table tbody tr:last-child th, .article-table tbody tr:last-child td { border-bottom: 0; }
.article-table td { color: #526176; }
.article-callout { margin: 36px 0; padding: 26px 28px; border: 1px solid #cfe0f4; border-left: 4px solid var(--blue); border-radius: 13px; background: #f5f9ff; }
.article-callout p { margin: 0; }
.article-cta { margin-top: 62px; padding: 34px; border-radius: 20px; color: white; background: linear-gradient(130deg, #0a2750, #1769e0); }
.article-cta h2 { margin-top: 0; }
.article-cta p { color: #d8e7fa; }

@media (max-width: 1000px) {
  .blog-hero-grid, .blog-card { grid-template-columns: 1fr; }
  .blog-topic-list { justify-content: flex-start; }
  .blog-card-art { min-height: 260px; }
}

@media (max-width: 700px) {
  .blog-hero { padding-top: 58px; }
  .blog-list-heading { align-items: flex-start; flex-direction: column; }
  .blog-card-body { padding: 30px 24px; }
  .blog-card-art { min-height: 215px; }
  .article-body { width: min(calc(100% - 28px), 790px); padding-top: 50px; }
  .article-body p, .article-body li { font-size: 17px; }
  .article-cta { padding: 28px 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}


.value-section { background: linear-gradient(180deg, #ffffff, #f7faff); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 24px rgba(17,42,79,.05);
}
.value-number {
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}
.value-card h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.02em; }
.value-card p { margin: 0; color: var(--muted); }

.founder-section { background: #fff; }
.founder-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.founder-copy h2 { margin: 18px 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.founder-copy > p { color: var(--muted); font-size: 18px; }
.founder-list { margin: 28px 0 32px; padding: 0; list-style: none; }
.founder-list li { position: relative; padding: 10px 0 10px 31px; color: #41516a; font-weight: 700; }
.founder-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.founder-panel {
  padding: 38px;
  border-radius: 22px;
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(49,199,214,.26), transparent 35%),
    linear-gradient(145deg, #071a33, #0b2f5e);
  box-shadow: 0 24px 70px rgba(7,26,51,.2);
}
.panel-kicker { color: #73e3ec; font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.founder-panel blockquote { margin: 19px 0 30px; font-size: 29px; line-height: 1.3; font-weight: 850; letter-spacing: -.03em; }
.panel-points { display: grid; gap: 13px; }
.panel-points div { padding: 16px 17px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.045); }
.panel-points strong, .panel-points span { display: block; }
.panel-points strong { font-size: 15px; }
.panel-points span { margin-top: 3px; color: #b9c9df; font-size: 13px; }

@media (max-width: 1000px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: auto; }
  .founder-panel { padding: 28px 23px; }
  .founder-panel blockquote { font-size: 24px; }
}
