/* ══════════════════════════════════════════════════════════════════════
   NORDWEBS — "Papir & Dyp"
   One stylesheet for the whole site. Ground is cool limestone paper;
   the hero and footer are cut straight through it into deep space,
   where the globe lives. Ultramarine is the only accent, and it is
   always an action: a link, a button, a live signal.
   ══════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── ground ── */
  --paper:      #E7E8E3;
  --paper-hi:   #F4F5F1;
  --paper-lo:   #DCDED7;

  /* ── deep (hero, footer, featured slabs) ── */
  --deep:       #0A0D0C;
  --deep-2:     #121716;
  --deep-3:     #1B2220;

  /* ── accent: ultramarine ── */
  --ultra:      #2131DE;   /* fills, on both grounds */
  --ultra-ink:  #1A28B4;   /* text on paper */
  --ultra-hi:   #7C8CFF;   /* text + light on deep */
  --ultra-wash: rgba(33,49,222,0.08);

  /* ── rules & type ── */
  --rule:       #C9CCC4;
  --rule-hi:    #A8ADA3;
  --rule-deep:  #262D2B;
  --ink:        #0A0D0C;
  --body:       #454C4A;
  --body-deep:  #98A29E;
  --dim:        #5F6764;
  --dim-deep:   #7A8480;

  /* legacy aliases — old markup still names these */
  --bg: var(--paper); --bg-alt: var(--paper-lo); --surface: var(--paper-hi);
  --border: var(--rule); --blue: var(--ultra); --blue-mid: var(--ultra-ink);
  --blue-lt: var(--ultra-wash); --text: var(--ink); --text-body: var(--body);
  --muted: var(--dim); --star: var(--ultra);

  --radius:  2px;
  --gutter:  5vw;
  --measure: 1180px;
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm: none;
  --shadow-md: 0 18px 44px -30px rgba(10,13,12,0.55);
  --shadow-lg: 0 30px 80px -40px rgba(10,13,12,0.7);

  /* skriftakser samlet ett sted — juster her, ikke per komponent */
  --wd-display: 104;   /* var 112 — smalere leser mer forfinet */
  --wd-hero:    108;   /* var 116 */
  --wg-display: 500;   /* var 600 — lettere snitt */
  --ls-display: -0.035em;

  --display: 'Archivo', system-ui, sans-serif;
  --sans:    'Instrument Sans', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--ultra); color: #fff; }

/* ── shared type roles ─────────────────────────────────────────── */
.page-title, .section-h2, .hero-headline,
.plan-name, .service-name, .theme-name, .why-card-title,
.work-name, .addon-name, .step-title, .usage-tier-title,
.chat-header-title, .info-card h2, .info-card h3, .legal-content h2 {
  font-family: var(--display);
  font-variation-settings: 'wdth' var(--wd-display);
  color: var(--ink);
  font-weight: var(--wg-display);
  letter-spacing: -0.026em;
  line-height: 1.14;
}

/* ── the mono label system: eyebrows, indices, prices, data ───── */
.eyebrow, .plan-eyebrow, .price-label, .price-amount, .price-period,
.addon-price, .usage-tier-label, .trust-item, .stat-label, .hero-badge,
.nav-links a, .nav-logo, .footer-logo, .footer-col-title, .btn-primary,
.btn-secondary, .plan-cta, .toggle-btn, .theme-link, .work-link,
.pricing-badge, .updated-note, .chat-header-sub, .legal-bar,
.form-group label, .step-num, .stat-num, .footer-copy, .contact-detail {
  font-family: var(--mono);
}

/* ══ NAV ═════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 66px;
  padding-inline: var(--gutter);
  background: rgba(231,232,227,0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--rule);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), height 0.4s var(--ease);
}
nav.scrolled { height: 58px; }

.nav-logo, .footer-logo {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span, .footer-logo span { color: var(--ultra-ink); }

.nav-links { display: flex; gap: 1.9rem; list-style: none; }
.nav-links a {
  position: relative;
  display: block;
  padding: 2px 0;
  color: var(--body);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--ultra-ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-back {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--body);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-back:hover { color: var(--ultra-ink); }

.nav-cta {
  background: var(--ultra);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s var(--ease);
}
.nav-cta:hover { background: var(--ultra-ink); }

/* hamburger dropdown */
.theme-menu-wrap { position: relative; flex-shrink: 0; }
.theme-menu-trigger {
  background: none; border: none; cursor: pointer;
  color: var(--ink); padding: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.25s;
}
.theme-menu-trigger:hover { color: var(--ultra-ink); }
.theme-menu {
  position: absolute;
  top: calc(100% + 14px); right: 0;
  min-width: 208px; padding: 6px;
  background: var(--paper-hi);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  z-index: 300;
}
.theme-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.theme-menu a {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 11px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, padding-left 0.25s var(--ease);
}
.theme-menu a:hover { background: var(--paper-lo); color: var(--ink); padding-left: 15px; }
.theme-dot { width: 6px; height: 6px; flex-shrink: 0; background: var(--ultra); }
.theme-menu-divider { border: none; border-top: 1px solid var(--rule); margin: 5px 3px; }

@media (max-width: 900px) { .nav-links { display: none; } }

/* nav inverts while sitting on the hero slab */
body.has-hero nav:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
body.has-hero nav:not(.scrolled) .nav-logo,
body.has-hero nav:not(.scrolled) .theme-menu-trigger { color: #F2F3EF; }
body.has-hero nav:not(.scrolled) .nav-logo span { color: var(--ultra-hi); }
body.has-hero nav:not(.scrolled) .nav-links a { color: rgba(242,243,239,0.66); }
body.has-hero nav:not(.scrolled) .nav-links a:hover { color: #fff; }
body.has-hero nav:not(.scrolled) .nav-links a::after { background: var(--ultra-hi); }

/* ── scroll progress ── */
#progress-bar, .nw-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--ultra);
  z-index: 500;
  transition: width 0.08s linear;
}

/* ══ HERO ════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem var(--gutter) 6rem;
  background: var(--deep);
  color: var(--body-deep);
  overflow: hidden;
  isolation: isolate;
}
/* chart paper: a hairline graticule printed on the slab */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(to right, rgba(255,255,255,0.028) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(to bottom, rgba(255,255,255,0.028) 0 1px, transparent 1px 92px);
  mask-image: radial-gradient(ellipse 90% 70% at 30% 45%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 45%, #000 20%, transparent 78%);
  z-index: 0;
  pointer-events: none;
}
#hero.is-dragging { cursor: grabbing; }

#grid-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
/* the old ambient blobs and full-page node net are gone: the globe is
   the only ornament this page gets */
.hero-shapes, #net-canvas { display: none !important; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,243,239,0.72);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--rule-deep);
  margin-bottom: 2.2rem;
}
.hero-badge-dot {
  width: 5px; height: 5px;
  background: var(--ultra-hi);
  box-shadow: 0 0 0 0 rgba(124,140,255,0.6);
  animation: ping 2.6s var(--ease) infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(124,140,255,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(124,140,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,140,255,0); }
}

.hero-headline {
  font-family: var(--display);
  font-variation-settings: 'wdth' var(--wd-hero);
  font-weight: var(--wg-display);
  font-size: clamp(2.7rem, 6.4vw, 5.6rem);
  line-height: 1.06;
  letter-spacing: var(--ls-display);
  color: #F5F6F2;
  max-width: 15ch;
  margin-bottom: 1.9rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--ultra-hi);
}
.typewriter-wrap { display: inline; }
.cursor {
  display: inline-block;
  width: 3px; height: 0.82em;
  background: var(--ultra-hi);
  margin-left: 4px;
  vertical-align: -0.06em;
  animation: blink 1.05s steps(2, start) infinite;
}
@keyframes blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

.hero-sub {
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--body-deep);
  max-width: 46ch;
  margin-bottom: 2.6rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 3.4rem; }

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule-deep);
  max-width: 46ch;
}
.stat-num {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: #F5F6F2;
  letter-spacing: -0.04em;
}
.stat-num sup { font-size: 0.9rem; top: -0.9em; color: var(--ultra-hi); }
.stat-label {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim-deep);
  margin-top: 0.55rem;
}

@media (min-width: 981px) {
  .hero-inner { max-width: var(--measure); }
  .hero-headline, .hero-sub, .hero-actions, .hero-stats { max-width: min(58%, 640px); }
  .hero-sub { max-width: min(46ch, 52%); }
}
@media (max-width: 980px) {
  #hero { padding-top: 7rem; padding-bottom: 4rem; min-height: auto; }
}

/* ══ TRUST MARQUEE ═══════════════════════════════════════════════ */
#trust {
  background: var(--deep-2);
  border-block: 1px solid var(--rule-deep);
  padding: 1.05rem 0;
  overflow: hidden;
  position: relative;
}
#trust::before, #trust::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 12vw; z-index: 2; pointer-events: none;
}
#trust::before { left: 0;  background: linear-gradient(to right, var(--deep-2), transparent); }
#trust::after  { right: 0; background: linear-gradient(to left,  var(--deep-2), transparent); }

.marquee-track {
  display: flex; align-items: center; gap: 2.4rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(242,243,239,0.62);
  white-space: nowrap;
}
.trust-item svg { color: var(--ultra-hi); flex-shrink: 0; }
.trust-dot { width: 3px; height: 3px; background: var(--rule-deep); transform: rotate(45deg); flex-shrink: 0; }

/* ══ PAGE HEADER + SECTIONS ══════════════════════════════════════ */
.page-header {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 9.5rem var(--gutter) 3.4rem;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  left: var(--gutter); right: var(--gutter); bottom: 0;
  height: 1px;
  background: var(--rule);
}
@media (min-width: 1400px) { .page-header { padding-inline: 0; } .page-header::after { left: 0; right: 0; } }

.page-title {
  font-size: clamp(2.2rem, 5.2vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  max-width: 20ch;
  margin-bottom: 1.3rem;
}
.page-lead {
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--body);
  max-width: 62ch;
}
.updated-note {
  margin-top: 1.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ultra-ink);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--ultra-ink);
  flex-shrink: 0;
}

.section-pad     { padding: 6.5rem var(--gutter); }
.section-pad-alt { padding: 6.5rem var(--gutter); background: var(--paper-lo); }
.section-header  { max-width: var(--measure); margin: 0 auto 3.4rem; }
.section-h2 {
  font-size: clamp(1.85rem, 3.7vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.032em;
  max-width: 22ch;
}
.section-lead {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--body);
  max-width: 58ch;
  margin-top: 1rem;
}

/* every grid shares one measure so the page keeps a spine */
.theme-grid, .services-grid, .process-grid, .why-layout, .pricing-grid,
.addon-grid, .work-grid, .contact-layout, .reviews-layout, .about-content,
.usage-box, .pricing-toggle-wrap, .pricing-footnote, .legal-content, .testi-grid {
  max-width: var(--measure);
  margin-inline: auto;
}

/* ══ BUTTONS ═════════════════════════════════════════════════════ */
.btn-primary, .plan-cta, .form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ultra);
  color: #fff;
  border: 1px solid var(--ultra);
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.25s var(--ease);
}
.btn-primary::after, .plan-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.42s var(--ease);
  z-index: -1;
}
.btn-primary:hover::after, .plan-cta:hover::after { transform: translateY(0); }
.btn-primary:hover, .plan-cta:hover, .form-submit-btn:hover { border-color: var(--ink); }
.btn-primary:disabled, .form-submit-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border: 1px solid rgba(242,243,239,0.28);
  border-radius: var(--radius);
  color: #F2F3EF;
  background: transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.btn-secondary:hover { border-color: #F2F3EF; background: rgba(242,243,239,0.06); }

.form-submit-btn { width: 100%; justify-content: center; margin-top: 0.9rem; }

/* ══ CARD FAMILY ═════════════════════════════════════════════════
   One card, one behaviour: hairline box on paper, an ultramarine
   rule drawn across the top edge on hover, a 3px lift. Nothing else. */
.theme-card, .service-card, .why-card, .work-card, .addon-card,
.pricing-card, .usage-tier, .info-card, .testi-card {
  position: relative;
  background: var(--paper-hi);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.theme-card::before, .service-card::before, .work-card::before,
.addon-card::before, .pricing-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: var(--ultra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.theme-card:hover::before, .service-card:hover::before, .work-card:hover::before,
.addon-card:hover::before, .pricing-card:hover::before { transform: scaleX(1); }

.theme-card:hover, .service-card:hover, .work-card:hover,
.addon-card:hover, .pricing-card:hover {
  transform: translateY(-3px);
  border-color: var(--rule-hi);
  box-shadow: var(--shadow-md);
}

/* ── explore grid (home) ── */
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.theme-card { display: block; padding: 2.4rem 2rem 2.2rem; text-decoration: none; border: none; border-radius: 0; }
.theme-card:hover { transform: none; box-shadow: none; background: var(--paper); }
.theme-card::before { top: 0; left: 0; right: 0; }
/* The contact card used to be a solid black tile. It now behaves like
   every other card in the grid — the ultramarine top rule on hover is
   enough to mark it as the action. */

.theme-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
  color: var(--ultra-ink);
  margin-bottom: 1.6rem;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.theme-icon svg { width: 19px; height: 19px; }
.theme-card:hover .theme-icon { background: var(--ultra); border-color: var(--ultra); color: #fff; }

.theme-name { font-size: 1.22rem; margin-bottom: 0.7rem; }
.theme-desc { font-size: 0.92rem; line-height: 1.65; color: var(--body); margin-bottom: 1.5rem; }
.theme-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ultra-ink);
}
.theme-link svg { transition: transform 0.4s var(--ease); }
.theme-card:hover .theme-link svg { transform: translateX(5px); }

@media (max-width: 980px) { .theme-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .theme-grid { grid-template-columns: 1fr; } }

/* ── services ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card { padding: 2.3rem 1.9rem 2.1rem; }
.service-icon-wrap {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
  color: var(--ultra-ink);
  margin-bottom: 1.5rem;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.service-card:hover .service-icon-wrap { background: var(--ultra); border-color: var(--ultra); color: #fff; }
.service-icon-wrap svg { width: 19px; height: 19px; }
.service-name { font-size: 1.14rem; margin-bottom: 0.65rem; }
.service-desc { font-size: 0.92rem; line-height: 1.65; color: var(--body); }

/* ── process: a real sequence, so the numbers stay ── */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 800px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

.process-line { display: none; }

.process-step {
  background: var(--paper-hi);
  padding: 2.3rem 1.8rem 2.2rem;
  transition: background 0.35s var(--ease);
}
.process-step:hover { background: var(--paper); }
.step-num {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--rule-hi);
  margin-bottom: 1.5rem;
  transition: -webkit-text-stroke-color 0.35s var(--ease), color 0.35s var(--ease);
}
.process-step:hover .step-num { -webkit-text-stroke-color: var(--ultra); color: var(--ultra-wash); }
.step-title { font-size: 1.08rem; margin-bottom: 0.6rem; }
.step-desc { font-size: 0.9rem; line-height: 1.65; color: var(--body); }

/* ── why us ── */
.why-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 4.5rem; align-items: start; }
@media (max-width: 800px) { .why-layout { grid-template-columns: 1fr; gap: 3rem; } }
.why-cards { display: flex; flex-direction: column; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.why-card {
  display: flex; gap: 1.3rem; align-items: flex-start;
  padding: 1.8rem 1.7rem;
  background: var(--paper-hi);
  border: none; border-radius: 0;
}
.why-card:hover { background: var(--paper); transform: none; box-shadow: none; }
.why-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
  color: var(--ultra-ink);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.why-card:hover .why-icon { background: var(--ultra); border-color: var(--ultra); color: #fff; }
.why-icon svg { width: 17px; height: 17px; }
.why-card-title { font-size: 1.02rem; margin-bottom: 0.4rem; }
.why-card-desc { font-size: 0.9rem; line-height: 1.62; color: var(--body); }

/* ── about ── */
.about-content { padding: 0; }
.about-text {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--body);
  max-width: 66ch;
  margin-bottom: 1.5rem;
}
.about-text:first-child { font-size: 1.24rem; line-height: 1.7; color: var(--ink); }
.about-text a {
  color: var(--ultra-ink);
  text-decoration: none;
  box-shadow: inset 0 -1px 0 var(--ultra-ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.about-text a:hover { background: var(--ultra); color: #fff; box-shadow: none; }

/* ── featured work ── */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr; max-width: 460px; } }
.work-card { display: block; overflow: hidden; text-decoration: none; }
.work-thumb { width: 100%; aspect-ratio: 16/10; background: var(--paper-lo); overflow: hidden; }
.work-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}
.work-card:hover .work-thumb img { transform: scale(1.04); filter: grayscale(0) contrast(1); }
.work-body { padding: 1.4rem 1.5rem 1.6rem; border-top: 1px solid var(--rule); }
.work-name { font-size: 1.06rem; margin-bottom: 0.45rem; }
.work-desc { font-size: 0.88rem; line-height: 1.6; color: var(--body); margin-bottom: 1rem; }
.work-link {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ultra-ink);
}

/* ══ PRICING ═════════════════════════════════════════════════════ */
.pricing-toggle-wrap { margin-bottom: 3rem; }
.pricing-toggle {
  display: inline-flex;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper-hi);
  padding: 3px;
}
.toggle-btn {
  border: none;
  background: transparent;
  color: var(--body);
  padding: 0.7rem 1.3rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.toggle-btn.active { background: var(--ink); color: #F5F6F2; }
.pricing-toggle-note {
  margin-top: 1rem;
  font-size: 0.84rem;
  color: var(--dim);
  max-width: 56ch;
}

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; } }

.pricing-card { display: flex; flex-direction: column; padding: 2.4rem 2rem 2.2rem; }
.pricing-card.featured { background: var(--deep); border-color: var(--deep); }
.pricing-card.featured:hover { border-color: var(--ultra); }
.pricing-card.featured .plan-name,
.pricing-card.featured .price-amount { color: #F5F6F2; }
.pricing-card.featured .plan-desc,
.pricing-card.featured .plan-features li { color: var(--body-deep); }
.pricing-card.featured .plan-eyebrow,
.pricing-card.featured .price-label { color: var(--ultra-hi); }
.pricing-card.featured .price-period { color: var(--dim-deep); }
.pricing-card.featured .plan-features { border-top-color: var(--rule-deep); }
.pricing-card.featured .plan-features li svg { color: var(--ultra-hi); }
.pricing-card.featured .plan-cta { background: #F5F6F2; border-color: #F5F6F2; color: var(--ink); }
.pricing-card.featured .plan-cta::after { background: var(--ultra); }
.pricing-card.featured .plan-cta:hover { color: #fff; border-color: var(--ultra); }

.pricing-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--ultra);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.42rem 0.8rem;
}
.plan-eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ultra-ink);
  margin-bottom: 0.9rem;
}
.plan-name { font-size: 1.5rem; margin-bottom: 0.55rem; }
.plan-desc { font-size: 0.92rem; line-height: 1.6; color: var(--body); margin-bottom: 1.9rem; }

.price-block { margin-bottom: 1.9rem; }
.price-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.5rem;
}
.price-amount {
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.price-period { font-size: 0.8rem; color: var(--dim); margin-top: 0.55rem; letter-spacing: 0.02em; }
.price-contact { font-size: 1.02rem; color: var(--ink); font-family: var(--display); font-variation-settings: 'wdth' 110; }

.plan-features { list-style: none; margin-bottom: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.9rem; line-height: 1.55;
  color: var(--body);
  padding: 0.42rem 0;
}
.plan-features li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 0.32rem; color: var(--ultra); }
.plan-features li em { font-style: normal; color: var(--dim); }
.plan-cta { justify-content: center; width: 100%; }

.pricing-section-gap { margin-top: 5.5rem; }

.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 700px) { .addon-grid { grid-template-columns: 1fr; } }
.addon-card { padding: 1.9rem 1.8rem; }
.addon-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.6rem; }
.addon-name { font-size: 1.08rem; }
.addon-price { font-size: 1.08rem; font-weight: 700; color: var(--ultra-ink); letter-spacing: -0.02em; white-space: nowrap; }
.addon-desc { font-size: 0.92rem; line-height: 1.6; color: var(--body); margin-bottom: 0.7rem; }
.addon-note { font-size: 0.8rem; color: var(--dim); line-height: 1.55; }

.usage-box { background: var(--paper-hi); border: 1px solid var(--rule); border-radius: var(--radius); padding: 2.4rem 2.2rem; }
.usage-intro { font-size: 0.96rem; color: var(--body); line-height: 1.72; margin-bottom: 2rem; max-width: 64ch; }
.usage-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
@media (max-width: 800px) { .usage-tiers { grid-template-columns: 1fr; } }
.usage-tier { background: var(--paper); padding: 1.5rem 1.4rem; border: none; border-radius: 0; }
.usage-tier-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ultra-ink); margin-bottom: 0.65rem;
}
.usage-tier-title { font-size: 1.02rem; margin-bottom: 0.4rem; }
.usage-tier-desc { font-size: 0.86rem; color: var(--body); line-height: 1.6; }

.pricing-footnote { font-size: 0.84rem; color: var(--dim); line-height: 1.85; margin-top: 3.5rem; padding-top: 1.6rem; border-top: 1px solid var(--rule); }
.pricing-footnote a { color: var(--ultra-ink); text-decoration: none; box-shadow: inset 0 -1px 0 var(--rule); }
.pricing-footnote a:hover { box-shadow: inset 0 -1px 0 var(--ultra-ink); }

.pv-nocommit { display: none; }
.no-commit-mode .pv-commit { display: none; }
.no-commit-mode .pv-nocommit { display: inline; }

/* ══ FORMS ═══════════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } }

.reviews-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4.5rem; align-items: start; }
@media (max-width: 900px) { .reviews-layout { grid-template-columns: 1fr; gap: 3rem; } }

.contact-form, .review-form {
  background: var(--paper-hi);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  transition: border-color 0.4s var(--ease);
}
.contact-form:focus-within, .review-form:focus-within { border-color: var(--rule-hi); }

.form-group { margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

.form-group label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.6rem;
  transition: color 0.3s var(--ease);
}
.form-group:focus-within label { color: var(--ultra-ink); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  padding: 0.7rem 0;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
  outline: none;
}
.form-group textarea { min-height: 130px; resize: vertical; line-height: 1.65; }
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--dim) 50%), linear-gradient(135deg, var(--dim) 50%, transparent 50%);
  background-position: calc(100% - 11px) 1.25rem, calc(100% - 6px) 1.25rem;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #7E847D; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--ultra); }

.hidden-field { position: absolute; left: -9999px; opacity: 0; }

.star-rating { display: inline-flex; flex-direction: row-reverse; gap: 0.3rem; }
.star-rating input { display: none; }
.star-rating label {
  font-size: 1.55rem;
  line-height: 1;
  color: var(--rule-hi);
  cursor: pointer;
  transition: color 0.2s, transform 0.25s var(--ease);
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--ultra); }
.star-rating label:hover { transform: translateY(-2px); }

/* ── contact side info ── */
.contact-meta { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; font-size: 0.84rem; letter-spacing: 0.03em; color: var(--body); }
.contact-detail a { color: var(--ink); text-decoration: none; box-shadow: inset 0 -1px 0 var(--rule); }
.contact-detail a:hover { color: var(--ultra-ink); box-shadow: inset 0 -1px 0 var(--ultra-ink); }
.contact-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
  color: var(--ultra-ink);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.contact-icon svg { width: 16px; height: 16px; }
.contact-detail:hover .contact-icon { background: var(--ultra); border-color: var(--ultra); color: #fff; }

.info-card { padding: 1.9rem 1.8rem; }
.info-card h2, .info-card h3 { font-size: 1.02rem; margin-bottom: 0.8rem; }
.info-card p { font-size: 0.88rem; line-height: 1.7; color: var(--body); margin-bottom: 0.9rem; }
.info-card p:last-child { margin-bottom: 0; }

/* ══ LEGAL PAGES ═════════════════════════════════════════════════ */
.legal-content { padding: 3.5rem var(--gutter) 6rem; }
@media (min-width: 1400px) { .legal-content { padding-inline: 0; } }
.legal-content h2 {
  font-size: 1.22rem;
  margin: 2.8rem 0 0.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { font-size: 0.98rem; line-height: 1.8; color: var(--body); margin-bottom: 1rem; max-width: 72ch; }
.legal-content ul { margin: 0 0 1.2rem 1.2rem; color: var(--body); font-size: 0.98rem; line-height: 1.8; max-width: 72ch; }
.legal-content li { margin-bottom: 0.35rem; }
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content a { color: var(--ultra-ink); text-decoration: none; box-shadow: inset 0 -1px 0 var(--rule); }
.legal-content a:hover { box-shadow: inset 0 -1px 0 var(--ultra-ink); }
.legal-content em { color: var(--dim); }

/* ══ FOOTER ══════════════════════════════════════════════════════ */
footer {
  background: var(--deep);
  color: var(--body-deep);
  padding: 4.5rem var(--gutter) 2.2rem;
  border-top: 1px solid var(--deep);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--measure);
  margin: 0 auto 3.5rem;
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

.footer-logo { display: inline-block; font-size: 0.9rem; margin-bottom: 1rem; color: #F5F6F2; }
.footer-logo span { color: var(--ultra-hi); }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; color: var(--dim-deep); max-width: 34ch; }

.footer-col-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F5F6F2;
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--dim-deep);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.footer-links a:hover { color: #F5F6F2; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  max-width: var(--measure);
  margin: 0 auto;
  padding-top: 1.8rem;
  border-top: 1px solid var(--rule-deep);
}
.footer-copy {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim-deep);
}
/* sub-pages have a bare one-line footer */
footer > .footer-copy { max-width: var(--measure); margin: 0 auto; text-align: left; }

.legal-bar {
  background: var(--deep-2);
  border-top: 1px solid var(--rule-deep);
  padding: 1rem var(--gutter);
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.legal-bar a, .legal-bar button {
  color: var(--dim-deep);
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s;
}
.legal-bar a:hover, .legal-bar button:hover { color: var(--ultra-hi); }
.legal-bar .sep { margin: 0 0.7rem; color: var(--rule-deep); }

/* ══ AI CHAT WIDGET ══════════════════════════════════════════════ */
.chat-toggle {
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  width: 54px; height: 54px;
  border-radius: var(--radius);
  background: var(--ultra);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px -12px rgba(33,49,222,0.75);
  z-index: 400;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.chat-toggle:hover { background: var(--ink); }
.chat-toggle svg { width: 22px; height: 22px; }
.chat-toggle .icon-close { display: none; }
.chat-toggle.open .icon-chat { display: none; }
.chat-toggle.open .icon-close { display: block; }

.chat-panel {
  position: fixed;
  bottom: 5.6rem; right: 1.6rem;
  width: 372px;
  max-width: calc(100vw - 3.2rem);
  height: 520px;
  max-height: calc(100svh - 8rem);
  background: var(--paper-hi);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: 0 40px 90px -40px rgba(10,13,12,0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.99);
  transition: opacity 0.34s var(--ease), transform 0.34s var(--ease), visibility 0.34s;
  z-index: 399;
}
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.chat-header {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1rem 1.2rem;
  background: var(--deep);
  border-bottom: 1px solid var(--deep);
}
.chat-avatar { position: relative; width: 38px; height: 38px; flex-shrink: 0; }
.chat-avatar svg { width: 100%; height: 100%; display: block; }
.chat-header-dot {
  position: absolute;
  right: -1px; bottom: -1px;
  width: 9px; height: 9px;
  background: #3ED598;
  border: 2px solid var(--deep);
  border-radius: 50%;
}
.chat-header-title { font-size: 0.94rem; color: #F5F6F2; letter-spacing: -0.01em; }
.chat-header-sub { font-size: 0.62rem; letter-spacing: 0.1em; color: var(--dim-deep); margin-top: 2px; }

.chat-body { flex: 1; overflow-y: auto; padding: 1.2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.chat-msg {
  max-width: 86%;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  line-height: 1.6;
  white-space: pre-wrap;
}
.chat-msg.bot { align-self: flex-start; background: var(--paper-lo); color: var(--ink); border: 1px solid var(--rule); }
.chat-msg.user { align-self: flex-end; background: var(--ultra); color: #fff; }
.chat-msg.typing { display: flex; gap: 4px; align-items: center; }
.chat-msg.typing span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--dim);
  animation: typingBounce 1.2s infinite;
}
.chat-msg.typing span:nth-child(2) { animation-delay: 0.16s; }
.chat-msg.typing span:nth-child(3) { animation-delay: 0.32s; }
@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.45; } 30% { transform: translateY(-4px); opacity: 1; } }

.chat-footer { display: flex; gap: 0.6rem; padding: 0.9rem 1rem; border-top: 1px solid var(--rule); background: var(--paper); }
.chat-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.55rem 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  resize: none;
  max-height: 110px;
  outline: none;
  transition: border-color 0.3s;
}
.chat-input:focus { border-bottom-color: var(--ultra); }
.chat-input::placeholder { color: #7E847D; }
.chat-send {
  width: 38px; height: 38px; flex-shrink: 0;
  border: none;
  border-radius: var(--radius);
  background: var(--ultra);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.chat-send:hover { background: var(--ink); }
.chat-send:disabled { opacity: 0.45; cursor: not-allowed; }
.chat-send svg { width: 16px; height: 16px; }

@media (max-width: 480px) {
  .chat-panel { right: 0.8rem; left: 0.8rem; width: auto; bottom: 5rem; }
  .chat-toggle { bottom: 1rem; right: 1rem; }
}

/* ══ MOTION ══════════════════════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal        { transform: translateY(22px); }
.reveal-left   { transform: translateX(-26px); }
.reveal-right  { transform: translateX(26px); }
.reveal-scale  { transform: scale(0.985); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* page-load: headline lines wipe up from a clipped baseline */
.nw-line { display: block; overflow: hidden; }
.nw-line > span { display: block; transform: translateY(105%); animation: lineUp 1s var(--ease) forwards; }
.nw-line:nth-child(2) > span { animation-delay: 0.09s; }
.nw-line:nth-child(3) > span { animation-delay: 0.18s; }
@keyframes lineUp { to { transform: translateY(0); } }

.nw-fade-up { opacity: 0; transform: translateY(16px); animation: fadeUp 0.9s var(--ease) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* keyboard focus is never hidden */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--ultra);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .nw-line > span { transform: none; }
}

/* unused legacy blocks kept harmless */
.testi-grid, .testi-card, .testi-stars, .testi-quote,
.testi-footer, .testi-avatar, .testi-author, .testi-role { }

/* ══ HERO ENTRANCE ═══════════════════════════════════════════════
   The page loads like an instrument coming online: badge, headline,
   lead, actions, stats — in that order, once. */
#hero .hero-badge,
#hero .hero-headline,
#hero .hero-sub,
#hero .hero-actions,
#hero .hero-stats {
  opacity: 0;
  transform: translateY(20px);
}
#hero.is-ready .hero-badge,
#hero.is-ready .hero-headline,
#hero.is-ready .hero-sub,
#hero.is-ready .hero-actions,
#hero.is-ready .hero-stats {
  animation: heroIn 1s var(--ease) forwards;
}
#hero.is-ready .hero-badge    { animation-delay: 0.05s; }
#hero.is-ready .hero-headline { animation-delay: 0.16s; }
#hero.is-ready .hero-sub      { animation-delay: 0.30s; }
#hero.is-ready .hero-actions  { animation-delay: 0.42s; }
#hero.is-ready .hero-stats    { animation-delay: 0.54s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

#hero.is-dragging, #hero.is-dragging * { user-select: none; -webkit-user-select: none; }

@media (prefers-reduced-motion: reduce) {
  #hero .hero-badge, #hero .hero-headline, #hero .hero-sub,
  #hero .hero-actions, #hero .hero-stats { opacity: 1; transform: none; }
}

/* ══ LEGAL TABLES ════════════════════════════════════════════════
   Data, so it gets the mono/hairline treatment the rest of the
   numbers get. Scrolls sideways on a phone instead of breaking
   the page. */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.4rem 0 1.8rem;
  font-size: 0.86rem;
  line-height: 1.6;
  border: 1px solid var(--rule);
  background: var(--paper-hi);
}
.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--rule);
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table th {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-lo);
  white-space: nowrap;
}
.legal-table td { color: var(--body); }
.legal-table code,
.legal-content code {
  font-family: var(--mono);
  font-size: 0.82em;
  color: var(--ultra-ink);
  background: var(--ultra-wash);
  padding: 0.12em 0.4em;
  border-radius: 1px;
  word-break: break-word;
}

@media (max-width: 720px) {
  .legal-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .legal-table th, .legal-table td { min-width: 150px; }
}


/* ══ FIXES ═══════════════════════════════════════════════════════ */

/* The consent banner spans the full width, so its empty half was
   swallowing clicks meant for the chat button underneath. */
#cc-banner { pointer-events: none; }
#cc-banner .cc-box { pointer-events: auto; }

/* If a work thumbnail 404s, show the frame rather than a broken image. */
.work-thumb.is-empty {
  background:
    repeating-linear-gradient(-45deg, var(--paper-lo) 0 8px, var(--paper-hi) 8px 16px);
}

/* ══ GLASS ═══════════════════════════════════════════════════════
   Glass only earns its place where there is something behind it to
   blur. On flat paper it just looks like a lighter box, so it stays
   off there: it runs on the dark slabs, over the globe, and on the
   layers that float above the page. */
:root {
  --glass-dark:   rgba(18, 23, 22, 0.52);
  --glass-light:  rgba(244, 245, 241, 0.72);
  --glass-edge:   rgba(255, 255, 255, 0.10);
  --glass-blur:   blur(22px) saturate(1.35);
}

/* floating layers */
.chat-panel {
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-color: rgba(10, 13, 12, 0.10);
}
.chat-header {
  background: rgba(10, 13, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.chat-footer { background: rgba(231, 232, 227, 0.55); }
.chat-msg.bot { background: rgba(255, 255, 255, 0.55); border-color: rgba(10,13,12,0.09); }

.theme-menu {
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.cc-box, .cc-panel-box {
  background: var(--glass-light) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* nav: heavier blur, and truly transparent glass while over a hero */
nav { backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4); }
body.has-hero nav:not(.scrolled) {
  background: rgba(10, 13, 12, 0.22);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

/* the glass panel used on the dark slabs */
.glass {
  background: var(--glass-dark);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 0.9);
}
/* a single specular edge along the top — what sells it as glass */
.glass { position: relative; }
.glass::after {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.35), transparent);
  pointer-events: none;
}

@supports not (backdrop-filter: blur(1px)) {
  .glass { background: rgba(18, 23, 22, 0.94); }
  .chat-panel, .theme-menu, .cc-box, .cc-panel-box { background: var(--paper-hi) !important; }
}

/* ══ LIVE CHAT HERO (services) ═══════════════════════════════════
   The chatbot is the product, so on this page it stops hiding in a
   corner bubble and becomes the argument. Same backend, same replies
   — nothing staged. */
#chat-hero {
  position: relative;
  background: var(--deep);
  color: var(--body-deep);
  padding: 9rem var(--gutter) 5rem;
  overflow: hidden;
  isolation: isolate;
}
#chat-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(to right, rgba(255,255,255,0.028) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(to bottom, rgba(255,255,255,0.028) 0 1px, transparent 1px 92px);
  mask-image: radial-gradient(ellipse 80% 80% at 72% 50%, #000 10%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 72% 50%, #000 10%, transparent 76%);
  z-index: 0;
}
/* the light the glass sits in */
#chat-hero::after {
  content: '';
  position: absolute;
  right: -8%; top: 50%;
  width: 780px; height: 780px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(33,49,222,0.30), transparent 62%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

.chat-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--measure);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
@media (max-width: 940px) {
  .chat-hero-inner { grid-template-columns: 1fr; gap: 2.6rem; }
  #chat-hero { padding-top: 7.5rem; }
}

.chat-hero-copy .eyebrow { color: var(--ultra-hi); }
.chat-hero-copy .eyebrow::before { background: var(--ultra-hi); }
.chat-hero-title {
  font-family: var(--display);
  font-variation-settings: 'wdth' var(--wd-hero);
  font-weight: var(--wg-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  color: #F5F6F2;
  margin-bottom: 1.4rem;
}
.chat-hero-title em { font-style: normal; color: var(--ultra-hi); }
.chat-hero-lead {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--body-deep);
  max-width: 44ch;
  margin-bottom: 2rem;
}
.chat-hero-facts { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chat-hero-facts span {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,243,239,0.68);
  border: 1px solid var(--rule-deep);
  border-radius: var(--radius);
  padding: 0.5rem 0.8rem;
}

/* the glass console */
.chat-live {
  display: flex;
  flex-direction: column;
  height: 470px;
  max-height: 72svh;
  overflow: hidden;
}
.chat-live-head {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--glass-edge);
}
.chat-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #3ED598;
  box-shadow: 0 0 0 0 rgba(62,213,152,0.5);
  animation: ping 2.6s var(--ease) infinite;
  flex-shrink: 0;
}
.chat-live-name {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: #F5F6F2;
}
.chat-live-status {
  margin-left: auto;
  font-family: var(--mono); font-size: 0.58rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim-deep);
}
.chat-live-body {
  flex: 1; overflow-y: auto;
  padding: 1.15rem;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.chat-live-body .chat-msg { max-width: 88%; font-size: 0.9rem; }
.chat-live-body .chat-msg.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--glass-edge);
  color: #EDEFEB;
}
.chat-live-body .chat-msg.user {
  align-self: flex-end;
  background: var(--ultra); color: #fff; border: none;
}
.chat-live-body .chat-msg.typing span { background: rgba(242,243,239,0.6); }

.chat-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 0 1.15rem 0.9rem; }
.chat-chip {
  font-family: var(--mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(242,243,239,0.8);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  padding: 0.5rem 0.72rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s;
}
.chat-chip:hover { background: var(--ultra); border-color: var(--ultra); color: #fff; }

.chat-live-foot {
  display: flex; gap: 0.6rem; align-items: flex-end;
  padding: 0.85rem 1.15rem;
  border-top: 1px solid var(--glass-edge);
  background: rgba(0,0,0,0.16);
}
.chat-live-foot textarea {
  flex: 1;
  background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  padding: 0.5rem 0;
  font-family: var(--sans); font-size: 0.92rem;
  color: #F5F6F2; resize: none; max-height: 90px; outline: none;
  transition: border-color 0.3s;
}
.chat-live-foot textarea:focus { border-bottom-color: var(--ultra-hi); }
.chat-live-foot textarea::placeholder { color: rgba(242,243,239,0.42); }
.chat-live-send {
  width: 36px; height: 36px; flex-shrink: 0;
  border: none; border-radius: var(--radius);
  background: var(--ultra); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.chat-live-send:hover { background: #F5F6F2; color: var(--ink); }
.chat-live-send:disabled { opacity: 0.45; cursor: not-allowed; }
.chat-live-send svg { width: 15px; height: 15px; }

/* the corner bubble would be a second copy of the same thing here */
body.chat-in-hero .chat-toggle,
body.chat-in-hero .chat-panel { display: none; }

/* the section header below the hero doesn't need to clear the nav twice */
#chat-hero + .page-header { padding-top: 4.5rem; }

/* ══ SLAB HEROES (work, why-us) ══════════════════════════════════ */
.slab-hero {
  position: relative;
  background: var(--deep);
  color: var(--body-deep);
  padding: 9rem var(--gutter) 5rem;
  overflow: hidden;
  isolation: isolate;
}
.slab-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(to right, rgba(255,255,255,0.028) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(to bottom, rgba(255,255,255,0.028) 0 1px, transparent 1px 92px);
  mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, #000 10%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, #000 10%, transparent 76%);
  z-index: 0;
}
.slab-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--measure);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}
@media (max-width: 940px) {
  .slab-hero { padding-top: 7.5rem; }
  .slab-hero-inner { grid-template-columns: 1fr; gap: 2.6rem; }
}
.slab-hero .eyebrow { color: var(--ultra-hi); }
.slab-hero .eyebrow::before { background: var(--ultra-hi); }
.slab-hero-title {
  font-family: var(--display);
  font-variation-settings: 'wdth' var(--wd-hero);
  font-weight: var(--wg-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  color: #F5F6F2;
  margin-bottom: 1.3rem;
}
.slab-hero-title em { font-style: normal; color: var(--ultra-hi); }
.slab-hero-lead {
  font-size: 1.02rem; line-height: 1.75;
  color: var(--body-deep); max-width: 44ch; margin-bottom: 2rem;
}
.slab-hero + .page-header,
#chat-hero + .page-header { padding-top: 4.5rem; }

/* ── the browser frame: a real delivered site, scrolling ──────── */
.site-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.site-frame::after {
  content: '';
  position: absolute; top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.35), transparent);
  z-index: 3; pointer-events: none;
}
.site-chrome {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--glass-edge);
  background: rgba(0,0,0,0.22);
}
.site-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.site-url {
  margin-left: 0.5rem; flex: 1;
  font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: lowercase;
  color: rgba(242,243,239,0.55);
  background: rgba(255,255,255,0.05);
  border-radius: 40px;
  padding: 0.32rem 0.75rem;
  text-align: center;
}
.site-view {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--deep-2);
}
.site-view img { display: block; width: 100%; height: auto; }
/* Only a screenshot taller than its frame scrolls. A wide one just sits
   there — motion.js measures and decides, so the same frame handles both
   a full-page portrait capture and a single landscape screen. */
.site-view.is-scrolling img {
  animation: siteScroll 26s ease-in-out infinite alternate;
}
.site-view.is-fitted { height: auto; }
.site-view.is-fitted::after { display: none; }
@keyframes siteScroll {
  0%, 6%    { transform: translateY(0); }
  94%, 100% { transform: translateY(var(--scroll-end, 0px)); }
}
/* a soft fade at the seam so the crop doesn't read as a hard cut */
.site-view::after {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 70px;
  background: linear-gradient(to top, rgba(10,13,12,0.55), transparent);
  pointer-events: none;
}
@media (max-width: 940px) { .site-view { height: 320px; } }
@media (prefers-reduced-motion: reduce) { .site-view.is-scrolling img { animation: none; } }

/* ── the worry / answer table ─────────────────────────────────── */
.promise-table {
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  overflow: hidden;
}
.promise-head, .promise-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--glass-edge);
}
.promise-head > div, .promise-row > div {
  background: rgba(18,23,22,0.72);
  padding: 1rem 1.15rem;
}
.promise-head > div {
  font-family: var(--mono); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.17em; text-transform: uppercase;
  background: rgba(0,0,0,0.3);
}
.promise-head .q { color: var(--dim-deep); }
.promise-head .a { color: var(--ultra-hi); }
.promise-row .q { color: rgba(242,243,239,0.55); font-size: 0.9rem; line-height: 1.5; }
.promise-row .a { color: #F1F2EE; font-size: 0.9rem; line-height: 1.5; }
.promise-row .a strong { font-weight: 600; color: #fff; }
@media (max-width: 560px) {
  .promise-head { display: none; }
  .promise-row { grid-template-columns: 1fr; }
  .promise-row .q::before {
    content: 'You’re wondering'; display: block;
    font-family: var(--mono); font-size: 0.55rem; font-weight: 700;
    letter-spacing: 0.17em; text-transform: uppercase;
    color: var(--dim-deep); margin-bottom: 0.4rem;
  }
  .promise-row .a::before {
    content: 'What we put in writing'; display: block;
    font-family: var(--mono); font-size: 0.55rem; font-weight: 700;
    letter-spacing: 0.17em; text-transform: uppercase;
    color: var(--ultra-hi); margin-bottom: 0.4rem;
  }
}

/* Horizontal reveal offsets push content past the right edge until they
   fire, which on a narrow screen is a real sideways scroll. Below the
   breakpoint the same elements reveal upward instead — same effect, no
   overflow. */
@media (max-width: 760px) {
  .reveal-left, .reveal-right { transform: translateY(22px); }
}

/* ══ PROOF SECTION (home) ════════════════════════════════════════
   Two projects sit where testimonials normally would. There are no
   testimonials to show yet, so the note says so plainly instead of
   leaving a gap the visitor has to interpret. */
#proof .work-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; }
@media (max-width: 760px) { #proof .work-grid { grid-template-columns: 1fr; max-width: 460px; } }

.proof-note {
  max-width: 900px;
  margin: 2.2rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
}
.proof-note p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--dim);
  max-width: 62ch;
}
.proof-note a {
  color: var(--ultra-ink);
  text-decoration: none;
  box-shadow: inset 0 -1px 0 var(--rule);
}
.proof-note a:hover { box-shadow: inset 0 -1px 0 var(--ultra-ink); }

/* A landscape capture already fills the browser frame, so it sits still
   and fits. Only a tall full-page capture earns the slow scroll. */
.site-view.is-fitted { height: auto; }
.site-view.is-fitted img { animation: none; }
.site-view.is-fitted::after { display: none; }

/* One remaining card shouldn't stretch across three columns */
.work-grid { grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); }
.work-grid:has(> :only-child) { grid-template-columns: minmax(0, 420px); }

/* ══ LIGHT FOOTER ════════════════════════════════════════════════
   The footer used to be the second half of the duotone — dark slab
   top, dark slab bottom, paper in between. On request it is now
   light. Delete this whole block to get the dark one back; nothing
   else depends on it. */
footer {
  background: var(--paper);
  color: var(--body);
  border-top: 1px solid var(--rule);
}
footer .footer-logo { color: var(--ink); }
footer .footer-logo span { color: var(--ultra-ink); }
footer .footer-tagline { color: var(--body); }
footer .footer-col-title { color: var(--ink); }
footer .footer-links a { color: var(--body); }
footer .footer-links a:hover { color: var(--ultra-ink); }
footer .footer-bottom { border-top-color: var(--rule); }
footer .footer-copy { color: var(--dim); }

/* one step down from the footer, so the legal strip still reads as a
   separate band without going muddy */
.legal-bar {
  background: var(--paper-lo);
  border-top: 1px solid var(--rule);
}
.legal-bar a, .legal-bar button { color: var(--body); }
.legal-bar a:hover, .legal-bar button:hover { color: var(--ultra-ink); }
.legal-bar .sep { color: var(--dim); }

/* ══ ABOUT: the location plate ═══════════════════════════════════
   About doesn't get a globe, a chatbot or a screenshot — those belong
   to the other pages. It gets the plain facts, set like an instrument
   readout, with the same Oslo coordinates the globe's beacon carries. */
.plate {
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  overflow: hidden;
}
.plate-row {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  gap: 1px;
  background: var(--glass-edge);
}
.plate-row > * { background: rgba(18, 23, 22, 0.72); padding: 0.95rem 1.15rem; }
.plate-key {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--dim-deep);
}
.plate-val { color: #F1F2EE; font-size: 0.9rem; line-height: 1.5; }
.plate-val .coord {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--ultra-hi);
  margin-top: 0.3rem;
}
@media (max-width: 560px) {
  .plate-row { grid-template-columns: 1fr; }
  .plate-key { padding-bottom: 0.3rem; }
  .plate-row > .plate-val { padding-top: 0.3rem; }
}

/* ── demo switcher: see the bot answer as YOUR business ───────────── */
.demo-switch {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  padding: 0.9rem 1.15rem 0;
}
.demo-switch-label {
  width: 100%;
  font-family: var(--mono); font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--dim-deep); margin-bottom: 0.15rem;
}
.demo-btn {
  font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(242,243,239,0.72);
  background: transparent;
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  padding: 0.42rem 0.68rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s;
}
.demo-btn:hover { color: #fff; border-color: rgba(255,255,255,0.28); }
.demo-btn[aria-pressed="true"] {
  background: var(--ultra); border-color: var(--ultra); color: #fff;
}

/* ── presence readout: the hero's answer to "will they be there?" ── */
.presence {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 0.7rem;
  row-gap: 0.25rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.85rem 1.1rem;
  margin-bottom: 2.2rem;
}
.presence-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--dim-deep);
  align-self: center;
  grid-row: 1;
}
.presence-dot.is-open {
  background: #3ED598;
  animation: ping 2.6s var(--ease) infinite;
}
.presence-line {
  grid-row: 1;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F1F2EE;
}
.presence-sub {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--body-deep);
}
@media (max-width: 620px) {
  .presence { padding: 0.75rem 0.9rem; }
  .presence-line { font-size: 0.64rem; letter-spacing: 0.1em; }
  .presence-sub { font-size: 0.78rem; }
}
