/* Buenos Solutions — conversion craft, same soul (dusk + sun) */
:root {
  --ink: #1c1410;
  --ink-soft: #3d322a;
  --cream: #f6efe4;
  --cream-deep: #ebe1d0;
  --sand: #d4c4a8;
  --sun: #f0a93b;
  --sun-hot: #ffc857;
  --ember: #c45c26;
  --moss: #2f4a3a;
  --night: #120e0c;
  --card: rgba(246, 239, 228, 0.07);
  --line: rgba(246, 239, 228, 0.14);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --r: 20px;
  --max: 72rem;
  --header-h: 3.75rem;
  --focus: 0 0 0 3px rgba(240, 169, 59, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--cream);
  background: var(--night);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Skip link — accessibility = trust */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--sun-hot);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 12px 0;
}
.skip:focus { left: 0; outline: none; box-shadow: var(--focus); }

/* Living sky */
.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 60% at 70% -10%, rgba(240, 169, 59, 0.32), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(196, 92, 38, 0.16), transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(47, 74, 58, 0.42), transparent 55%),
    linear-gradient(165deg, #1a100c 0%, #120e0c 40%, #0d1612 100%);
}
.sky-glow {
  position: absolute;
  width: 55vmax;
  height: 55vmax;
  right: -10%;
  top: -15%;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.2), transparent 68%);
  animation: breathe 9s ease-in-out infinite;
  pointer-events: none;
}
.sky-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}

.logo svg { display: block; }
.sun-core {
  fill: var(--sun);
  filter: drop-shadow(0 0 8px rgba(240, 169, 59, 0.55));
}
.sun-ring {
  stroke: rgba(255, 200, 87, 0.45);
  stroke-width: 1.5;
  fill: none;
}
.sun-rays {
  stroke: var(--sun-hot);
  stroke-width: 2.2;
  opacity: 0.85;
  transform-origin: 32px 32px;
  animation: spin-slow 48s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* Header */
.top {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.55rem 1.5rem;
  background: rgba(18, 14, 12, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}
.brand:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 8px; }
.brand-text {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-name {
  color: var(--cream);
}
.brand-rest {
  color: var(--cream);
}
.top nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: nowrap;
}
.top nav a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0.2rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.15s;
}
.top nav a:hover { color: var(--cream); }
.top nav a:focus-visible { outline: none; box-shadow: var(--focus); }
.top nav a[aria-current="page"]:not(.pill) {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(240, 169, 59, 0.6);
}
.pill {
  padding: 0.45rem 1.05rem !important;
  border-radius: 999px !important;
  background: var(--sun);
  color: var(--ink) !important;
  font-weight: 600 !important;
  box-shadow: none;
}
.pill:hover { filter: brightness(1.08); }

.header-end {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-switch button {
  background: none;
  border: none;
  color: rgba(212, 196, 168, 0.55);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.15rem;
  border-radius: 4px;
  transition: color 0.15s;
}
.lang-switch button:hover { color: var(--cream); }
.lang-switch button[aria-pressed="true"] {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(240, 169, 59, 0.55);
}
.lang-switch button:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.lang-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  max-width: min(36rem, calc(100% - 2rem));
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(18, 14, 12, 0.94);
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  animation: lang-banner-in 0.45s ease-out;
}
@keyframes lang-banner-in {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.lang-banner[hidden] { display: none !important; }
.lang-banner-msg {
  margin: 0;
  flex: 1 1 12rem;
  font-size: 0.92rem;
  color: var(--cream);
  line-height: 1.4;
  font-weight: 400;
}
.lang-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.lang-banner-yes,
.lang-banner-no {
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
}
.lang-banner-yes {
  background: var(--sun);
  color: var(--ink);
  border-color: transparent;
}
.lang-banner-yes:hover { filter: brightness(1.08); }
.lang-banner-no {
  background: transparent;
  color: var(--sand);
  border-color: var(--line);
}
.lang-banner-no:hover { color: var(--cream); border-color: rgba(246, 239, 228, 0.28); }

@media (max-width: 900px) {
  .top {
    padding: 0.45rem 1rem;
    gap: 0.65rem;
  }
  .brand { gap: 0.45rem; min-width: 0; }
  .brand .logo svg { width: 26px; height: 26px; }
  .brand-text { font-size: 1.12rem; }
  .brand-rest { display: none; }
  .header-end { gap: 0.45rem; }
  .lang-switch { gap: 0.2rem; }
  .lang-switch button {
    font-size: 0.65rem;
    padding: 0.15rem 0.1rem;
  }
  .pill {
    padding: 0.4rem 0.85rem !important;
    font-size: 0.86rem !important;
  }
  .top nav { gap: 0.5rem; }
}

@media (max-width: 380px) {
  .lang-switch { display: none; }
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

/* Quiet trust — one soft line, not badges shouting */
.hero-soft {
  margin: 1.15rem 0 0;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--sand);
  max-width: 32rem;
  line-height: 1.5;
  opacity: 0.9;
  letter-spacing: 0.01em;
}

/* Hero — copy wins, ornament supports */
.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.75rem 0 2.25rem;
  min-height: auto;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 1.25rem 0 1.75rem;
    gap: 1rem;
  }
  /* Copy first on phone — conversion law */
  .hero-sun { order: 2; justify-self: center; max-width: 112px; opacity: 0.85; }
  .hero-copy { order: 1; }
  .top nav a:not(.pill) { display: none; }
  h1 { max-width: 14ch; margin-bottom: 0.7rem; }
  .lead { margin-bottom: 1.1rem; }
  .hero-actions { gap: 0.55rem; }
  .hero-actions .btn { padding: 0.8rem 1.2rem; font-size: 0.92rem; }
  .hero-micro { margin-top: 0.85rem; font-size: 0.84rem; }
  main { padding: 0 1rem 4rem; }
}
.hero-sun-svg {
  width: min(100%, 280px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 36px rgba(240, 169, 59, 0.32));
  margin-left: auto;
}
.hs-halo {
  fill: none;
  stroke: rgba(255, 200, 87, 0.35);
  stroke-width: 1.5;
  animation: pulse-ring 4.5s ease-in-out infinite;
}
.hs-rays {
  stroke: rgba(255, 220, 140, 0.75);
  stroke-width: 3;
  transform-origin: 120px 120px;
  animation: spin-slow 36s linear infinite;
}
.hs-core {
  animation: sun-pulse 5s ease-in-out infinite;
  transform-origin: 120px 120px;
}
@keyframes sun-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes pulse-ring {
  0%, 100% { opacity: 0.5; transform: scale(1); transform-origin: 120px 120px; }
  50% { opacity: 1; transform: scale(1.03); transform-origin: 120px 120px; }
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 600;
  margin: 0 0 0.85rem;
}
.hero-parent {
  margin: 0 0 0.75rem;
  font-size: clamp(0.92rem, 2.2vw, 1.02rem);
  font-weight: 500;
  color: var(--sand);
  line-height: 1.4;
  max-width: 28rem;
}
.hero-parent a {
  color: var(--sun);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 169, 59, 0.35);
}
.hero-parent a:hover {
  border-bottom-color: var(--sun);
}
h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 6.5vw, 3.55rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 0.9rem;
  color: var(--cream);
  max-width: 18ch;
}
.lead, .scream-lead {
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  font-weight: 400;
  color: var(--cream);
  max-width: 28rem;
  margin: 0 0 1.35rem;
  line-height: 1.5;
  opacity: 0.95;
}
.lead strong, .scream-lead strong {
  color: #fff;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.hero-micro {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--sand);
  max-width: 28rem;
}
.hero-micro a {
  color: var(--sun);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 169, 59, 0.35);
}
.hero-micro a:hover {
  border-bottom-color: var(--sun);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun-hot), var(--ember));
  color: var(--ink);
  font-weight: 650;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 10px 32px rgba(196, 92, 38, 0.38);
  transition: filter 0.15s, transform 0.15s;
  min-height: 48px; /* touch target */
}
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn:focus-visible { outline: none; box-shadow: var(--focus), 0 10px 32px rgba(196, 92, 38, 0.38); }
.btn:active { transform: translateY(0); }
.btn.ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246, 239, 228, 0.28);
  box-shadow: none;
}
.btn.ghost:hover { border-color: rgba(240, 169, 59, 0.55); background: rgba(240, 169, 59, 0.06); }
.btn-lg {
  padding: 1.05rem 1.75rem;
  font-size: 1.05rem;
  min-height: 52px;
}
.btn-block { width: 100%; }

/* Soft mid-page invite — calm, not alarm */
.ask-strip + .proof-strip,
.proof-strip {
  margin: 0 0 3rem;
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 16px;
  border: 1px solid rgba(240, 169, 59, 0.22);
  background: linear-gradient(135deg, rgba(240, 169, 59, 0.08), rgba(18, 14, 12, 0.35));
}
.proof-strip h2 {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.proof-lead {
  margin: 0 0 0.85rem;
  color: var(--sand);
  font-size: 0.95rem;
  line-height: 1.45;
}
.proof-body {
  margin: 0;
  color: var(--cream);
  font-size: 1.02rem;
  line-height: 1.55;
}
.proof-body a {
  color: var(--sun);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 169, 59, 0.35);
}
.proof-body a:hover {
  border-bottom-color: var(--sun);
}

.ask-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  margin: 0.25rem 0 0.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: calc(var(--r) + 2px);
  border: 1px solid rgba(246, 239, 228, 0.12);
  background: rgba(246, 239, 228, 0.04);
}
.ask-strip-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--cream);
  line-height: 1.25;
}
.ask-strip-copy p {
  margin: 0;
  color: var(--sand);
  font-size: 0.98rem;
  max-width: 34rem;
  font-weight: 300;
}

/* Panels */
.panel {
  padding: 3.75rem 0;
  border-top: 1px solid rgba(246, 239, 228, 0.08);
}
.panel.dark {
  margin: 0 -1.5rem;
  padding: 3.75rem 1.5rem;
  background: linear-gradient(180deg, rgba(26, 46, 36, 0.35), rgba(18, 14, 12, 0.12));
  border-top: 1px solid rgba(47, 74, 58, 0.28);
  border-bottom: 1px solid rgba(246, 239, 228, 0.08);
}
.panel.sunrise {
  border: none;
  margin: 1.25rem 0 2rem;
  padding: 2.75rem 1.85rem;
  border-radius: calc(var(--r) + 6px);
  background:
    radial-gradient(ellipse 80% 100% at 50% 120%, rgba(240, 169, 59, 0.22), transparent 60%),
    linear-gradient(160deg, #2a1a12, #1a120e 50%, #152018);
  border: 1px solid rgba(240, 169, 59, 0.22);
}
.panel-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.85rem;
}
.panel-head .num {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--sun);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.panel-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.45rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}

.split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.75rem;
  align-items: start;
}
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
}
.prose p {
  color: var(--sand);
  margin: 0 0 1.1rem;
  font-size: 1.08rem;
  max-width: 38rem;
}
.prose strong { color: var(--cream); font-weight: 600; }

.card {
  border-radius: var(--r);
  padding: 1.45rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--line);
}
.card.glow {
  background: linear-gradient(160deg, rgba(240, 169, 59, 0.12), rgba(246, 239, 228, 0.04));
  border-color: rgba(240, 169, 59, 0.28);
  box-shadow: 0 0 40px rgba(240, 169, 59, 0.08);
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 0.85rem;
  font-weight: 600;
}
.card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--sand);
}
.card li { margin: 0.5rem 0; }

/* Finish lines — concrete scope, not service tiles */
.ship-intro {
  margin: 0 0 1.5rem;
  color: var(--sand);
  font-size: 1.02rem;
  max-width: 36rem;
  line-height: 1.5;
}
.ship-intro a {
  color: var(--sun);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 169, 59, 0.35);
}
.ship-intro a:hover {
  border-bottom-color: var(--sun);
}
.finish-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 40rem;
  margin: 0 0 1.35rem;
}
.finish {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}
.finish:last-child {
  border-bottom: 1px solid var(--line);
}
.finish h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--cream);
  line-height: 1.25;
}
.finish p {
  margin: 0;
  color: var(--sand);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 300;
}
.ship-note {
  margin: 0.35rem 0 0;
  color: var(--sand);
  font-size: 0.95rem;
  max-width: 34rem;
  line-height: 1.45;
}
.ship-note.projects-nudge {
  margin-top: 1.5rem;
  font-size: 1.02rem;
  max-width: 36rem;
}
.ship-note a {
  color: var(--sun);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 169, 59, 0.35);
}
.ship-note a:hover {
  border-bottom-color: var(--sun);
}

/* —— Distill then ↔ now compare slider —— */
.compare-block {
  margin: 0.35rem 0 1.25rem;
  max-width: 52rem;
}
.compare-block.tight {
  margin: 1.35rem 0 0.25rem;
}
.compare-kicker {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sun);
}
.compare-dream {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.compare-sub {
  margin: 0 0 1.15rem;
  color: var(--sand);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 34rem;
  font-weight: 300;
}
.compare-sub a {
  color: var(--sun);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 169, 59, 0.35);
}
.compare-sub a:hover {
  border-bottom-color: var(--sun);
}
.compare-frame {
  --compare-pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--r) - 4px);
  overflow: hidden;
  touch-action: none;
  user-select: none;
  cursor: ew-resize;
  background: #0a0807;
  box-shadow:
    0 0 0 1px rgba(246, 239, 228, 0.12),
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(240, 169, 59, 0.06);
}
.compare-frame.is-dragging {
  cursor: grabbing;
}
.compare-layer {
  position: absolute;
  inset: 0;
  margin: 0;
}
.compare-layer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
}
.compare-after {
  clip-path: inset(0 0 0 var(--compare-pos));
}
.compare-badge {
  position: absolute;
  top: 0.75rem;
  z-index: 2;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.compare-badge.then {
  left: 0.75rem;
  color: var(--ink);
  background: rgba(246, 239, 228, 0.88);
}
.compare-badge.now {
  right: 0.75rem;
  color: var(--cream);
  background: rgba(28, 20, 16, 0.72);
  box-shadow: 0 0 0 1px rgba(240, 169, 59, 0.35);
}
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos);
  width: 44px;
  margin-left: -22px;
  z-index: 3;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: ew-resize;
  touch-action: none;
}
.compare-handle:focus-visible {
  outline: none;
}
.compare-handle:focus-visible .compare-grip {
  box-shadow:
    0 0 0 3px rgba(240, 169, 59, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.4);
}
.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(
    180deg,
    rgba(255, 200, 87, 0.15),
    var(--sun-hot) 20%,
    var(--sun) 50%,
    var(--ember) 80%,
    rgba(196, 92, 38, 0.2)
  );
  box-shadow: 0 0 12px rgba(240, 169, 59, 0.45);
}
.compare-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 232, 180, 0.95);
  background:
    radial-gradient(circle at 35% 30%, #ffe29a 0%, var(--sun) 45%, var(--ember) 100%);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  transition: transform 0.18s ease;
}
.compare-frame.is-dragging .compare-grip,
.compare-handle:hover .compare-grip {
  transform: scale(1.06);
}
.compare-grip svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink);
  stroke-width: 2.2;
  fill: none;
  opacity: 0.85;
}
.compare-hint {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  color: rgba(212, 196, 168, 0.75);
  letter-spacing: 0.02em;
}
@media (min-width: 720px) {
  .compare-frame {
    aspect-ratio: 16 / 9.5;
  }
}
@media (max-width: 520px) {
  .compare-badge {
    font-size: 0.62rem;
    padding: 0.22rem 0.5rem;
  }
  .compare-grip {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
  }
}

/* Sparse ship list (legacy) */
.ship-list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  max-width: 38rem;
}
.ship-list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.35rem;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 400;
}
.ship-list li:last-child { border-bottom: none; }
.ship-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 10px rgba(240, 169, 59, 0.45);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 860px) {
  .mosaic { grid-template-columns: 1fr; }
}
.tile {
  padding: 1.5rem 1.35rem;
  border-radius: var(--r);
  background: rgba(12, 10, 9, 0.5);
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-height: 100%;
}
.tile:hover {
  border-color: rgba(240, 169, 59, 0.28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}
.tile-icon {
  font-size: 1.35rem;
  color: var(--sun);
  margin-bottom: 0.7rem;
  line-height: 1;
}
.tile h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.tile p {
  margin: 0;
  color: var(--sand);
  font-size: 0.98rem;
  line-height: 1.55;
}
.foot-note {
  margin: 1.75rem 0 0;
  color: var(--sand);
  font-size: 0.98rem;
  max-width: 42rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 0.25rem;
}
@media (max-width: 900px) {
  .case-grid { grid-template-columns: 1fr; }
}
.case-card {
  padding: 1.3rem 1.25rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(12, 10, 9, 0.35);
}
.case-card h3 {
  font-family: var(--serif);
  font-size: 1.18rem;
  margin: 0 0 0.45rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--cream);
}
.case-card p {
  margin: 0;
  color: var(--sand);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Process steps — visual weight */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
@media (max-width: 760px) {
  .process { grid-template-columns: 1fr; }
}
.process li {
  position: relative;
  padding: 1.4rem 1.3rem 1.4rem 1.3rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(12, 10, 9, 0.4);
  counter-increment: step;
}
.process li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background: rgba(240, 169, 59, 0.18);
  border: 1px solid rgba(240, 169, 59, 0.35);
  color: var(--sun-hot);
  font-weight: 600;
  font-size: 0.9rem;
}
.process strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #fff;
}
.process span {
  color: var(--sand);
  font-size: 0.98rem;
  line-height: 1.5;
}

.price-band {
  margin-top: 1.75rem;
  padding: 1.35rem 1.45rem;
  border-radius: var(--r);
  background: rgba(246, 239, 228, 0.06);
  border: 1px solid rgba(212, 196, 168, 0.35);
  max-width: 42rem;
}
.price-band p {
  margin: 0;
  color: var(--sand);
  font-size: 1.02rem;
}
.price-band strong { color: var(--sun-hot); font-weight: 650; }

.quote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 1rem;
  color: #fff;
  max-width: 36rem;
}
.quote cite {
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--sun);
  font-weight: 600;
  text-transform: uppercase;
}

.lead-sm {
  color: var(--sand);
  max-width: 34rem;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
}
.lead-sm a { color: var(--sun-hot); font-weight: 500; }

/* Home contact box — mail, not form */
.contact-box {
  max-width: 32rem;
  padding: 1.5rem 1.45rem 1.4rem;
  margin: 0;
}
.contact-box-lead {
  margin: 0 0 1rem;
  color: var(--sand);
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 300;
}
.contact-box-lead a {
  color: var(--sun);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 169, 59, 0.35);
}
.contact-box-lead a:hover {
  border-bottom-color: var(--sun);
}
.contact-mail {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.3;
  border-bottom: 2px solid rgba(240, 169, 59, 0.45);
  padding-bottom: 0.1rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.contact-mail:hover {
  color: var(--sun-hot);
  border-bottom-color: var(--sun-hot);
}
.contact-box-foot {
  margin: 1.15rem 0 0;
  font-size: 0.92rem;
  color: var(--sand);
}
.contact-box-foot a {
  color: var(--sun);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 169, 59, 0.35);
}
.contact-box-foot a:hover {
  border-bottom-color: var(--sun);
}

/* Forms — enterprise weight */
.form-shell {
  max-width: 32rem;
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(12, 10, 9, 0.4);
}
.form {
  max-width: none;
  display: grid;
  gap: 1.05rem;
}
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (max-width: 520px) {
  .row2 { grid-template-columns: 1fr; }
}
.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sand);
}
.form input,
.form textarea {
  font: inherit;
  font-size: 1.02rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(246, 239, 228, 0.18);
  background: rgba(8, 6, 5, 0.65);
  color: var(--cream);
  min-height: 48px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form textarea { min-height: 120px; resize: vertical; }
.form input::placeholder,
.form textarea::placeholder { color: rgba(212, 196, 168, 0.4); }
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(240, 169, 59, 0.65);
  box-shadow: var(--focus);
}
.form input:invalid:not(:placeholder-shown),
.form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(220, 100, 80, 0.55);
}
.form button.btn {
  justify-self: stretch;
  margin-top: 0.15rem;
  width: 100%;
}
.fine {
  font-size: 0.84rem;
  color: rgba(212, 196, 168, 0.78);
  margin: 0;
  line-height: 1.45;
}
.fine a { color: var(--sun-hot); }
.form-ok {
  display: none;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(47, 74, 58, 0.45);
  border: 1px solid rgba(120, 180, 140, 0.35);
  color: var(--cream);
  font-size: 0.95rem;
}
.form-ok.is-on { display: block; }
.form-ok.is-warn {
  background: rgba(90, 55, 30, 0.5);
  border-color: rgba(240, 169, 59, 0.4);
}
.form-empty-hint {
  margin: 0;
  font-size: 0.88rem;
  color: #f0c9a0;
}
.form-empty-hint[hidden] { display: none !important; }

/* Trust page */
.trust-main {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.trust-main h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0.35rem 0 1rem;
  color: #fff;
}
.trust-lead { margin-bottom: 1.75rem; }
.trust-p {
  margin: 0;
  color: var(--sand);
  font-weight: 300;
  line-height: 1.65;
}
.trust-p a { color: var(--sun-hot); }
.page-trust .plain-box { margin-bottom: 1rem; }

/* Help page */
.page-help .help-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.help-hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.25rem;
  align-items: start;
  padding: 1.75rem 0 1.5rem;
}
@media (max-width: 900px) {
  .help-hero {
    grid-template-columns: 1fr;
    padding-top: 1rem;
  }
  .help-form-card { order: -1; } /* form first on ads traffic */
}
.plain-box {
  margin: 0 0 1.15rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(12, 10, 9, 0.28);
}
.soft-box {
  border-color: rgba(246, 239, 228, 0.1);
}
.calm-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--sand);
  font-weight: 300;
}
.calm-list li { margin: 0.4rem 0; }
.plain-box-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.plain-steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--sand);
}
.plain-steps li { margin: 0.55rem 0; }
.plain-steps strong { color: #fff; font-weight: 600; }
.section-label {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 0.85rem;
  font-weight: 600;
}
.example-stack { margin: 0 0 1.25rem; }
.example-card {
  margin: 0 0 0.7rem;
  padding: 1.05rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(12, 10, 9, 0.4);
}
.example-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0 0 0.3rem;
  font-weight: 600;
  color: #fff;
}
.example-card p {
  margin: 0;
  color: var(--sand);
  font-size: 0.96rem;
}
.money-line {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
  color: var(--sand);
  max-width: 34rem;
  font-weight: 300;
}
.soft-money {
  padding: 0;
  border: none;
  background: none;
}
.money-line strong { color: var(--sun); font-weight: 600; }
.help-form-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--cream);
}
.help-form-sub {
  margin: 0 0 1.15rem;
  color: var(--sand);
  font-size: 0.98rem;
  font-weight: 300;
}
.help-form-card {
  position: sticky;
  top: calc(var(--header-h) + 0.75rem);
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(18, 14, 12, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}
.help-form-card .form { max-width: none; }
.help-foot-link {
  margin: 2rem 0 0;
  text-align: center;
  color: var(--sand);
}
.help-foot-link a { color: var(--sun-hot); font-weight: 500; }

/* Footer */
.foot {
  border-top: 1px solid var(--line);
  padding: 2.25rem 1.5rem 3.5rem;
  text-align: center;
  max-width: var(--max);
  margin: 0 auto;
}
.foot-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.foot-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.foot-brand span {
  display: block;
  font-size: 0.88rem;
  color: var(--sand);
}
.foot .fine { margin-top: 0.5rem; }
.foot .fine a { color: var(--sun-hot); }

/* Mobile sticky convert */
.sticky-ask {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 9, 8, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.sticky-ask-btn {
  display: flex;
  width: 100%;
  text-align: center;
}
@media (max-width: 900px) {
  .sticky-ask { display: block; }
  body:not(.page-help) { padding-bottom: 5.75rem; }
  .page-help .sticky-ask { display: none; }
}

/* Selection */
::selection {
  background: rgba(240, 169, 59, 0.35);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .sky-glow, .sun-rays, .hs-rays, .hs-core, .hs-halo { animation: none; }
  .btn:hover, .tile:hover { transform: none; }
  html { scroll-behavior: auto; }
}
