/* Component-specific styles for hero, products, sections, footer */

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 100%, var(--accent-glow), transparent 55%),
    linear-gradient(to right, var(--line-faint) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-faint) 1px, transparent 1px);
  background-size: 100% 100%, 80px 80px, 80px 80px;
  mask-image: linear-gradient(to bottom, black, black 60%, transparent);
}
.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-coords { color: var(--ink-mute); }

.hero-title {
  max-width: 1080px;
  margin: 0;
}
.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 64px);
  margin-top: 8px;
}
.hero-body2 { grid-column: 1; }
.hero-body p:first-child { grid-column: 1; max-width: 640px; }
.hero-body2 { grid-column: 2; max-width: 520px; align-self: start; padding-top: 6px; }
@media (max-width: 880px) {
  .hero-body { grid-template-columns: 1fr; }
  .hero-body2 { grid-column: 1; }
}
.hero-ctas {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-products {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.hero-products .hero-prod-tag {
  padding: 4px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: var(--bg);
}
.hero-products .sep { color: var(--ink-faint); }

.hero-diagram-wrap {
  margin-top: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-diagram-wrap::before {
  content: "";
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  height: 1px;
  background: var(--line);
  opacity: 0;
}
.hero-diagram {
  width: 100%;
  aspect-ratio: 800 / 420;
  padding: 8px;
}
.hero-diagram svg { width: 100%; height: 100%; display: block; }

/* ============= SECTION HEADERS ============= */
.section-hd {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 100px);
}
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .sticky-heading { position: static; }
}

/* ============= WHAT WE DO ============= */
.what-bullet {
  margin-top: 28px;
  padding: 20px;
  border-left: 2px solid var(--accent);
  background: var(--bg-elev);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.principle-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}
.principle-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.principle-item:last-child { border-bottom: 1px solid var(--line); }
.principle-num { color: var(--ink-mute); }
.principle-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.principle-line {
  width: 24px; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.principle-item:hover .principle-line { width: 48px; }

/* ============= PRODUCTS ============= */
.products-section { background: var(--bg); }
.product-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(40px, 6vw, 80px);
}
.product-row.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.product-row.reverse .product-info { order: 2; }
.product-row.reverse .product-demo { order: 1; }
@media (max-width: 980px) {
  .product-row, .product-row.reverse {
    grid-template-columns: 1fr;
  }
  .product-row.reverse .product-info { order: 1; }
  .product-row.reverse .product-demo { order: 2; }
}

.product-name-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.product-name { color: var(--ink); }
.product-slug {
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-2);
}
.product-tagline { color: var(--ink); font-weight: 500; margin: 0 0 16px; }
.product-info p { margin: 0 0 14px; }

.product-meta {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: grid;
  gap: 16px;
}
.product-meta-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
}
.product-meta-l { padding-top: 4px; color: var(--ink-mute); }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}
.product-cta { margin-top: 28px; }

.product-demo { position: relative; }
.demo-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--ink-mute);
}
.livedot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  animation: pulse 2.4s ease-in-out infinite;
}

/* LINE chat frame */
.line-frame {
  background: linear-gradient(180deg, #8DA9C9 0%, #B8C9DA 100%);
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  display: flex;
  flex-direction: column;
  height: 520px;
}
[data-theme="dark"] .line-frame { background: linear-gradient(180deg, #2D3F55 0%, #4A5C72 100%); }
.line-hd {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
[data-theme="dark"] .line-hd { background: rgba(20, 22, 18, 0.85); }
.line-hd-l { display: flex; align-items: center; gap: 10px; }
.line-avatar { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; }
.line-name { font-size: 14px; font-weight: 600; color: #14160F; }
[data-theme="dark"] .line-name { color: #F2F2EA; }
.line-sub { font-size: 11px; color: #6A6E5F; font-family: var(--font-mono); }
.line-hd-r { color: #6A6E5F; }
.line-body {
  flex: 1;
  padding: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.line-msg {
  display: flex;
  animation: bubbleIn 0.3s ease-out;
}
.line-msg.user { justify-content: flex-end; }
.line-msg.ai { justify-content: flex-start; }
.line-bubble {
  max-width: 78%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.45;
  white-space: pre-wrap;
}
.line-msg.user .line-bubble {
  background: #87C940;
  color: #0E1208;
  border-bottom-right-radius: 4px;
}
.line-msg.ai .line-bubble {
  background: #fff;
  color: #14160F;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.line-bubble.typing {
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
}
.line-bubble.typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6A6E5F;
  opacity: 0.4;
  animation: typing 1.2s infinite;
}
.line-bubble.typing span:nth-child(2) { animation-delay: 0.15s; }
.line-bubble.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.line-system {
  align-self: center;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #14160F;
  letter-spacing: 0.04em;
}
.line-foot {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
[data-theme="dark"] .line-foot { background: rgba(20,22,18,0.85); }
.line-input {
  flex: 1;
  padding: 8px 14px;
  background: var(--bg);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-mute);
}
.line-send {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #0E1208;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* FlowAIOS console */
.flow-frame {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.20);
  display: flex;
  flex-direction: column;
  height: 560px;
}
.flow-chrome {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flow-chrome-l { display: flex; align-items: center; gap: 6px; }
.flow-dot { width: 10px; height: 10px; border-radius: 50%; }
.flow-dot.r { background: #FF6058; }
.flow-dot.y { background: #FFBE2F; }
.flow-dot.g { background: #2BCA40; }
.flow-status { display: inline-flex; align-items: center; gap: 6px; }

.flow-body { display: grid; grid-template-columns: 180px 1fr; flex: 1; min-height: 0; }
.flow-side {
  border-right: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.flow-brand { padding: 0 8px 12px; color: var(--ink); letter-spacing: 0.06em; }
.flow-side-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-2);
  text-align: left;
}
.flow-side-item:hover { background: var(--bg); }
.flow-side-item.on {
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--line);
}
.flow-side-item.on::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 14px;
  background: var(--accent);
  border-radius: 2px;
  margin-right: 8px;
  margin-left: -10px;
}
.flow-count {
  background: var(--bg-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 1px 7px;
  border-radius: 999px;
  color: var(--ink-mute);
}
.flow-side-foot {
  margin-top: auto;
  padding: 8px;
  color: var(--ink-mute);
}
.flow-side-foot span:first-child { color: var(--accent-deep); }

.flow-main {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.flow-main-hd {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flow-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
}

.flow-list {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.flow-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  transition: background 0.3s;
}
.flow-row.active { background: var(--accent-soft); }
[data-theme="dark"] .flow-row.active { background: rgba(125, 211, 142, 0.06); }
.flow-ch {
  background: var(--bg-elev);
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  font-size: 10px;
  color: var(--ink);
}
.flow-row-mid { min-width: 0; }
.flow-who { font-weight: 500; color: var(--ink); font-size: 13px; }
.flow-topic {
  font-size: 12.5px;
  color: var(--ink-mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.flow-tag {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 4px;
}
.flow-st { display: inline-flex; align-items: center; gap: 6px; }
.flow-stdot { width: 6px; height: 6px; border-radius: 50%; }

.flow-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: var(--bg-elev);
}
.flow-sum-item {
  padding: 14px 18px;
  border-right: 1px solid var(--line);
}
.flow-sum-item:last-child { border-right: none; }
.flow-sum-kpi {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
  margin-top: 4px;
}

/* ============= WHY NOW ============= */
.why-body { max-width: 760px; margin-bottom: 48px; }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 880px) {
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .outcome-grid { grid-template-columns: 1fr; }
}
.outcome-card {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 160px;
  transition: background 0.2s;
}
.outcome-card:hover { background: var(--bg-elev); }
.outcome-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}

/* ============= MARKET ============= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-cell { padding: 24px; background: var(--bg); }
.stat-kpi { color: var(--accent-deep); margin-bottom: 6px; }
@media (max-width: 700px) {
  .stats-row { grid-template-columns: 1fr; }
}

.map-card {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.sea-map { width: 100%; height: auto; display: block; }

/* ============= APPROACH ============= */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pillar {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  background: var(--bg);
  transition: background 0.3s;
}
.pillar:hover { background: var(--bg-elev); }
.pillar-num { color: var(--accent-deep); }
@media (max-width: 880px) { .pillar-grid { grid-template-columns: 1fr; } }
@media (min-width: 881px) and (max-width: 1100px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============= PARTNER ============= */
.audience-marquee {
  margin: 32px 0 56px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.audience-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  white-space: nowrap;
}
.audience-mark {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .ways-grid { grid-template-columns: 1fr; } }
.way-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  cursor: pointer;
}
.way-tag { color: var(--ink-mute); }
.way-arr {
  position: absolute;
  top: 24px; right: 24px;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  transition: all 0.3s;
}
.way-card:hover .way-arr {
  background: var(--accent);
  color: #0E1208;
  border-color: var(--accent);
  transform: rotate(-45deg) scale(1.05);
}

.partner-cta-row {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

/* ============= INVESTOR ============= */
.invest-list { list-style: none; padding: 0; margin: 32px 0; }
.invest-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.invest-item:last-child { border-bottom: 1px solid var(--line); }
.invest-num { color: var(--accent-deep); padding-top: 4px; }
.invest-audience { padding: 24px 0; border-top: 1px dashed var(--line); margin-top: 12px; }
.invest-aud-row { display: flex; flex-wrap: wrap; gap: 6px; }
.invest-cta { margin-top: 32px; }

/* ============= FOUNDER ============= */
.founder-portrait {
  margin-top: 24px;
  max-width: 360px;
}
.founder-photo-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elev);
  aspect-ratio: 4 / 5;
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}
.founder-photo-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #FAFAF7;
  background: linear-gradient(to top, rgba(14, 18, 8, 0.85), rgba(14, 18, 8, 0));
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.founder-photo-overlay .mono-tag { color: #FAFAF7; }
.founder-name {
  margin: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.founder-name .mono-tag { color: var(--ink-mute); }
.founder-domains { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }

/* ============= VISION / MISSION / VALUES ============= */
.vm-section { background: var(--bg-elev); }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 880px) { .vm-grid { grid-template-columns: 1fr; } }
.vm-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  min-height: 220px;
  position: relative;
}
.vm-card .eyebrow { margin-bottom: 18px; display: block; }
.vm-body { margin: 0; line-height: 1.18; text-wrap: pretty; }

.values-block {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.values-eyebrow { margin-bottom: 28px; display: block; }
.values-list { display: grid; gap: 0; }
.value-row {
  display: grid;
  grid-template-columns: 56px minmax(220px, 0.6fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.value-row:last-child { border-bottom: 1px solid var(--line); }
.value-n { color: var(--accent-deep); }
.value-title { color: var(--ink); }
.value-desc { color: var(--ink-2); }
@media (max-width: 700px) {
  .value-row { grid-template-columns: 56px 1fr; }
  .value-desc { grid-column: 1 / -1; padding-left: 80px; margin-top: -8px; }
}

/* ============= FINAL CTA ============= */
.final-section {
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 140px;
  border-top: 1px solid var(--line);
}
.final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.final-diagram { width: 100%; height: 100%; display: block; }
.final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.final-title { max-width: 1100px; margin: 0; }
.final-body { margin: 0 auto; }
.final-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}
.final-mail {
  margin-top: 12px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 6vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer-blurb { max-width: 360px; margin: 0; }
.footer-loc { color: var(--ink-mute); display: inline-flex; align-items: center; gap: 6px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 600px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-h { margin-bottom: 4px; color: var(--ink-mute); }
.footer-link {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent-deep); }
.footer-bot {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-mute);
}
.footer-mark { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); }

/* ============= TWEAKS panel — minor tweaks ============= */
.tweak-overlay {
  /* nothing extra */
}
