/* ============================================================
   BOWTIE — shared design system
   Built on the real brand palette (cyan #00b2d8 / logo cyan
   #62D6FB, the neutral ramp, IBM Plex Mono) and evolved toward
   a restrained, enterprise-credible, modern-cyber aesthetic.
   One accent, generous whitespace, soft shadows, sentence-case.
   ============================================================ */
:root {
  --ink:        #101219;
  --ink-2:      #161820;
  --ink-3:      #2d303c;
  --slate:      #59636e;
  --slate-2:    #808892;
  --line:       #ebedf2;
  --line-2:     #cdd3db;
  --bg:         #ffffff;
  --bg-soft:    #f8f8f8;
  --bg-tint:    #f4fbfd;
  --cyan:       #00b2d8;
  --cyan-deep:  #0093b8;
  --cyan-bright:#3ccdef;   /* for dark surfaces */
  --cyan-logo:  #62d6fb;
  --cyan-light: #d5f5ff;
  --blue:       #0082f3;
  --grad:       linear-gradient(135deg, #00b2d8 0%, #0082f3 100%);
  --shadow-sm:  0 1px 2px rgba(16,18,25,.06), 0 1px 3px rgba(16,18,25,.04);
  --shadow-md:  0 4px 12px rgba(16,18,25,.08), 0 2px 4px rgba(16,18,25,.04);
  --shadow-lg:  0 18px 50px rgba(16,18,25,.16), 0 6px 16px rgba(16,18,25,.08);
  --radius:     10px;
  --radius-sm:  7px;
  --maxw:       1180px;
  --ease:       cubic-bezier(.22,.61,.36,1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink); background: var(--bg);
  line-height: 1.6; font-size: 17px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
h1,h2,h3,h4 { font-family: 'Inter Tight','Inter',sans-serif; font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.mono { font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 500; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.link { color: var(--cyan-deep); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.link:hover { color: var(--ink); }
.arrow { transition: transform .18s var(--ease); }
.link:hover .arrow, .btn:hover .arrow { transform: translateX(3px); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter',sans-serif; font-weight: 600; font-size: .95rem; padding: 12px 22px; border-radius: var(--radius-sm); border: 1px solid transparent; cursor: pointer; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease); white-space: nowrap; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); background: #000; }
.btn--accent { background: var(--cyan); color: var(--ink); }
.btn--accent:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,178,216,.35); background: var(--cyan-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn--ghost-light { background: rgba(255,255,255,.04); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--ghost-light:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- announcement strip ---------- */
.strip { background: var(--ink-2); color: rgba(255,255,255,.82); font-size: .86rem; text-align: center; padding: 9px 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
.strip a { color: #fff; font-weight: 600; }
.strip a:hover { color: var(--cyan-bright); }

/* ---------- header ---------- */
.header { position: sticky; top: 0; z-index: 100; transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); border-bottom: 1px solid transparent; }
.header__inner { display: flex; align-items: center; gap: 36px; height: 70px; }
.brand { display: flex; align-items: center; flex: none; }
.brand .logo { height: 27px; width: auto; }
.brand .logo--dark { display: none; }
.nav { display: flex; gap: 28px; margin-left: 6px; }
.nav a { font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.82); transition: color .2s var(--ease); }
.nav a:hover, .nav a.is-active { color: #fff; }
.header__cta { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.header__signin { font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.82); }
.header__signin:hover { color: #fff; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.burger span { width: 22px; height: 2px; background: #fff; transition: background .25s; }
/* solid state */
.header.is-solid { background: rgba(255,255,255,.88); backdrop-filter: saturate(180%) blur(12px); border-bottom-color: var(--line); }
.header.is-solid .nav a, .header.is-solid .header__signin { color: var(--slate); }
.header.is-solid .nav a:hover, .header.is-solid .nav a.is-active { color: var(--ink); }
.header.is-solid .btn--accent { color: var(--ink); }
.header.is-solid .burger span { background: var(--ink); }
.header.is-solid .logo--light { display: none; }
.header.is-solid .logo--dark { display: block; }

/* mobile menu */
.mobile-menu { display: none; position: fixed; inset: 70px 0 0; background: var(--bg); z-index: 99; padding: 24px 28px; flex-direction: column; gap: 2px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Inter Tight'; font-weight: 600; font-size: 1.3rem; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu .btn { margin-top: 20px; justify-content: center; }

/* ============================================================
   HERO (dark) — used on home + product
   ============================================================ */
.hero { background: var(--ink); color: #fff; margin-top: -70px; padding: 134px 0 96px; overflow: hidden; position: relative; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 78% 6%, rgba(0,178,216,.22), transparent 60%), radial-gradient(40% 40% at 10% 92%, rgba(0,130,243,.14), transparent 60%); pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 80%); mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 80%); pointer-events: none; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr 1fr; gap: 56px; align-items: center; }
.hero__eyebrow { color: var(--cyan-bright); margin-bottom: 22px; display: inline-block; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 3.85rem); font-weight: 800; margin-bottom: 22px; }
.hero h1 .accent { color: var(--cyan-bright); }
.hero__sub { font-size: 1.16rem; color: rgba(255,255,255,.74); max-width: 36ch; margin-bottom: 34px; line-height: 1.55; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__proof { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero__proof div { display: flex; flex-direction: column; }
.hero__proof b { font-family: 'Inter Tight'; font-size: 1.5rem; font-weight: 700; color: #fff; }
.hero__proof span { font-size: .82rem; color: rgba(255,255,255,.55); }
.hero__media { position: relative; z-index: 1; }
.hero__media img { border-radius: 12px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08); }

/* ---------- architecture diagram ---------- */
.diagram { background: #fff; color: var(--ink); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 22px; display: grid; gap: 16px; }
.diagram__row { border: 1px solid var(--line); border-radius: 12px; padding: 16px; position: relative; }
.diagram__row--bowtie { border-color: rgba(0,178,216,.45); background: var(--bg-tint); box-shadow: inset 0 0 0 1px rgba(0,178,216,.12); }
.diagram__tag { display: inline-block; margin-bottom: 14px; color: var(--slate-2); }
.diagram__row--bowtie .diagram__tag { color: var(--cyan-deep); }
.flow { display: flex; align-items: stretch; gap: 0; }
.fnode { flex: 1; text-align: center; border: 1px solid var(--line-2); border-radius: 9px; padding: 12px 8px; font-size: .82rem; font-weight: 600; background: #fff; line-height: 1.25; display: flex; flex-direction: column; justify-content: center; }
.fnode small { display: block; font-weight: 400; font-size: .67rem; color: var(--slate-2); margin-top: 3px; }
.fnode--cloud { border-color: var(--line-2); background: var(--bg-soft); color: var(--slate); }
.diagram__row--bowtie .fnode { border-color: rgba(0,178,216,.4); }
.fline { flex: 0 0 48px; align-self: center; height: 2px; position: relative; }
.fline--muted { background: repeating-linear-gradient(90deg, var(--line-2) 0 5px, transparent 5px 10px); }
.fline--live { flex-basis: 150px; height: 2px; background: var(--grad); border-radius: 2px; box-shadow: 0 0 10px rgba(0,178,216,.5); }
.fline--live::after { content: ""; position: absolute; right: -1px; top: 50%; width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; transform: translateY(-50%); box-shadow: 0 0 8px var(--cyan); }
.fline__tag { position: absolute; top: -21px; left: 50%; transform: translateX(-50%); white-space: nowrap; color: var(--cyan-deep); display: inline-flex; align-items: center; gap: 4px; }
.fline__tag svg { width: 11px; height: 11px; }
/* management band: centralized control, out of the data path */
.mgmt { display: flex; align-items: center; justify-content: center; gap: 9px; background: #fff; border: 1px dashed rgba(0,178,216,.5); border-radius: 8px; padding: 9px 14px; margin-bottom: 4px; }
.mgmt svg { width: 15px; height: 15px; color: var(--cyan-deep); flex: none; }
.mgmt__label { color: var(--ink); font-weight: 600; font-size: .78rem; }
.mgmt__drop { width: 0; height: 16px; margin: 0 auto; border-left: 2px dotted var(--line-2); }
.diagram__note { display: block; margin-top: 12px; font-size: .78rem; color: var(--slate); }
.diagram__row--legacy .diagram__note { color: var(--slate-2); }
.diagram__row--bowtie .diagram__note { color: var(--ink); font-weight: 500; }

/* ============================================================
   light page hero (pricing)
   ============================================================ */
.subhero { padding: 84px 0 36px; text-align: center; }
.subhero .mono { color: var(--cyan-deep); display: block; margin-bottom: 16px; }
.subhero h1 { font-size: clamp(2.2rem, 4.4vw, 3.2rem); margin-bottom: 18px; }
.subhero h1 .accent { color: var(--cyan-deep); }
.subhero p { font-size: 1.16rem; color: var(--slate); max-width: 620px; margin: 0 auto; }

/* ---------- generic sections ---------- */
.sec { padding: 104px 0; }
.sec--soft { background: var(--bg-soft); }
.sec--dark { background: var(--ink); color: #fff; }
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .mono { color: var(--cyan-deep); display: block; margin-bottom: 16px; }
.sec-head h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); margin-bottom: 18px; }
.sec-head h2 .accent { color: var(--cyan-deep); }
.sec-head p { font-size: 1.12rem; color: var(--slate); }

/* ---------- problem cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card__ic { width: 42px; height: 42px; border-radius: 10px; background: var(--bg-tint); color: var(--cyan-deep); display: grid; place-items: center; margin-bottom: 18px; }
.card__ic svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.14rem; margin-bottom: 9px; }
.card p { font-size: .96rem; color: var(--slate); }

/* ---------- platform pillars (home, 2x2) ---------- */
.pillars { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.pillar { background: #fff; padding: 38px 34px; transition: background .2s; }
.pillar:hover { background: var(--bg-soft); }
.pillar__tag { color: var(--cyan-deep); margin-bottom: 16px; display: block; }
.pillar h3 { font-size: 1.4rem; margin-bottom: 12px; }
.pillar p { color: var(--slate); font-size: 1rem; }

/* ---------- feature rows (product, alternating text/media) ---------- */
.frow { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; padding: 64px 0; }
.frow + .frow { border-top: 1px solid var(--line); }
.frow--rev .frow__body { order: 2; }
.frow__eyebrow { color: var(--cyan-deep); display: block; margin-bottom: 14px; }
.frow__body h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: 16px; }
.frow__body p { color: var(--slate); font-size: 1.05rem; margin-bottom: 22px; }
.frow__media img { border-radius: 12px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: var(--bg-soft); }

/* ---------- differentiator split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__head .mono { color: var(--cyan-deep); display: block; margin-bottom: 16px; }
.split__head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 18px; }
.split__head p { font-size: 1.12rem; color: var(--slate); margin-bottom: 30px; }
.proof-list { display: grid; gap: 24px; }
.proof-item { display: flex; gap: 16px; }
.proof-item .dot { flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--grad); display: grid; place-items: center; }
.proof-item .dot svg { width: 16px; height: 16px; }
.proof-item h4 { font-family: 'Inter Tight'; font-size: 1.08rem; font-weight: 700; margin-bottom: 4px; }
.proof-item p { color: var(--slate); font-size: .97rem; }

/* ---------- stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; text-align: center; }
.stat b { display: block; font-family: 'Inter Tight'; font-weight: 800; font-size: clamp(2rem,4vw,2.9rem); letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { color: var(--slate); font-size: .95rem; }

/* ---------- comparison table ---------- */
.compare { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 16px 20px; text-align: left; font-size: .93rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { font-family: 'Inter Tight'; font-weight: 700; font-size: 1rem; color: var(--ink); }
.compare thead th:first-child { color: var(--slate-2); font-weight: 500; font-size: .82rem; }
.compare thead .col-bowtie .logo { height: 24px; }
.compare tbody th { font-weight: 500; color: var(--slate); width: 22%; }
.compare td { color: var(--slate); }
.compare .col-bowtie { background: var(--bg-tint); color: var(--ink); font-weight: 600; border-left: 1px solid rgba(0,178,216,.25); border-right: 1px solid rgba(0,178,216,.25); }
.compare thead .col-bowtie { color: var(--cyan-deep); text-align: left; }
.compare tbody tr:last-child td, .compare tbody tr:last-child th { border-bottom: 0; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px 28px; display: flex; flex-direction: column; }
.plan--featured { border-color: var(--cyan); box-shadow: 0 0 0 1px var(--cyan), var(--shadow-lg); position: relative; }
.plan__badge { position: absolute; top: -12px; left: 28px; background: var(--cyan); color: var(--ink); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 5px 11px; border-radius: 20px; }
.plan__name { font-family: 'Inter Tight'; font-weight: 700; font-size: 1.3rem; margin-bottom: 10px; }
.plan__price { font-family: 'Inter Tight'; font-weight: 800; font-size: 2.6rem; letter-spacing: -0.03em; line-height: 1; }
.plan__unit { color: var(--slate-2); font-size: .9rem; margin-top: 6px; margin-bottom: 24px; }
.plan .btn { margin-bottom: 26px; }
.plan__group { color: var(--slate-2); display: block; margin: 18px 0 10px; padding-top: 16px; border-top: 1px solid var(--line); }
.plan__group:first-of-type { border-top: 0; padding-top: 0; }
.feat { list-style: none; display: grid; gap: 2px; }
.feat__row { border-bottom: 1px solid var(--line); }
.feat__row:last-child { border-bottom: 0; }
.feat__q { display: flex; align-items: center; gap: 10px; padding: 11px 0; cursor: pointer; font-size: .95rem; font-weight: 500; }
.feat__q .check { flex: none; width: 17px; height: 17px; color: var(--cyan-deep); }
.feat__q .chev { margin-left: auto; width: 15px; height: 15px; color: var(--slate-2); transition: transform .2s var(--ease); flex: none; }
.feat__row.open .feat__q .chev { transform: rotate(180deg); }
.feat__a { max-height: 0; overflow: hidden; transition: max-height .25s var(--ease); }
.feat__row.open .feat__a { max-height: 220px; }
.feat__a p { color: var(--slate); font-size: .86rem; padding: 0 0 12px 27px; line-height: 1.5; }

/* ---------- testimonial ---------- */
.quote { max-width: 840px; margin: 0 auto; text-align: center; }
.quote .mono { color: var(--cyan-deep); display: block; margin-bottom: 24px; }
.quote p { font-family: 'Inter Tight'; font-weight: 600; font-size: clamp(1.4rem,2.8vw,2rem); line-height: 1.32; letter-spacing: -0.02em; margin-bottom: 26px; }
.quote cite { color: var(--slate); font-weight: 600; font-style: normal; }

/* ---------- closing CTA ---------- */
.cta-band { background: var(--ink); color: #fff; padding: 96px 0; overflow: hidden; position: relative; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 70% at 50% 0%, rgba(0,178,216,.18), transparent 65%); pointer-events: none; }
.cta-band .inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem,3.6vw,2.8rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.72); font-size: 1.14rem; margin-bottom: 34px; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.62); padding: 64px 0 40px; border-top: 1px solid rgba(255,255,255,.07); }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand .logo { height: 28px; margin-bottom: 16px; }
.footer__desc { font-size: .95rem; max-width: 34ch; line-height: 1.6; margin-bottom: 20px; }
.footer__social { display: flex; gap: 14px; }
.footer__social a { color: rgba(255,255,255,.6); transition: color .18s; }
.footer__social a:hover { color: #fff; }
.footer__social svg { width: 20px; height: 20px; }
.footer__col h5 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 16px; font-weight: 600; }
.footer__col a { display: block; font-size: .95rem; color: rgba(255,255,255,.7); padding: 5px 0; transition: color .18s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .86rem; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 12px; }
.footer__bottom a { color: rgba(255,255,255,.45); }
.footer__bottom a:hover { color: #fff; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__sub { max-width: none; }
  .frow, .split { grid-template-columns: 1fr; gap: 36px; }
  .frow--rev .frow__body { order: 0; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 36px 28px; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .nav, .header__signin { display: none; }
  .burger { display: flex; }
  .header__cta .btn--accent { display: none; }
  .cards, .pillars { grid-template-columns: 1fr; }
  .sec { padding: 72px 0; }
  .hero { padding-bottom: 72px; }
  .compare { overflow-x: auto; }
  .compare table { min-width: 680px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .flow { flex-direction: column; gap: 0; }
  .fnode { width: 100%; }
  .fline { flex-basis: 24px !important; width: 2px; height: 24px; align-self: center; }
  .fline--muted { background: repeating-linear-gradient(180deg, var(--line-2) 0 5px, transparent 5px 10px); }
  .fline--live { width: 2px; background: var(--grad); }
  .fline__tag { display: none; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .hero__proof { gap: 18px; }
}

/* ============================================================
   blog index + posts
   ============================================================ */
.bloglist { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blogcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.blogcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.blogcard__img { aspect-ratio: 16/9; background: var(--bg-soft); overflow: hidden; }
.blogcard__img img { width: 100%; height: 100%; object-fit: cover; }
.blogcard__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blogcard__meta { color: var(--cyan-deep); }
.blogcard__body h3 { font-size: 1.18rem; line-height: 1.28; }
.blogcard__body p { color: var(--slate); font-size: .94rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blogcard--featured { grid-column: 1 / -1; flex-direction: row; }
.blogcard--featured .blogcard__img { flex: 1 1 56%; aspect-ratio: auto; min-height: 340px; }
.blogcard--featured .blogcard__body { flex: 1 1 44%; justify-content: center; padding: 44px; gap: 14px; }
.blogcard--featured h3 { font-size: 1.8rem; }
.blogcard--featured p { font-size: 1.02rem; -webkit-line-clamp: 4; }

.post { padding-top: 52px; }
.post__head { max-width: 760px; }
.post__back { color: var(--slate); font-weight: 600; font-size: .9rem; display: inline-block; margin-bottom: 26px; }
.post__back:hover { color: var(--ink); }
.post__meta { color: var(--cyan-deep); display: block; margin-bottom: 16px; }
.post__head h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.post__summary { font-size: 1.2rem; color: var(--slate); line-height: 1.5; }
.post__hero { margin: 44px auto; }
.post__hero img { width: 100%; border-radius: 14px; border: 1px solid var(--line); }
.post__body { padding-bottom: 24px; }
.prose { max-width: 720px; margin: 0 auto; }
.prose > * + * { margin-top: 1.15em; }
.prose p, .prose ul, .prose ol { color: var(--ink-2); font-size: 1.08rem; line-height: 1.72; }
.prose h2 { font-size: 1.55rem; margin-top: 1.8em; letter-spacing: -0.01em; }
.prose h3 { font-size: 1.28rem; margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose a { color: var(--cyan-deep); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--ink); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose img { width: 100%; border-radius: 10px; border: 1px solid var(--line); margin: 1.5em 0; }
.prose blockquote { border-left: 3px solid var(--cyan); padding-left: 20px; color: var(--slate); font-style: italic; }
.prose code { font-family: 'IBM Plex Mono', monospace; font-size: .9em; background: var(--bg-soft); padding: 2px 6px; border-radius: 5px; }
.prose pre { background: var(--ink); color: #e6e6e6; padding: 18px; border-radius: 10px; overflow-x: auto; }
.prose pre code { background: none; padding: 0; color: inherit; }
@media (max-width: 940px) {
  .bloglist { grid-template-columns: 1fr 1fr; }
  .blogcard--featured { flex-direction: column; }
  .blogcard--featured .blogcard__img { min-height: 220px; aspect-ratio: 16/9; }
  .blogcard--featured .blogcard__body { padding: 28px; }
}
@media (max-width: 640px) { .bloglist { grid-template-columns: 1fr; } }

/* ============================================================
   company / download / contact / legal
   ============================================================ */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.team { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.teamcard { width: 230px; text-align: center; }
.teamcard__img { width: 100%; aspect-ratio: 1; border-radius: 14px; object-fit: cover; background: var(--bg-soft); border: 1px solid var(--line); margin-bottom: 16px; }
.teamcard h3 { font-size: 1.1rem; margin-bottom: 2px; }
.teamcard span { color: var(--cyan-deep); font-size: .85rem; font-weight: 500; }
.backers { display: flex; flex-wrap: wrap; gap: 18px 44px; align-items: center; justify-content: center; }
.backers a { font-family: 'Inter Tight'; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.01em; color: var(--line-2); transition: color .2s; }
.backers a:hover { color: var(--slate); }
.dl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.dl-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px 28px; }
.dl-card__ic { width: 44px; height: 44px; margin-bottom: 18px; color: var(--ink); }
.dl-card h3 { font-size: 1.25rem; margin-bottom: 18px; }
.dl-card .btn { margin-bottom: 24px; }
.dl-steps { list-style: none; counter-reset: s; display: grid; gap: 14px; }
.dl-steps li { counter-increment: s; position: relative; padding-left: 34px; font-size: .92rem; color: var(--slate); line-height: 1.55; }
.dl-steps li::before { content: counter(s); position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--bg-tint); color: var(--cyan-deep); font-weight: 700; font-size: .76rem; display: grid; place-items: center; }
.dl-steps code, .dl-card code { font-family: 'IBM Plex Mono', monospace; font-size: .85em; background: var(--bg-soft); padding: 1px 5px; border-radius: 4px; color: var(--ink); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 760px; margin: 0 auto; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 38px 32px; text-align: center; }
.contact-card__ic { width: 44px; height: 44px; margin: 0 auto 18px; color: var(--cyan-deep); }
.contact-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.contact-card p { color: var(--slate); margin-bottom: 24px; font-size: .96rem; }
.legal { padding: 56px 0 24px; }
.legal__head { max-width: 720px; margin: 0 auto 36px; }
.legal__head h1 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom: 12px; }
.legal__head p { color: var(--slate-2); }
@media (max-width: 860px) { .twocol { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 760px) { .team { grid-template-columns: 1fr 1fr; } .dl-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }
