/* ============================================================
   BLUELAND STUDIO — Home, rebuilt (slop-free)
   Warm palette kept. No italics, no eyebrow kickers, no
   numbered card tiles, no floating chips, no gradient blobs.
   Emphasis = weight + colour. Editorial, asymmetric, big type.
   ============================================================ */
:root {
  --paper:    #F5F0E8;
  --paper-2:  #EEE7DB;
  --card:     #FFFFFF;
  --ink:      #17140F;
  --ink-2:    #211D17;
  --ink-soft: #56504634;  /* unused placeholder overwritten below */
}
:root {
  --ink-soft: #574F45;
  --ink-mute: #8B8272;
  --blue:     #1467DC;
  --blue-ink: #0E4EA8;
  --amber:    #E8863B;
  --line:     rgba(23,20,15,.14);
  --line-2:   rgba(23,20,15,.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.disp { font-family: 'Bricolage Grotesque', 'Manrope', sans-serif; }

/* ---------- NAV ---------- */
.nav { position: absolute; top: 0; left: 0; right: 0; z-index: 20; padding: 30px 0; }
.nav-in { max-width: 1280px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .mk { width: 30px; height: 30px; border-radius: 8px; background: conic-gradient(from 210deg, var(--blue), var(--amber), var(--blue)); transform: rotate(8deg); }
.brand .nm { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -.03em; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links > a { color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav-links > a:hover { color: var(--ink); }
.nav-cta { border: 1.5px solid var(--ink); border-radius: 100px; padding: 10px 20px !important; color: var(--ink) !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin: -8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle span + span { margin-top: 6px; }
.nav-foot { display: none; }

/* ---------- BUTTONS / LINKS ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: var(--paper); padding: 17px 30px; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 16px; transition: transform .18s, background .18s; }
.btn:hover { transform: translateY(-2px); background: var(--blue); }
.btn.pale { background: var(--ink); }
.arrow { transition: transform .18s; }
.btn:hover .arrow, .tlink:hover .arrow { transform: translateX(4px); }
.tlink { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 600; font-size: 16px; text-decoration: none; }
.tlink:hover { color: var(--blue); }
.tlink u { text-underline-offset: 5px; text-decoration-thickness: 1.5px; text-decoration-color: var(--line); }

/* ---------- HERO ---------- */
.hero { padding: 172px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 40px; align-items: center; }
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: clamp(48px, 6.6vw, 96px);
  line-height: .98; letter-spacing: -.045em; color: var(--ink);
  margin-bottom: 30px;
}
.hero h1 .hl { color: var(--blue); }
.hero p.sub { font-size: 20px; line-height: 1.55; color: var(--ink-soft); max-width: 40ch; margin-bottom: 38px; }
.hero .actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.hero .proof { font-size: 15px; color: var(--ink-mute); }
.hero .proof a { color: var(--ink); text-decoration: none; font-weight: 600; border-bottom: 1.5px solid var(--line); }
.hero .proof a:hover { border-color: var(--blue); color: var(--blue); }

.shot { position: relative; }
.shot::before {
  content: ""; position: absolute; z-index: 0;
  inset: 30px -30px -30px 30px;
  background: linear-gradient(150deg, #EAD1B0, #E8863B);
  opacity: .28; border-radius: 20px;
}
.shot-frame {
  position: relative; z-index: 1;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 50px 90px -40px rgba(23,20,15,.5);
}
.shot-frame img { filter: brightness(1.04) saturate(1.03); }
.shot-frame .bar { background: #ECE6DB; padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line-2); }
.shot-frame .bar i { width: 10px; height: 10px; border-radius: 50%; background: #CFC7B8; }
.shot-frame .bar .u { margin-left: 10px; font-size: 12px; color: var(--ink-mute); }
.shot-frame img { width: 100%; aspect-ratio: 16/10.5; object-fit: cover; object-position: top center; }
.shot-cap { margin-top: 16px; font-size: 14px; color: var(--ink-mute); display: flex; justify-content: space-between; gap: 12px; }
.shot-cap b { color: var(--ink); font-weight: 600; }

/* ---------- STATEMENT ---------- */
.statement { padding: 40px 0 110px; }
.statement .big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600; font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.18; letter-spacing: -.03em; color: var(--ink);
  max-width: 20ch;
}
.statement .big b { color: var(--blue); font-weight: 600; }
.statement .cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 72px; border-top: 1px solid var(--line); }
.statement .col { padding: 34px 34px 34px 0; border-right: 1px solid var(--line); }
.statement .col:last-child { border-right: 0; padding-right: 0; padding-left: 34px; }
.statement .col:nth-child(2) { padding-left: 34px; }
.statement .col h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 21px; letter-spacing: -.02em; color: var(--ink); margin-bottom: 12px; }
.statement .col p { font-size: 16px; line-height: 1.62; color: var(--ink-soft); }

/* ---------- WORK ---------- */
.work { padding: 106px 0; background: var(--paper-2); }
.work-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
.work-head h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 54px); letter-spacing: -.04em; color: var(--ink); }
.work-head a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 16px; border-bottom: 1.5px solid var(--line); }
.work-head a:hover { color: var(--blue); border-color: var(--blue); }
.work-item { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; padding: 44px 0; border-top: 1px solid var(--line); }
.work-item:last-child { border-bottom: 1px solid var(--line); }
.work-item .thumb { border-radius: 12px; overflow: hidden; box-shadow: 0 40px 70px -38px rgba(23,20,15,.45); border: 1px solid var(--line-2); }
.work-item .thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top center; }
.work-item:nth-child(even) .thumb { order: 2; }
.work-item .meta .tag { font-size: 14px; color: var(--ink-mute); margin-bottom: 10px; }
.work-item .meta h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(28px, 3vw, 38px); letter-spacing: -.03em; color: var(--ink); margin-bottom: 14px; }
.work-item .meta p { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 22px; max-width: 42ch; }

/* ---------- PRICING ---------- */
.pricing { padding: 110px 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: start; }
.pricing-lead h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 52px); letter-spacing: -.04em; color: var(--ink); margin-bottom: 20px; }
.pricing-lead p { font-size: 18px; line-height: 1.6; color: var(--ink-soft); max-width: 34ch; margin-bottom: 26px; }
.pricing-lead .note { font-size: 15px; color: var(--ink-mute); }
.card { background: var(--card); border: 1px solid var(--line-2); border-radius: 20px; padding: 40px; box-shadow: 0 40px 80px -46px rgba(23,20,15,.3); }
.card .plan { font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 14px; }
.card .price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 52px; letter-spacing: -.03em; color: var(--ink); line-height: 1; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.card .price .per { font-size: 17px; font-weight: 500; color: var(--ink-mute); }
.card .price .plus { font-size: 28px; color: var(--ink-mute); font-weight: 500; }
.card .pnote { font-size: 15px; color: var(--ink-soft); margin-bottom: 26px; }
.card .pnote b { color: var(--ink); }
.card .split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; border-top: 1px solid var(--line-2); padding-top: 26px; margin-bottom: 30px; }
.card .split .h { font-size: 13px; font-weight: 600; color: var(--ink-mute); margin-bottom: 14px; }
.card .split ul { list-style: none; }
.card .split li { font-size: 15px; color: var(--ink); padding: 6px 0; display: flex; gap: 9px; }
.card .split li .t { color: var(--blue); font-weight: 700; }
.card .btn { width: 100%; justify-content: center; }

/* ---------- CTA — full-bleed ink band, left-aligned, asymmetric ---------- */
.cta { background: var(--ink); color: var(--paper); padding: 130px 0; }
.cta .wrap { display: grid; grid-template-columns: 1.35fr .65fr; gap: 56px; align-items: center; }
.cta h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(40px, 6vw, 82px); letter-spacing: -.045em; line-height: .98; margin-bottom: 0; max-width: 14ch; }
.cta h2 .hl { color: #7FB0F0; }
.cta .cta-side { padding-bottom: 6px; }
.cta p { font-size: 18px; line-height: 1.55; color: rgba(245,240,232,.72); margin-bottom: 28px; }
.cta .btn { background: var(--paper); color: var(--ink); }
.cta .btn:hover { background: var(--blue); color: var(--paper); }
.cta .em { margin-top: 22px; font-size: 15px; color: rgba(245,240,232,.55); }
.cta .em a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(245,240,232,.3); }
@media (max-width: 940px) { .cta { padding: 90px 0; } .cta .wrap { grid-template-columns: 1fr; gap: 32px; align-items: start; } .cta h2 { max-width: 18ch; } }

/* ---------- FOOTER ---------- */
footer { background: var(--ink-2); color: rgba(245,240,232,.72); padding: 72px 0 34px; }
.foot { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 46px; }
.foot .brand .nm { color: var(--paper); }
.foot-brand p { margin-top: 14px; font-size: 14px; color: rgba(245,240,232,.5); max-width: 30ch; line-height: 1.6; }
.foot h4 { font-size: 14px; font-weight: 600; color: var(--paper); margin-bottom: 16px; }
.foot ul { list-style: none; }
.foot li { padding: 5px 0; }
.foot a { color: rgba(245,240,232,.72); text-decoration: none; font-size: 15px; }
.foot a:hover { color: var(--paper); }
.foot li.mut { color: rgba(245,240,232,.5); font-size: 14px; }
.foot-bottom { border-top: 1px solid rgba(245,240,232,.1); padding-top: 24px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(245,240,232,.5); }
.foot-bottom a { color: rgba(245,240,232,.72); text-decoration: none; }

/* ---------- LOGO (Blueland primary, Studio stacked beneath) — static mark ---------- */
.brand { align-items: center; }
.logo-txt { display: flex; flex-direction: column; line-height: 1; }
.brand .nm { line-height: 1; }
.brand .st { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; padding-left: 2px; }
.foot .brand .st { color: rgba(245,240,232,.5); }

/* ---------- NAV DROPDOWN ---------- */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav-item > a:hover { color: var(--ink); }
.nav-item > a .caret { font-size: 9px; color: var(--ink-mute); transition: transform .2s; }
.nav-item:hover > a .caret { transform: rotate(180deg); }
.drop { position: absolute; top: 100%; left: -14px; padding-top: 14px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.nav-item:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-inner { background: var(--card); border: 1px solid var(--line-2); border-radius: 14px; padding: 10px; box-shadow: 0 30px 60px -30px rgba(23,20,15,.35); min-width: 216px; }
.drop-inner a { display: block; padding: 11px 14px; border-radius: 9px; font-size: 15px; color: var(--ink-soft); text-decoration: none; font-weight: 500; }
.drop-inner a small { display: block; font-size: 12px; color: var(--ink-mute); font-weight: 400; margin-top: 2px; }
.drop-inner a:hover { background: var(--paper-2); color: var(--ink); }

/* ---------- HERO BADGES ---------- */
.badges { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 14px; }
.badges .b { font-weight: 600; color: var(--ink-soft); }
.badges .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); opacity: .75; }

/* ---------- HERO ART (abstract, brand-motif) ---------- */
.art { position: relative; width: 100%; max-width: 520px; margin-left: auto; aspect-ratio: 1 / 1; }
.orb-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform-origin: center; animation: ringSpin 40s linear infinite; pointer-events: none; }
.orb-ring text { font-family: 'Space Mono', monospace; font-weight: 400; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; fill: var(--ink-mute); }
@keyframes ringSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .orb-ring { animation: none; } }
@property --ang2 { syntax: '<angle>'; initial-value: 120deg; inherits: false; }
.art-orb {
  position: absolute; inset: 13%;
  border-radius: 44% 56% 57% 43% / 49% 45% 55% 51%;
  background: conic-gradient(from var(--ang2), #1467DC, #6AA0E8, #E8863B, #F0C9A0, #1467DC);
  box-shadow: 0 60px 130px -46px rgba(20,103,220,.55);
  animation: orbspin 16s linear infinite, orbmorph 15s ease-in-out infinite;
}
@keyframes orbspin { to { --ang2: 480deg; } }
@keyframes orbmorph {
  0%, 100% { border-radius: 44% 56% 57% 43% / 49% 45% 55% 51%; }
  50% { border-radius: 57% 43% 43% 57% / 54% 52% 48% 46%; }
}
.art-grain {
  position: absolute; inset: 13%; border-radius: 50%; pointer-events: none;
  opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.art-rings { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; animation: ringspin 60s linear infinite; }
.art-rings circle { fill: none; stroke: var(--ink); opacity: .13; }
.art-dot, .art-sq { position: absolute; will-change: transform; }
.art-dot { border-radius: 50%; }
.art-dot.a { width: 22px; height: 22px; background: var(--amber); top: 4%; right: 20%; animation: floaty 6s ease-in-out infinite; }
.art-dot.b { width: 13px; height: 13px; background: var(--blue); bottom: 12%; left: 4%; animation: floaty 7.5s ease-in-out infinite .6s; }
.art-sq { width: 28px; height: 28px; border-radius: 8px; background: var(--ink); top: 72%; right: 4%; animation: floatsq 8s ease-in-out infinite .2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes floatsq { 0%,100% { transform: translateY(0) rotate(16deg); } 50% { transform: translateY(-14px) rotate(24deg); } }
@keyframes ringspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .art-orb, .art-rings, .art-dot, .art-sq, .brand .mk { animation: none !important; }
}

/* ============================================================
   INTERIOR PAGES (services / work / pricing) — same system
   ============================================================ */
.page-hero { position: relative; padding: 178px 0 72px; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .crumb { font-size: 14px; color: var(--ink-mute); margin-bottom: 22px; }
.page-hero .crumb a { color: var(--ink-soft); text-decoration: none; }
.page-hero .crumb a:hover { color: var(--ink); }
.page-hero .crumb .sep { margin: 0 8px; opacity: .5; }
.page-hero h1 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(42px, 5.6vw, 80px); line-height: 1; letter-spacing: -.045em; color: var(--ink); max-width: 17ch; margin-bottom: 22px; }
.page-hero h1 .hl { color: var(--blue); }
.page-hero .lead { font-size: 20px; line-height: 1.55; color: var(--ink-soft); max-width: 54ch; }
.page-hero .ph-art { position: absolute; top: -80px; right: -70px; width: 360px; height: 360px; z-index: 0; border-radius: 44% 56% 57% 43% / 49% 45% 55% 51%; background: conic-gradient(from 120deg, #1467DC, #6AA0E8, #E8863B, #F0C9A0, #1467DC); opacity: .15; animation: orbmorph 15s ease-in-out infinite; pointer-events: none; }

.ihead { margin-bottom: 52px; }
.ihead h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 52px); letter-spacing: -.04em; color: var(--ink); margin-bottom: 16px; }
.ihead h2 .hl { color: var(--blue); }
.ihead p { font-size: 18px; color: var(--ink-soft); max-width: 56ch; line-height: 1.6; }
.ihead.center { text-align: center; }
.ihead.center p { margin-left: auto; margin-right: auto; }

/* Service rows — editorial alternating text ↔ bespoke graphic, no cards */
.svc { padding: 34px 0 100px; }
.srow { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 84px 0; border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.srow:first-child { border-top: 0; padding-top: 28px; }
.srow:nth-child(even) .srow-media { order: -1; }
.srow-text h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(32px, 3.8vw, 48px); letter-spacing: -.035em; line-height: 1; color: var(--ink); margin-bottom: 18px; }
.srow-text > p { font-size: 18px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 28px; max-width: 46ch; }
.flist { list-style: none; }
.flist li { display: flex; gap: 12px; padding: 12px 0; font-size: 16px; color: var(--ink); border-top: 1px solid var(--line-2); }
.flist li:first-child { border-top: 0; }
.flist li .t { color: var(--blue); font-weight: 700; }
.logos-row { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line-2); }
.logos-row img { height: 24px; width: auto; object-fit: contain; opacity: .7; filter: grayscale(35%); }
.srow-media { position: relative; width: 100%; max-width: 440px; margin: 0 auto; aspect-ratio: 1 / 1; }
.srow-media svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* Integrations — interactive molecule (logos as atoms) */
.molecule { position: relative; width: 100%; height: 100%; }
.molecule .lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.molecule .lines line { stroke: var(--ink); stroke-width: 1.5; opacity: .2; vector-effect: non-scaling-stroke; transition: opacity .25s, stroke .25s; }
.node { position: absolute; transform: translate(-50%, -50%); }
.node .dot { width: 72px; height: 72px; border-radius: 50%; background: var(--card); border: 1px solid var(--line-2); box-shadow: 0 14px 30px -14px rgba(23,20,15,.32); display: flex; align-items: center; justify-content: center; transition: transform .24s cubic-bezier(.2,.8,.2,1), box-shadow .24s, border-color .24s; }
.node .dot img { width: 56%; height: 56%; object-fit: contain; pointer-events: none; }
.node.n6 .dot img { filter: invert(1); } /* Cal.com ships a white logo — flip for the light node */
.node:hover { z-index: 6; }
.node:hover .dot { transform: translateY(-5px) scale(1.1); box-shadow: 0 26px 46px -16px rgba(23,20,15,.42); border-color: var(--blue); }
.node .tip { position: absolute; top: calc(100% + 9px); left: 50%; transform: translateX(-50%); white-space: nowrap; font-size: 12px; font-weight: 600; color: var(--ink); background: var(--card); border: 1px solid var(--line-2); padding: 4px 10px; border-radius: 100px; opacity: 0; transition: opacity .2s; pointer-events: none; box-shadow: 0 8px 18px -10px rgba(23,20,15,.3); }
.node:hover .tip { opacity: 1; }
.node.hub .dot { width: 92px; height: 92px; background: conic-gradient(from 210deg, #1467DC, #E8863B, #1467DC); border: 0; box-shadow: 0 22px 46px -16px rgba(20,103,220,.5); }
.node.hub:hover .dot { transform: scale(1.04); }
.node:not(.hub) .dot { animation: floatDot 6s ease-in-out infinite; }
.node.n2 .dot { animation-delay: -1s; } .node.n3 .dot { animation-delay: -2s; }
.node.n4 .dot { animation-delay: -3s; } .node.n5 .dot { animation-delay: -4s; } .node.n6 .dot { animation-delay: -5s; }
@keyframes floatDot { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.molecule:has(.n1:hover) .l1, .molecule:has(.n2:hover) .l2, .molecule:has(.n3:hover) .l3,
.molecule:has(.n4:hover) .l4, .molecule:has(.n5:hover) .l5, .molecule:has(.n6:hover) .l6 { opacity: .85; stroke: var(--blue); }
/* tap parity for touch (JS toggles .tapped / .hot) */
.node { cursor: pointer; }
.node.tapped { z-index: 6; }
.node.tapped .dot { transform: translateY(-5px) scale(1.1); box-shadow: 0 26px 46px -16px rgba(23,20,15,.42); border-color: var(--blue); }
.node.hub.tapped .dot { transform: scale(1.04); }
.node.tapped .tip { opacity: 1; }
.molecule .lines line.hot { opacity: .85; stroke: var(--blue); }
@media (prefers-reduced-motion: reduce) { .node .dot { animation: none !important; } }

/* AI search — animated chat simulation */
.srow-media.chat { aspect-ratio: auto; display: flex; align-items: center; }
.aichat { width: 100%; max-width: 430px; margin: 0 auto; background: var(--card); border: 1px solid var(--line-2); border-radius: 20px; padding: 24px 22px; box-shadow: 0 30px 60px -32px rgba(23,20,15,.28); display: flex; flex-direction: column; gap: 15px; }
.chat-row { display: flex; gap: 10px; align-items: flex-end; }
.chat-row.user { justify-content: flex-end; }
.chat-row .avatar { width: 30px; height: 30px; border-radius: 8px; background: conic-gradient(from 210deg, #1467DC, #E8863B, #1467DC); flex-shrink: 0; }
.aichat .bubble { max-width: 84%; font-size: 14.5px; line-height: 1.5; padding: 11px 14px; border-radius: 15px; min-height: 22px; }
.chat-row.user .bubble { background: var(--ink); color: var(--paper); border-bottom-right-radius: 5px; }
.chat-row.ai .bubble { background: var(--paper-2); color: var(--ink); border-bottom-left-radius: 5px; }
.aichat .url { color: var(--blue); font-weight: 600; }
.aichat .ct { display: inline-block; width: 2px; height: 1.05em; background: currentColor; margin-left: 1px; vertical-align: -2px; animation: acBlink 1s step-end infinite; }
@keyframes acBlink { 50% { opacity: 0; } }
.aichat .dots { display: none; gap: 4px; padding: 3px 2px; }
.aichat .dots.on { display: inline-flex; }
.aichat .dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-mute); animation: acDot 1.2s infinite; }
.aichat .dots span:nth-child(2) { animation-delay: .2s; }
.aichat .dots span:nth-child(3) { animation-delay: .4s; }
@keyframes acDot { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

/* Branding — Blueland's own logo, constructed live */
.logobuild { position: relative; width: 100%; max-width: 300px; margin: 0 auto; text-align: center; transition: opacity .5s; }
.logobuild.s-out { opacity: 0; }
.logobuild.noanim, .logobuild.noanim * { transition: none !important; }
.bl-stage { position: relative; width: 100%; aspect-ratio: 1 / 1; }
.bl-stage .guides { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.bl-stage .guides > * { fill: none; stroke: #1467DC; stroke-width: 1; vector-effect: non-scaling-stroke; opacity: 0; transition: opacity .5s; }
.logobuild.s-guides .guides > *, .logobuild.s-draw .guides > * { opacity: .45; }
.logobuild.s-fill .guides > * { animation: guidesOut 2.5s ease forwards; }
@keyframes guidesOut { 0% { opacity: .45; } 42% { opacity: .3; } 100% { opacity: 0; } }
.bl-stage .mk-ring { stroke: #0B3F8F !important; stroke-width: 2.5 !important; opacity: 1 !important; stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1s ease, opacity .5s; }
.logobuild.s-draw .mk-ring { stroke-dashoffset: 0; }
.logobuild.s-fill .mk-ring, .logobuild.s-word .mk-ring, .logobuild.s-tag .mk-ring { stroke-dashoffset: 0; opacity: 0 !important; }
@property --reveal { syntax: '<percentage>'; initial-value: -32%; inherits: false; }
.bl-mark { position: absolute; top: 50%; left: 50%; width: 50%; height: 50%; transform: translate(-50%, -50%) rotate(8deg); filter: drop-shadow(0 20px 32px rgba(20,103,220,.42)); }
.bl-coat { position: absolute; inset: 0; border-radius: 23%; --reveal: -36%; }
.bl-coat.amber { background: linear-gradient(150deg, #F4A657, #DE7A2A);
  -webkit-mask-image: linear-gradient(114deg, #000 var(--reveal), rgba(0,0,0,.32) calc(var(--reveal) + 15%), transparent calc(var(--reveal) + 32%));
  mask-image: linear-gradient(114deg, #000 var(--reveal), rgba(0,0,0,.32) calc(var(--reveal) + 15%), transparent calc(var(--reveal) + 32%));
  transition: --reveal 1.15s cubic-bezier(.4, 0, .2, 1); }
.bl-coat.conic { background: conic-gradient(from 210deg, #1467DC, #E8863B, #1467DC);
  -webkit-mask-image: linear-gradient(306deg, #000 var(--reveal), rgba(0,0,0,.32) calc(var(--reveal) + 15%), transparent calc(var(--reveal) + 32%));
  mask-image: linear-gradient(306deg, #000 var(--reveal), rgba(0,0,0,.32) calc(var(--reveal) + 15%), transparent calc(var(--reveal) + 32%));
  transition: --reveal 1.25s cubic-bezier(.4, 0, .2, 1) 1s; }
.bl-coat.conic .bl-grain { position: absolute; inset: 0; border-radius: inherit; mix-blend-mode: soft-light; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 130px; }
.logobuild.s-fill .bl-coat { --reveal: 132%; }
@media (prefers-reduced-motion: reduce) { .bl-coat, .lw { transition: none; } .guides > * { animation: none; } .logobuild.s-fill .guides > * { opacity: 0; } }
@property --wipe { syntax: '<percentage>'; initial-value: -10%; inherits: false; }
.lw-wrap { position: relative; display: inline-block; margin-top: -26px; }
.lw { --wipe: -10%;
  -webkit-mask-image: linear-gradient(90deg, #000 var(--wipe), rgba(0,0,0,.5) calc(var(--wipe) + 4%), transparent calc(var(--wipe) + 9%));
  mask-image: linear-gradient(90deg, #000 var(--wipe), rgba(0,0,0,.5) calc(var(--wipe) + 4%), transparent calc(var(--wipe) + 9%));
  transition: --wipe 2.35s cubic-bezier(.42, 0, .24, 1); }
.logobuild.s-fill .lw { --wipe: 116%; }
.lw .wm { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 32px; letter-spacing: -.03em; color: var(--ink); line-height: 1; }
.lw .tag { margin-top: 8px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-mute); }

/* Web design — hero mockup cycling colour palettes */
.srow-media.free { aspect-ratio: auto; display: flex; align-items: center; }
.hero-mock { position: relative; width: 100%; max-width: 430px; margin: 0 auto; aspect-ratio: 5 / 4; border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 80px -42px rgba(23,20,15,.4), 0 0 0 1px rgba(23,20,15,.06);
  --bg: #F5F0E8; --fg: #17140F; --acc: #1467DC; --mut: rgba(23,20,15,.11);
  background: var(--bg); transition: background .7s ease; }
.hero-mock.pal-2 { --bg: #101820; --fg: #EAF0F3; --acc: #37D399; --mut: rgba(255,255,255,.13); }
.hero-mock.pal-3 { --bg: #FFF3EA; --fg: #2B1A10; --acc: #FF6A45; --mut: rgba(43,26,16,.11); }
.hero-mock.pal-4 { --bg: #F0ECFF; --fg: #1D1533; --acc: #7C5CFC; --mut: rgba(29,21,51,.11); }
.hm-top { display: flex; gap: 6px; padding: 13px 15px; }
.hm-top span { width: 9px; height: 9px; border-radius: 50%; background: var(--mut); transition: background .7s; }
.hm-body { padding: 2px 26px 26px; }
.hm-nav { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.hm-logo { width: 20px; height: 20px; border-radius: 6px; background: var(--acc); transition: background .7s; }
.hm-nav .l { height: 7px; border-radius: 4px; background: var(--mut); transition: background .7s; }
.hm-nav .l1 { width: 34px; } .hm-nav .l2 { width: 30px; } .hm-nav .l3 { width: 26px; margin-left: auto; }
.hm-hero { display: grid; grid-template-columns: 1.3fr .7fr; gap: 20px; align-items: center; }
.hm-h { height: 15px; border-radius: 5px; background: var(--fg); transition: background .7s; }
.hm-h.h1 { width: 94%; margin-bottom: 9px; } .hm-h.h2 { width: 64%; margin-bottom: 18px; }
.hm-s { height: 7px; border-radius: 4px; background: var(--mut); transition: background .7s; }
.hm-s.s1 { width: 100%; margin-bottom: 7px; } .hm-s.s2 { width: 76%; margin-bottom: 22px; }
.hm-btn { width: 96px; height: 30px; border-radius: 100px; background: var(--acc); transition: background .7s; }
.hm-shape { width: 100%; aspect-ratio: 1 / 1.25; border-radius: 14px; background: var(--acc); transition: background .7s; }

/* Work cases page */
.cases { padding: 34px 0 100px; }
.cases .work-item { border-top: 1px solid var(--line); }
.cases .work-item:last-child { border-bottom: 1px solid var(--line); }
.tagrow { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 22px; }
.tagrow .pill { font-size: 13px; font-weight: 600; color: var(--ink-soft); background: var(--paper-2); border: 1px solid var(--line-2); padding: 7px 14px; border-radius: 100px; }

/* Pricing page extras */
.plan-custom { max-width: 780px; margin: 28px auto 0; background: var(--ink); color: var(--paper); border-radius: 20px; padding: 36px 40px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: center; }
.plan-custom .lbl { font-size: 13px; font-weight: 600; color: #E8A87C; margin-bottom: 10px; }
.plan-custom h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 24px; margin-bottom: 12px; }
.plan-custom p { color: rgba(245,240,232,.72); font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.plan-custom .logos { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.plan-custom .logos img { height: 22px; filter: brightness(0) invert(1); opacity: .8; }
.plan-custom .from { text-align: right; }
.plan-custom .from .amt { color: rgba(245,240,232,.72); font-size: 15px; margin-bottom: 6px; }
.plan-custom .from .amt b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 26px; color: var(--paper); }
.plan-custom .from .fn { font-size: 12px; color: rgba(245,240,232,.5); margin-bottom: 16px; }
.plan-custom .from .btn { background: var(--paper); color: var(--ink); }
.plan-foot { text-align: center; margin-top: 28px; font-size: 15px; color: var(--ink-soft); }
.plan-foot a { color: var(--blue); font-weight: 600; text-decoration: none; }

/* FAQ */
.faq { max-width: 860px; }
#faq .ihead, #faq .faq { max-width: 860px; margin-left: auto; margin-right: auto; }

/* Legal pages (privacy / terms / refunds) */
.legal { max-width: 760px; margin: 0 auto; }
.legal > p, .legal li { font-size: 16px; line-height: 1.72; color: var(--ink-soft); }
.legal > p { margin-bottom: 16px; }
.legal h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(21px, 2.4vw, 28px); letter-spacing: -.02em; color: var(--ink); margin: 46px 0 14px; }
.legal h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -.01em; color: var(--ink); margin: 26px 0 10px; }
.legal ul { margin: 0 0 18px; padding-left: 22px; }
.legal li { margin-bottom: 9px; }
.legal li::marker { color: var(--amber); }
.legal a { color: var(--blue); text-decoration: none; font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal em { font-style: italic; }
.legal code { font-family: monospace; font-size: .9em; background: var(--paper-2); padding: 1px 6px; border-radius: 5px; }
.legal-contact { margin-top: 24px; padding: 24px 26px; background: var(--card); border: 1px solid var(--line-2); border-radius: 16px; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.legal-contact strong { color: var(--ink); }
.legal-contact a { color: var(--blue); text-decoration: none; }

/* Utility pages (thanks / 404) */
.util { min-height: 66vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 130px 0 90px; }
.util-inner { max-width: 620px; }
.util .badge { width: 76px; height: 76px; border-radius: 22px; background: conic-gradient(from 210deg, #1467DC, #E8863B, #1467DC); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 30px; box-shadow: 0 22px 46px -16px rgba(20,103,220,.5); transform: rotate(6deg); }
.util .badge svg { width: 34px; height: 34px; stroke: #fff; fill: none; stroke-width: 3; }
.util .code { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(96px, 18vw, 176px); line-height: .85; letter-spacing: -.06em; color: var(--ink); margin-bottom: 14px; }
.util .code .hl { color: var(--blue); }
.util h1 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(34px, 4.5vw, 54px); letter-spacing: -.04em; line-height: 1; color: var(--ink); margin-bottom: 20px; }
.util h1 .hl { color: var(--blue); }
.util .lead { font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 48ch; margin: 0 auto 12px; }
.util .fine { font-size: 15px; color: var(--ink-mute); margin-bottom: 34px; }
.util .fine a { color: var(--blue); text-decoration: none; }
.util .actions { display: inline-flex; gap: 22px; align-items: center; flex-wrap: wrap; justify-content: center; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 19px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq .pm { font-size: 22px; color: var(--ink-mute); font-weight: 400; flex-shrink: 0; transition: transform .3s, color .2s; }
.faq details[open] .pm { color: var(--blue); transform: rotate(45deg); }
.faq .ans { padding: 0 0 26px; font-size: 16px; color: var(--ink-soft); line-height: 1.65; max-width: 70ch; }
.faq .ans a { color: var(--blue); font-weight: 600; text-decoration: none; }

@media (max-width: 940px) {
  .page-hero { padding: 128px 0 56px; }
  .srow { grid-template-columns: 1fr; gap: 32px; padding: 44px 0; }
  .srow:nth-child(even) .svis { order: 0; }
  .plan-custom { grid-template-columns: 1fr; gap: 24px; padding: 30px 26px; }
  .plan-custom .from { text-align: left; }
}

/* ============================================================
   FREE DEMO — form page
   ============================================================ */
.demo { padding: 150px 0 100px; }
.demo-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 64px; align-items: start; }
.demo h1 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(38px, 5vw, 64px); letter-spacing: -.045em; line-height: 1; color: var(--ink); margin-bottom: 20px; }
.demo h1 .hl { color: var(--blue); }
.demo .lead { font-size: 19px; color: var(--ink-soft); line-height: 1.55; max-width: 50ch; margin-bottom: 40px; }
.form { display: flex; flex-direction: column; gap: 22px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: var(--ink); }
.field label .req { color: var(--blue); }
.field .hint { display: block; font-weight: 400; font-size: 13px; color: var(--ink-mute); margin-top: 3px; }
.field input, .field select, .field textarea { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; color: var(--ink); font-family: 'Inter', sans-serif; font-size: 15px; width: 100%; transition: border-color .2s; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; cursor: pointer; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238B8272' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.filelabel { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px dashed var(--line); border-radius: 12px; padding: 14px 16px; color: var(--ink-soft); font-size: 14px; cursor: pointer; transition: border-color .2s; }
.filelabel:hover { border-color: var(--blue); }
.filelabel .fn { margin-left: auto; color: var(--ink-mute); font-size: 13px; max-width: 50%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.ordiv { display: flex; align-items: center; gap: 14px; color: var(--ink-mute); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.ordiv::before, .ordiv::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.form .btn { align-self: flex-start; border: 0; cursor: pointer; margin-top: 8px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.demo-aside { position: sticky; top: 110px; background: var(--card); border: 1px solid var(--line-2); border-radius: 20px; padding: 36px 32px; }
.demo-aside h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 20px; color: var(--ink); margin-bottom: 26px; }
.steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 28px; }
.step { display: flex; gap: 16px; align-items: baseline; }
.step .n { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 20px; color: var(--blue); flex-shrink: 0; width: 24px; }
.step h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.step p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.demo-aside .fineprint { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-2); font-size: 13px; color: var(--ink-mute); line-height: 1.55; }

@media (max-width: 940px) {
  .demo { padding: 120px 0 72px; }
  .demo-grid { grid-template-columns: 1fr; gap: 40px; }
  .demo-aside { position: static; }
  .frow { grid-template-columns: 1fr; }
}

/* ---------- SCROLL REVEAL ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: .08s; }
[data-reveal][data-d="2"] { transition-delay: .16s; }
[data-reveal][data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 940px) {
  .wrap, .nav-in { padding: 0 24px; }
  .nav-links > a:not(.nav-cta) { display: none; }
  .hero { padding: 128px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .statement .cols { grid-template-columns: 1fr; }
  .statement .col, .statement .col:last-child, .statement .col:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 0; }
  .statement .col:last-child { border-bottom: 0; }
  .work-item, .work-item:nth-child(even) .thumb { grid-template-columns: 1fr; gap: 28px; }
  .work-item:nth-child(even) .thumb { order: 0; }
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .card .split { grid-template-columns: 1fr; gap: 22px; }
  .foot { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot > div:last-child { grid-column: 1 / -1; }
}
/* ---------- MOBILE NAV MENU + structure fixes ---------- */
@media (max-width: 940px) {
  .nav-toggle { display: block; position: relative; z-index: 70; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

  .nav-links {
    position: fixed; top: 0; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 84px 26px 26px;
    border-radius: 0 0 26px 26px;
    box-shadow: 0 34px 70px -26px rgba(23,20,15,.4);
    transform: translateY(-102%);
    transition: transform .44s cubic-bezier(.34, 0, .2, 1);
    z-index: 65; max-height: 92vh; overflow-y: auto;
  }
  .nav.open .nav-links { transform: translateY(0); }
  .nav-links > a, .nav-item > a {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 15px 2px; border-bottom: 1px solid var(--line-2);
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 25px; letter-spacing: -.02em; color: var(--ink);
  }
  .nav-links > a:not(.nav-cta) { display: flex; }
  .nav-links > a:not(.nav-cta)::after { content: "\2197"; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: var(--ink-mute); }
  .nav-item { width: 100%; position: static; }
  .nav-item > a .caret { display: inline-block; font-size: 15px; color: var(--ink-mute); transition: transform .3s ease, color .2s; }
  .nav-item.open > a .caret { transform: rotate(180deg); color: var(--blue); }
  .drop { display: block; position: static; opacity: 1; visibility: visible; transform: none; padding: 0; max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4, 0, .2, 1); }
  .nav-item.open .drop { max-height: 320px; }
  .drop-inner { background: none; border: 0; box-shadow: none; border-radius: 0; padding: 6px 0 12px 2px; min-width: 0; }
  .drop-inner a { display: flex; align-items: baseline; gap: 9px; padding: 7px 0; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px; color: var(--ink-soft); }
  .drop-inner a::before { content: "\2014"; color: var(--amber); }
  .drop-inner a small { display: none; }
  .nav-cta { align-self: center; margin-top: 20px !important; border: 0 !important; border-radius: 100px !important; background: var(--ink) !important; color: var(--paper) !important; padding: 14px 34px !important; font-family: 'Inter', sans-serif; font-size: 16px !important; justify-content: center; }
  .nav-cta:hover { background: var(--blue) !important; color: var(--paper) !important; }
  .nav-foot { display: block; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line-2); }
  .nav-foot a { display: inline-block; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 17px; color: var(--ink); text-decoration: none; margin-bottom: 3px; }
  .nav-foot span { display: block; font-size: 13px; color: var(--ink-mute); }
  .nav.open .nav-links > * { animation: navItem .44s cubic-bezier(.3, 0, .2, 1) backwards; }
  .nav.open .nav-links > *:nth-child(1) { animation-delay: .10s; }
  .nav.open .nav-links > *:nth-child(2) { animation-delay: .16s; }
  .nav.open .nav-links > *:nth-child(3) { animation-delay: .22s; }
  .nav.open .nav-links > *:nth-child(4) { animation-delay: .28s; }
  .nav.open .nav-links > *:nth-child(5) { animation-delay: .34s; }
  .nav.open::before { content: ""; position: fixed; inset: 0; background: rgba(23,20,15,.42); z-index: 64; opacity: 0; animation: navFade .4s forwards; }

  /* services collapse */
  .srow { grid-template-columns: 1fr; gap: 40px; padding: 52px 0; }
  .srow:first-child { padding-top: 20px; }
  .srow:nth-child(even) .srow-media { order: 0; }
  .srow-media { max-width: 300px; }
  .node .dot { width: 56px; height: 56px; }
  .node.hub .dot { width: 72px; height: 72px; }
  .logos-row { gap: 24px; }

  /* overflow safety */
  .hero h1, .page-hero h1, .cta h2, .srow-top h2, h2 { overflow-wrap: break-word; }
}
@keyframes navItem { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
@keyframes navFade { to { opacity: 1; } }
