/* ─── Custom Properties ──────────────────────────────────────────────────── */
:root {
  --navy-900: #141A2E;
  --navy-800: #1C2540;
  --navy-700: #283356;
  --paper:    #F6F1E7;
  --paper-2:  #FBF8F0;
  --rule:     #C7D4E6;
  --azure:    #1975F5;
  --azure-bright: #3C8EFF;
  --gold:     #C8A046;
  --ink:      #1E2A4A;
  --ink-muted: #4A5A7A;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --container: min(1160px, calc(100% - 48px));
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-card: 0 2px 8px rgba(20,26,46,.08), 0 0 0 1px rgba(20,26,46,.06);
  --shadow-lift: 0 12px 32px rgba(20,26,46,.14), 0 0 0 1px rgba(20,26,46,.08);
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Utilities ──────────────────────────────────────────────────────────── */
.container { width: var(--container); margin-inline: auto; }

.section { padding-block: 110px; }
.section--dark  { background: var(--navy-900); color: var(--paper); }
.section--paper { background: var(--paper-2); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold); }

h2.display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.section--dark h2.display { color: var(--paper); }

.lead {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.72;
  max-width: 520px;
}
.section--dark .lead { color: rgba(246,241,231,.65); }

/* ─── Soon pill ──────────────────────────────────────────────────────────── */
.soon {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,160,70,.1);
  border: 1px solid rgba(200,160,70,.3);
  border-radius: 100px;
  padding: 1px 7px;
  margin-left: 7px;
  vertical-align: middle;
  line-height: 1.9;
}

/* ─── Scroll reveal ──────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--delay, 0ms);
}
[data-reveal].revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s, box-shadow .3s;
}
.header.scrolled {
  background: rgba(20,26,46,.88);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  box-shadow: 0 1px 0 rgba(255,255,255,.07);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__mark {
  width: 34px; height: 34px;
  background: var(--navy-700);
  border: 1px solid rgba(200,160,70,.35);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--paper);
  line-height: 1;
  flex-shrink: 0;
}
.logo__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -.01em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(246,241,231,.6);
  transition: color .2s;
}
.header__nav a:hover { color: var(--paper); }
.header__nav .nav-accent { color: var(--azure-bright); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: var(--navy-900);
  background-image: radial-gradient(circle at 1px 1px, rgba(199,212,230,.11) 1px, transparent 0);
  background-size: 32px 32px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--paper-2));
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__text { padding-block: 48px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--azure-bright);
  background: rgba(25,117,245,.12);
  border: 1px solid rgba(60,142,255,.28);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 30px;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--azure-bright);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(.75); }
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.04;
  color: var(--paper);
  letter-spacing: -.025em;
  margin-bottom: 22px;
}
.hero__h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: 18px;
  color: rgba(246,241,231,.6);
  line-height: 1.72;
  max-width: 400px;
  margin-bottom: 48px;
}

.hero__hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(246,241,231,.28);
  letter-spacing: .04em;
}
.hero__hint-arrow {
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ─── Canvas notepad ─────────────────────────────────────────────────────── */
.canvas-wrap { position: relative; }

.canvas-notepad {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  transform: rotate(1.2deg);
  transform-origin: center top;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.1),
    0 48px 96px rgba(0,0,0,.55),
    0 16px 32px rgba(0,0,0,.28);
  position: relative;
}

.canvas-binding {
  height: 36px;
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-shrink: 0;
}
.canvas-binding__hole {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: inset 0 1px 3px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.07);
}

.canvas-body { position: relative; }

#ink-canvas {
  display: block;
  width: 100%;
  height: 320px;
  cursor: crosshair;
  touch-action: none;
  position: relative;
  z-index: 1;
}

.canvas-hint {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  text-align: center;
  transition: opacity .5s ease;
  z-index: 2;
}
.canvas-hint__icon { font-size: 30px; opacity: .25; display: block; margin-bottom: 6px; }
.canvas-hint__text { font-size: 12px; color: var(--ink-muted); opacity: .45; letter-spacing: .03em; }

.canvas-controls {
  position: absolute;
  bottom: 10px; right: 10px;
  z-index: 4;
}
.canvas-btn {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  background: rgba(246,241,231,.92);
  border: 1px solid rgba(20,26,46,.14);
  border-radius: var(--r-sm);
  padding: 5px 12px;
  transition: all .15s;
}
.canvas-btn:hover {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(20,26,46,.1);
}

/* ─── Features bento ─────────────────────────────────────────────────────── */
.features { background: var(--paper-2); padding-block: 120px; }

.features__hdr {
  text-align: center;
  margin-bottom: 60px;
}
.features__hdr h2 { margin-inline: auto; }
.features__hdr .lead { margin-inline: auto; text-align: center; }

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 200px);
  gap: 14px;
}

/* Explicit placements */
.b-ink    { grid-column: 1/3; grid-row: 1/3; }
.b-lasso  { grid-column: 3;   grid-row: 1; }
.b-laser  { grid-column: 4;   grid-row: 1; }
.b-pdf    { grid-column: 3/5; grid-row: 2; }
.b-sbs    { grid-column: 1/3; grid-row: 3; }
.b-lib    { grid-column: 3;   grid-row: 3/5; }
.b-tmpl   { grid-column: 4;   grid-row: 3; }
.b-local  { grid-column: 1;   grid-row: 4; }
.b-dark   { grid-column: 2;   grid-row: 4; }
.b-undo   { grid-column: 4;   grid-row: 4; }

.bento-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.bento-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.bento-card--dark {
  background: var(--navy-900);
  color: var(--paper);
}
.bento-card--navy { background: var(--navy-800); color: var(--paper); }
.bento-card--gold-tint { background: rgba(200,160,70,.07); }

.bento-art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
  min-height: 0;
}
.bento-art svg { max-height: 100%; }

.bento-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 3px;
}
.bento-card--dark .bento-label,
.bento-card--navy .bento-label { color: var(--azure-bright); }

.bento-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 5px;
}
.bento-card--dark .bento-title,
.bento-card--navy .bento-title { color: var(--paper); }

.bento-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.bento-card--dark .bento-desc,
.bento-card--navy .bento-desc { color: rgba(246,241,231,.55); }

/* ─── Spotlight ──────────────────────────────────────────────────────────── */
.spotlight { padding-block: 120px; }

.spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.spotlight--flip .spotlight__inner { direction: rtl; }
.spotlight--flip .spotlight__inner > * { direction: ltr; }

.spotlight__visual {
  background: var(--paper-2);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.section--dark .spotlight__visual {
  background: var(--navy-700);
  box-shadow: none;
}

.spotlight__text { max-width: 460px; }
.spotlight__text p { color: var(--ink-muted); line-height: 1.7; margin-bottom: 16px; }
.section--dark .spotlight__text p { color: rgba(246,241,231,.6); }

/* ─── Private band ───────────────────────────────────────────────────────── */
.private-band {
  padding-block: 130px;
  background-color: var(--navy-900);
  background-image: radial-gradient(circle at 1px 1px, rgba(199,212,230,.07) 1px, transparent 0);
  background-size: 32px 32px;
  color: var(--paper);
  text-align: center;
}

.private-band__lock {
  width: 68px; height: 68px;
  background: rgba(200,160,70,.12);
  border: 2px solid rgba(200,160,70,.28);
  border-radius: var(--r-lg);
  display: grid;
  place-items: center;
  margin: 0 auto 36px;
  font-size: 30px;
}

.private-band h2 { margin-inline: auto; }
.private-band .lead { margin-inline: auto; margin-bottom: 56px; text-align: center; }

.private-pillars {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 170px;
  text-align: center;
}
.pillar__icon { font-size: 22px; opacity: .75; }
.pillar__label { font-size: 15px; font-weight: 600; color: var(--paper); }
.pillar__note  { font-size: 13px; color: rgba(246,241,231,.45); line-height: 1.45; }

/* ─── iPad frame ─────────────────────────────────────────────────────────── */
.ipad-section { padding-block: 120px; text-align: center; }
.ipad-section h2, .ipad-section .lead { margin-inline: auto; text-align: center; }
.ipad-section .lead { margin-bottom: 0; }

.ipad-frame {
  display: inline-block;
  margin-top: 64px;
  background: #1C1C1E;
  border-radius: 36px;
  padding: 16px;
  box-shadow:
    0 80px 160px rgba(20,26,46,.22),
    0 0 0 1px rgba(255,255,255,.1),
    inset 0 0 0 1px rgba(0,0,0,.8);
  position: relative;
}
.ipad-frame__camera {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2C2C2E;
  z-index: 2;
}
.ipad-frame__screen {
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
  width: 600px;
  height: 440px;
  display: grid;
  grid-template-columns: 200px 1fr;
}

/* Simulated app inside frame */
.sim-sidebar {
  background: var(--navy-800);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sim-sidebar__eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(246,241,231,.3);
  padding: 4px 8px;
  margin-bottom: 2px;
}
.sim-sidebar__item {
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 12px;
  color: rgba(246,241,231,.6);
  gap: 8px;
}
.sim-sidebar__item--active {
  background: rgba(25,117,245,.18);
  color: var(--azure-bright);
}
.sim-sidebar__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.sim-canvas {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
/* Ruled lines in sim canvas */
.sim-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 27px,
    var(--rule) 27px,
    var(--rule) 28px
  );
  opacity: .5;
}
.sim-canvas::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 44px;
  width: 1px;
  background: #E5ADAD;
  opacity: .5;
}

.sim-toolbar {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 100px;
  display: flex;
  gap: 2px;
  padding: 4px;
  box-shadow: 0 2px 16px rgba(20,26,46,.12), 0 0 0 1px rgba(20,26,46,.06);
  z-index: 2;
}
.tool-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  transition: background .12s;
  color: var(--ink-muted);
}
.tool-btn:hover  { background: var(--paper); }
.tool-btn.active { background: var(--paper); color: var(--azure); }

/* Ink strokes in sim canvas */
.sim-strokes {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ─── Coming soon ────────────────────────────────────────────────────────── */
.coming-soon {
  background: var(--paper-2);
  padding-block: 100px;
}
.coming-soon__hdr {
  margin-bottom: 48px;
}
.coming-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.coming-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .25s, transform .25s;
}
.coming-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.coming-card__icon { font-size: 24px; }
.coming-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}
.coming-card__desc { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: 56px;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__tagline {
  font-size: 13px;
  color: rgba(246,241,231,.35);
  margin-top: 8px;
  max-width: 220px;
  line-height: 1.5;
}
.footer__links {
  display: flex;
  gap: 28px;
  align-items: center;
  padding-top: 8px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(246,241,231,.45);
  transition: color .2s;
}
.footer__links a:hover { color: var(--paper); }
.footer__copy {
  font-size: 12px;
  color: rgba(246,241,231,.2);
  margin-top: 40px;
  text-align: center;
}

/* ─── Interior pages (privacy, support) ──────────────────────────────────── */
.page-hero {
  padding-block: 120px 80px;
  background: var(--navy-900);
  background-image: radial-gradient(circle at 1px 1px, rgba(199,212,230,.09) 1px, transparent 0);
  background-size: 32px 32px;
  color: var(--paper);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.page-hero .lead { color: rgba(246,241,231,.6); }

.prose {
  padding-block: 80px;
  max-width: 720px;
  margin-inline: auto;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 14px;
}
.prose p  { color: var(--ink-muted); line-height: 1.75; margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { color: var(--ink-muted); line-height: 1.75; margin-bottom: 6px; list-style: disc; }
.prose a  { color: var(--azure); text-decoration: underline; }
.prose strong { color: var(--ink); font-weight: 600; }

.faq { max-width: 720px; margin-inline: auto; padding-bottom: 80px; }
.faq h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.faq-item { border-top: 1px solid var(--rule); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q__arrow { font-size: 18px; color: var(--azure); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q__arrow { transform: rotate(45deg); }
.faq-a {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

.contact-card {
  background: var(--paper-2);
  border-radius: var(--r-lg);
  border: 1px solid var(--rule);
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-card p { color: var(--ink-muted); margin-bottom: 24px; font-size: 15px; }
.contact-card a.btn {
  display: inline-block;
  background: var(--azure);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  transition: background .2s, transform .15s;
}
.contact-card a.btn:hover { background: var(--azure-bright); transform: translateY(-1px); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__text  { padding-block: 32px 0; }
  #ink-canvas  { height: 260px; }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: 190px;
  }
  .b-ink   { grid-column: 1/3; grid-row: 1/3; }
  .b-lasso { grid-column: 1; grid-row: 3; }
  .b-laser { grid-column: 2; grid-row: 3; }
  .b-pdf   { grid-column: 1/3; grid-row: 4; }
  .b-sbs   { grid-column: 1/3; grid-row: 5; }
  .b-lib   { grid-column: 1; grid-row: 6/8; }
  .b-tmpl  { grid-column: 2; grid-row: 6; }
  .b-local { grid-column: 2; grid-row: 7; }
  .b-dark  { grid-column: 1; grid-row: 8; }
  .b-undo  { grid-column: 2; grid-row: 8; }

  .spotlight__inner { grid-template-columns: 1fr; gap: 40px; }
  .spotlight--flip .spotlight__inner { direction: ltr; }

  .ipad-section { display: none; }

  .coming-cards { grid-template-columns: repeat(2, 1fr); }
  .coming-cards .coming-card:last-child { grid-column: 1/3; }
}

@media (max-width: 600px) {
  .section { padding-block: 72px; }
  .header__nav { display: none; }
  .hero__h1 { font-size: 2.6rem; }
  .hero__sub { font-size: 16px; }

  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }
  .b-ink, .b-pdf, .b-sbs { grid-column: 1; grid-row: auto; }
  .b-lib { grid-row: span 2; }

  .private-pillars { gap: 28px; }
  .coming-cards { grid-template-columns: 1fr; }
  .coming-cards .coming-card:last-child { grid-column: 1; }

  .footer__inner { flex-direction: column; }
}
