/* ============================================================
   Quacktory — editorial travel-journal crit applied to rubber ducks
   Palette: cool blue-gray + per-line warm/cool accents
   Pattern B: frame-in-frame (blurred field + centered dark card)
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: #ffffff;
  background: #2c2d34;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
dl, dt, dd { margin: 0; }
:focus-visible { outline: 1px solid #ffffff; outline-offset: 3px; }

/* === Page field (blurred photo behind everything) === */
.page-bg {
  position: fixed;
  inset: -40px;
  background: url('./assets/hero-lifestyle.jpg') center/cover no-repeat;
  filter: blur(38px) brightness(0.32) saturate(0.65);
  transform: scale(1.18);
  z-index: -2;
}
.page-vignette {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(31,32,36,0.55) 100%),
    linear-gradient(180deg, rgba(31,32,36,0.35) 0%, transparent 30%, transparent 70%, rgba(31,32,36,0.5) 100%);
}

/* === Top bar === */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 36px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(31,32,36,0.55) 0%, rgba(31,32,36,0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.topbar__social {
  display: flex;
  gap: 14px;
  justify-self: start;
}
.social-icon {
  display: inline-flex;
  width: 16px; height: 16px;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}
.social-icon:hover { opacity: 1; transform: translateY(-1px); }
.social-icon svg { width: 100%; height: 100%; }
.topbar__logo {
  justify-self: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.36em;
  padding: 0 0.36em;
}
.topbar__nav {
  justify-self: end;
  display: flex;
  gap: 28px;
}
.topbar__nav a {
  position: relative;
  opacity: 0.72;
  transition: opacity 0.2s;
}
.topbar__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 1px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.topbar__nav a:hover { opacity: 1; }
.topbar__nav a:hover::after { transform: scaleX(1); }

/* === Hero (frame-in-frame) === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 32px 64px;
  position: relative;
}
.hero__card {
  position: relative;
  width: 100%;
  max-width: 1240px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #1f2024;
  box-shadow:
    0 40px 90px -25px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.02);
  isolation: isolate;
}
.hero__pane {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: url('./assets/hero-lifestyle.jpg') center/cover no-repeat;
}
.hero__pane--left {
  left: 0;
  filter: blur(16px) brightness(0.42) saturate(0.6);
  transform: scale(1.06);
}
.hero__pane--right {
  right: 0;
  filter: brightness(0.92) contrast(1.04);
}
.hero__pane--right::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31,32,36,0.18) 0%, rgba(31,32,36,0.0) 30%, rgba(31,32,36,0.55) 100%),
    linear-gradient(90deg, transparent 60%, rgba(31,32,36,0.15) 100%);
}
.hero__pane--left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31,32,36,0.25) 0%, transparent 100%);
}
.hero__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.12) 30%, rgba(255,255,255,0.12) 70%, transparent 100%);
  z-index: 2;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  pointer-events: none;
}
.hero__caption {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
}
.hero__headline {
  font-size: clamp(72px, 13.5vw, 168px);
  font-weight: 200;
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 30px;
  white-space: nowrap;
}
.hero__word {
  display: inline-block;
}
.hero__word--left {
  color: rgba(255,255,255,0.34);
  margin-right: 0.05em;
}
.hero__word--right {
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(31,32,36,0.55);
}
.hero__copy {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  max-width: 340px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 30px;
  text-shadow: 0 1px 8px rgba(31,32,36,0.5);
}
.hero__cta {
  pointer-events: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: #ffffff;
  color: #1f2024;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.hero__cta:hover {
  background: #bcbcbc;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(255,255,255,0.4);
}

/* === Vertical line nav (crit's right-side pagination) === */
.hero__line-nav {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.line-dot {
  display: grid;
  grid-template-columns: 14px auto auto;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  text-align: left;
  position: relative;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
}
.line-dot__diamond {
  width: 9px; height: 9px;
  border: 1px solid rgba(255,255,255,0.55);
  transform: rotate(45deg);
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.line-dot__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease, transform 0.3s ease;
  transform: translateX(-4px);
  opacity: 0;
  pointer-events: none;
}
.line-dot__size {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
  opacity: 0;
  transform: translateX(-4px);
}
.line-dot:hover .line-dot__label,
.line-dot.is-active .line-dot__label,
.line-dot:hover .line-dot__size,
.line-dot.is-active .line-dot__size {
  color: rgba(255,255,255,0.95);
  opacity: 1;
  transform: translateX(0);
}
.line-dot.is-active .line-dot__label { color: var(--line-color); }
.line-dot:hover .line-dot__diamond,
.line-dot.is-active .line-dot__diamond {
  background: var(--line-color);
  border-color: var(--line-color);
  box-shadow: 0 0 14px var(--line-color), 0 0 4px var(--line-color);
  transform: rotate(45deg) scale(1.1);
}
.line-dot.is-active .line-dot__diamond {
  animation: linepulse 2.6s ease-in-out infinite;
}
@keyframes linepulse {
  0%, 100% { box-shadow: 0 0 8px var(--line-color), 0 0 2px var(--line-color); }
  50%      { box-shadow: 0 0 22px var(--line-color), 0 0 6px var(--line-color); }
}

/* === Manifesto strip === */
.manifesto {
  padding: 130px 32px;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__line {
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 200;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 10px;
}
.manifesto__line:nth-child(2) {
  color: #bcbcbc;
  font-style: italic;
}
.manifesto__line:nth-child(3) {
  color: rgba(255,255,255,0.7);
  font-size: 0.7em;
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* === Scale section === */
.scale {
  padding: 100px 36px 60px;
  max-width: 1280px;
  margin: 0 auto;
}
.scale__head {
  max-width: 640px;
  margin-bottom: 64px;
}
.scale__eyebrow,
.journal__eyebrow,
.b2b__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #bcbcbc;
  margin-bottom: 18px;
}
.scale__title,
.journal__title,
.b2b__title {
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: #ffffff;
}
.scale__lede,
.journal__lede {
  margin-top: 22px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

/* === Scale visual: 5 ducks with under-glow === */
.scale__visual {
  position: relative;
  margin: 0 0 70px;
  padding: 48px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.scale__ruler {
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 12%, rgba(255,255,255,0.15) 88%, transparent 100%);
}
.scale__ducks {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  min-height: 280px;
  padding: 0 4px;
}
.duck {
  flex: 1 1 0;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0;
}
.duck__img {
  position: relative;
  width: var(--h, 80px);
  height: var(--h, 80px);
  margin-bottom: 18px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 12px 30px -10px var(--line-color),
    0 0 60px -10px var(--line-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.duck__img::after {
  content: '';
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 50%;
  background: radial-gradient(ellipse at center, var(--line-color), transparent 65%);
  filter: blur(14px);
  opacity: 0.45;
  pointer-events: none;
}
.duck__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.duck figcaption {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--line-color);
  font-variant-numeric: tabular-nums;
}
.duck:hover .duck__img {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 18px 36px -8px var(--line-color),
    0 0 80px -8px var(--line-color);
}

/* === Scale data rail === */
.scale__rail {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.scale__row {
  display: grid;
  grid-template-columns: 60px 1.4fr 1fr 1.2fr 1.6fr 0.9fr;
  align-items: center;
  gap: 24px;
  padding: 30px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.scale__row::before {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 2px;
  background: var(--line-color);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
  box-shadow: 0 0 12px var(--line-color);
}
.scale__row:hover {
  background: rgba(255,255,255,0.025);
  padding-left: 36px;
}
.scale__row:hover::before { transform: scaleY(1); }
.scale__num {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #bcbcbc;
  font-variant-numeric: tabular-nums;
}
.scale__name {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.scale__size {
  font-size: 14px;
  font-weight: 500;
  color: var(--line-color);
  letter-spacing: 0.02em;
}
.scale__comp {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}
.scale__aud {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
}
.scale__price {
  font-size: 13px;
  font-weight: 400;
  text-align: right;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
}

/* === Journal / production grid === */
.journal {
  padding: 110px 36px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.journal__head { margin-bottom: 60px; }
.journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.entry {
  padding: 42px 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: background 0.3s ease;
}
.entry::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: #bcbcbc;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.entry:hover { background: rgba(255,255,255,0.025); }
.entry:hover::before { transform: scaleX(1); }
.entry__num {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: #bcbcbc;
  margin-bottom: 22px;
}
.entry__title {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: #ffffff;
}
.entry p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}

/* === B2B / Custom === */
.b2b {
  padding: 100px 36px;
  max-width: 1280px;
  margin: 0 auto;
}
.b2b__panel {
  background: #1f2024;
  border-radius: 20px;
  padding: 64px 60px 56px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 40px 70px -30px rgba(0,0,0,0.55);
  position: relative;
  overflow: hidden;
}
.b2b__panel::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(244,211,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.b2b__lede {
  margin: 22px 0 40px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
}
.b2b__palette {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  margin-bottom: 44px;
}
.b2b__palette li {
  aspect-ratio: 1;
  background: var(--swatch);
  border-radius: 6px;
  position: relative;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 5px 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.b2b__palette li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.2);
}

.b2b__meta {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.b2b__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: baseline;
  font-size: 13px;
  font-weight: 300;
}
.b2b__row dt {
  color: #bcbcbc;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
}
.b2b__row dd { color: rgba(255,255,255,0.88); }

.b2b__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: #ffffff;
  color: #1f2024;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.b2b__cta:hover {
  background: #bcbcbc;
  transform: translateY(-1px);
}

/* === Footer === */
.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 36px 40px;
  max-width: 1280px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
}
.footer__col p,
.footer__col a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  display: block;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: #ffffff; }
.footer__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #bcbcbc;
  margin-bottom: 20px;
}

/* === Modal === */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31,32,36,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadein 0.3s ease;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal__dialog {
  position: relative;
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  background: #1f2024;
  border-radius: 18px;
  padding: 52px 48px 48px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.7);
  animation: rise 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.modal__close:hover {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  transform: rotate(90deg);
}
.modal__num {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: #bcbcbc;
  margin-bottom: 12px;
}
.modal__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 28px;
  color: #ffffff;
}
.modal__img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 28px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
  background: rgba(255,255,255,0.03);
}
.modal__copy {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}
.modal__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  margin-bottom: 32px;
}
.modal__specs dt {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bcbcbc;
  margin-bottom: 4px;
  font-weight: 500;
}
.modal__specs dd {
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  font-weight: 300;
}
.modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: #ffffff;
  color: #1f2024;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.modal__cta:hover { background: #bcbcbc; transform: translateY(-1px); }

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* === Mobile === */
@media (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr 1fr;
    padding: 16px 20px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .topbar__social { display: none; }
  .topbar__logo { justify-self: start; }
  .topbar__nav { gap: 16px; }

  .hero { padding: 80px 16px 40px; min-height: auto; }
  .hero__card { aspect-ratio: 3 / 4; max-width: 100%; }
  .hero__pane { width: 100%; height: 50%; }
  .hero__pane--left { top: 0; }
  .hero__pane--right { top: 50%; }
  .hero__divider {
    left: 0; right: 0; top: 50%;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 30%, rgba(255,255,255,0.18) 70%, transparent 100%);
  }
  .hero__content {
    padding: 32px 28px;
    justify-content: flex-end;
  }
  .hero__headline { font-size: 56px; white-space: normal; line-height: 0.95; }
  .hero__copy { max-width: 100%; }
  .hero__line-nav {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    margin: 24px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .line-dot__label, .line-dot__size { display: none; }
  .line-dot { padding: 8px 10px; }

  .manifesto { padding: 90px 20px; }
  .manifesto__line { font-size: 24px; }

  .scale, .journal, .b2b { padding-left: 20px; padding-right: 20px; }
  .scale__ducks { gap: 8px; min-height: 220px; }
  .duck__img { width: calc(var(--h, 60px) * 0.8) !important; height: calc(var(--h, 60px) * 0.8) !important; }
  .scale__row {
    grid-template-columns: 36px 1.4fr 1fr;
    gap: 12px;
    padding: 22px 14px;
  }
  .scale__comp, .scale__aud, .scale__price { display: none; }

  .journal__grid { grid-template-columns: 1fr; }
  .entry { border-right: none; padding: 32px 24px; }

  .b2b__panel { padding: 36px 24px 32px; border-radius: 16px; }
  .b2b__palette { grid-template-columns: repeat(6, 1fr); }
  .b2b__row { grid-template-columns: 1fr; gap: 4px; }

  .footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 28px;
  }
}

@media (max-width: 480px) {
  .topbar__nav { gap: 10px; }
  .topbar__nav a { font-size: 9px; letter-spacing: 0.14em; }
  .hero__headline { font-size: 44px; }
}
