* { margin: 0; padding: 0; box-sizing: border-box; border: 0 solid rgba(244,241,236,0.12); }
html { scroll-behavior: smooth; }
body {
  background: #0A0A0A;
  color: #F4F1EC;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
::selection { background: #F4F1EC; color: #0A0A0A; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: rgba(244,241,236,0.15); }
::-webkit-scrollbar-thumb:hover { background: rgba(244,241,236,0.3); }

button { background: none; color: inherit; font: inherit; cursor: pointer; border: 0; }
a { color: inherit; text-decoration: none; }

.font-space { font-family: "Helvetica Neue", "Arial Black", Arial, sans-serif; font-weight: 700; }
.font-mono { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }

.muted { color: rgba(244,241,236,0.7); }
.dim { color: rgba(244,241,236,0.5); }
.faint { color: rgba(244,241,236,0.35); }

.kicker { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(244,241,236,0.55); }
.eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.eyebrow .num { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 12px; letter-spacing: 0.2em; color: rgba(244,241,236,0.6); }
.eyebrow .line { width: 48px; height: 0.5px; background: rgba(244,241,236,0.3); }
.eyebrow .label { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(244,241,236,0.6); }

.section { position: relative; padding: 128px 0; overflow: hidden; }
.section .bigNum {
  position: absolute; top: 80px; font-family: "Helvetica Neue", "Arial Black", Arial, sans-serif;
  font-weight: 700; font-size: 20vw; line-height: 1;
  color: rgba(244,241,236,0.04); user-select: none; pointer-events: none;
}
.section .bigNum.right { right: 0; }
.section .bigNum.left { left: 0; }

h1, h2, h3 { font-family: "Helvetica Neue", "Arial Black", Arial, sans-serif; font-weight: 700; letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 20px; }
h2 .fade { color: rgba(244,241,236,0.5); }

.lead { font-size: 17px; max-width: 36rem; color: rgba(244,241,236,0.7); margin-bottom: 80px; line-height: 1.6; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 0.5px solid transparent;
}
.nav.scrolled { background: rgba(10,10,10,0.85); backdrop-filter: blur(12px); border-bottom-color: rgba(244,241,236,0.12); }
.nav .row { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav .brand { display: flex; align-items: center; gap: 12px; }
.nav .brand svg { height: 28px; width: auto; }
.nav .brand .name { font-family: "Helvetica Neue", "Arial Black", Arial, sans-serif; font-weight: 700; font-size: 14px; letter-spacing: -0.03em; line-height: 1.1; }
.nav .brand .sub { display: block; font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-weight: 400; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,241,236,0.6); }
.nav .links { display: none; gap: 36px; }
.nav .links a { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,236,0.65); transition: color 0.3s; }
.nav .links a:hover { color: #F4F1EC; }
.nav .rightSide { display: none; align-items: center; gap: 24px; }
@media (min-width: 1024px) {
  .nav .links, .nav .rightSide { display: flex; }
  .nav .mobileToggle { display: none; }
}
.nav .langs { display: flex; align-items: center; gap: 8px; font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 11px; letter-spacing: 0.1em; }
.nav .langs a { color: rgba(244,241,236,0.4); transition: color 0.2s; }
.nav .langs a:hover, .nav .langs a.active { color: #F4F1EC; }
.nav .langs .sep { color: rgba(244,241,236,0.3); }
.nav .navCta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border: 0.5px solid rgba(244,241,236,0.4);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; transition: all 0.3s;
}
.nav .navCta:hover { background: #F4F1EC; color: #0A0A0A; }
.nav .mobileToggle { color: #F4F1EC; padding: 8px; margin-right: -8px; }

.mobileMenu {
  position: fixed; inset: 0; z-index: 50; background: #0A0A0A;
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; transition: opacity 0.3s;
}
.mobileMenu.open { display: flex; opacity: 1; }
.mobileMenu a { font-family: "Helvetica Neue", "Arial Black", Arial, sans-serif; font-size: 30px; font-weight: 700; letter-spacing: -0.04em; }
.mobileMenu a:hover { opacity: 0.6; }
.mobileMenu .close { position: absolute; top: 24px; right: 24px; padding: 8px; }
.mobileMenu .mobileLogo { position: absolute; top: 24px; left: 24px; display: flex; align-items: center; gap: 12px; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; }
.hero .watermark {
  position: absolute; right: -8%; top: 10%; width: 70%; max-width: 680px;
  opacity: 0.08; pointer-events: none;
  animation: floatY 8s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero .content { position: relative; z-index: 10; width: 100%; padding: 80px 0; }
.hero .loc { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; opacity: 0; animation: slideIn 0.8s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1); }
.hero .loc .ln { width: 24px; height: 0.5px; background: rgba(244,241,236,0.4); }
.hero h1 {
  font-size: clamp(2.75rem, 8vw, 7rem); line-height: 0.92;
  text-transform: uppercase; max-width: 14ch; margin-bottom: 28px;
  opacity: 0; animation: slideUp 1s 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.hero h1 .fade { color: rgba(244,241,236,0.45); }
.hero .lead { font-size: clamp(1rem, 2vw, 1.125rem); max-width: 36rem; margin-bottom: 48px;
  opacity: 0; animation: slideUp 0.9s 0.5s forwards cubic-bezier(0.16, 1, 0.3, 1); }
.hero .ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 80px;
  opacity: 0; animation: slideUp 0.8s 0.7s forwards cubic-bezier(0.16, 1, 0.3, 1); }
@media (min-width: 640px) { .hero .ctas { flex-direction: row; } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 16px 28px; font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; transition: all 0.3s; cursor: pointer; }
.btn-primary { background: #F4F1EC; color: #0A0A0A; }
.btn-primary:hover { background: rgba(244,241,236,0.9); }
.btn-outline { border: 0.5px solid rgba(244,241,236,0.4); color: #F4F1EC; }
.btn-outline:hover { border-color: #F4F1EC; background: rgba(244,241,236,0.05); }
.btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 0; padding-top: 32px; border-top: 0.5px solid rgba(244,241,236,0.15);
  opacity: 0; animation: slideUp 1s 0.9s forwards cubic-bezier(0.16, 1, 0.3, 1); }
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar { padding: 0 24px; }
.pillar:first-child { padding-left: 0; }
@media (min-width: 768px) { .pillar:not(:last-child) { border-right: 0.5px solid rgba(244,241,236,0.15); } }
.pillar .title { font-family: "Helvetica Neue", "Arial Black", Arial, sans-serif; font-weight: 500; font-size: clamp(1.25rem, 2.5vw, 1.875rem); letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px; }
.pillar .title svg { width: 20px; height: 20px; opacity: 0.5; }
.pillar .sub { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,241,236,0.5); margin-top: 8px; }

.scrollHint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 0.8s 1.5s forwards; }
.scrollHint span { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(244,241,236,0.4); }
.scrollHint svg { width: 14px; height: 14px; color: rgba(244,241,236,0.4); animation: bounce 2s infinite ease-in-out; }

@keyframes slideUp { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(40px); } }
@keyframes slideIn { to { opacity: 1; transform: translateX(0); } from { opacity: 0; transform: translateX(-20px); } }
@keyframes fadeIn { to { opacity: 1; } from { opacity: 0; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* REVEAL ON SCROLL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* SERVICES, PROJECTS, INVESTMENT, WHY — shared grid */
.grid-pixel { display: grid; gap: 0.5px; background: rgba(244,241,236,0.12); }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.cell { background: #0A0A0A; padding: 40px; display: flex; flex-direction: column; }
@media (min-width: 768px) { .cell { padding: 48px; } }
.cell .n { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 12px; letter-spacing: 0.2em; color: rgba(244,241,236,0.5); }
.cell .head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.cell h3 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.03em; margin-bottom: 16px; }
.cell p { font-size: 15px; color: rgba(244,241,236,0.7); line-height: 1.6; margin-bottom: 24px; }
.cell ul { list-style: none; margin-bottom: 32px; flex: 1; }
.cell ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(244,241,236,0.6); margin-bottom: 8px; }
.cell ul li::before { content: ""; display: inline-block; width: 4px; height: 4px; background: rgba(244,241,236,0.6); margin-top: 8px; flex-shrink: 0; }
.cell .dl { display: inline-flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; border: 0.5px solid rgba(244,241,236,0.4); transition: all 0.3s; }
.cell .dl:hover { background: #F4F1EC; color: #0A0A0A; }
.cell .dl .left { display: flex; align-items: center; gap: 12px; }
.cell .dl .meta { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 10px; opacity: 0.6; }
.cell .dl svg { width: 14px; height: 14px; }

/* PROJECT CARDS */
.project { background: #0A0A0A; cursor: pointer; }
.project .img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg, #1a1a1a, #0a0a0a); }
.project .img .silhouette { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.2; transition: opacity 0.7s; }
.project:hover .img .silhouette { opacity: 0.4; }
.project .img .silhouette svg { width: 50%; height: auto; }
.project .img .year { position: absolute; top: 16px; left: 16px; font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,241,236,0.6); }
.project .img .arrow { position: absolute; bottom: 16px; right: 16px; opacity: 0.4; transition: opacity 0.3s; }
.project:hover .img .arrow { opacity: 0.8; }
.project .img .arrow svg { width: 16px; height: 16px; }
.project .body { padding: 24px 28px; }
.project h3 { font-size: 18px; letter-spacing: -0.02em; margin-bottom: 4px; }
.project .where { font-size: 13px; color: rgba(244,241,236,0.55); margin-bottom: 20px; }
.project dl { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 0; font-size: 12px; }
.project dt { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,236,0.45); }
.project dd { text-align: right; color: rgba(244,241,236,0.8); }

/* INVESTMENT TEASER */
.invCard { padding: 56px 40px; min-height: 440px; display: flex; flex-direction: column; }
@media (min-width: 768px) { .invCard { padding: 56px; } }
.invCard h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.03em; margin-bottom: 24px; max-width: 18ch; }
.invCard p { font-size: 16px; line-height: 1.65; color: rgba(244,241,236,0.7); margin-bottom: 40px; flex: 1; }
.invCard .head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.invCard .head svg { width: 20px; height: 20px; opacity: 0.6; }
.invCard a { display: inline-flex; align-items: center; gap: 12px; padding: 16px 20px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; border: 0.5px solid rgba(244,241,236,0.4); transition: all 0.3s; align-self: flex-start; }
.invCard a:hover { background: #F4F1EC; color: #0A0A0A; }
.invCard a svg { width: 14px; height: 14px; }

/* WHY */
.why .cell h3 { font-size: 18px; letter-spacing: -0.02em; margin-bottom: 12px; }
.why .cell p { font-size: 14px; color: rgba(244,241,236,0.65); margin-bottom: 0; }
.why .cell .n { display: block; margin-bottom: 24px; }

/* QUOTE FORM */
.quote-wrap { max-width: 42rem; }
.progress-info { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,241,236,0.5); margin-bottom: 24px; }
.progress-bar { width: 100%; height: 2px; background: rgba(244,241,236,0.1); margin-bottom: 40px; }
.progress-fill { height: 100%; background: #F4F1EC; transition: width 0.5s ease; }

.step-title { font-family: "Helvetica Neue", "Arial Black", Arial, sans-serif; font-weight: 700; font-size: 24px; margin-bottom: 32px; letter-spacing: -0.02em; }
.field { margin-bottom: 24px; }
.field label { display: block; font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,236,0.6); margin-bottom: 12px; }
.field input, .field textarea { width: 100%; background: transparent; padding: 12px 16px; font-family: inherit; font-size: 15px; color: #F4F1EC; border: 0.5px solid rgba(244,241,236,0.25); transition: border-color 0.2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: #F4F1EC; }
.field textarea { min-height: 120px; resize: vertical; }
.options { display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 640px) { .options { grid-template-columns: 1fr 1fr; } .options.three { grid-template-columns: 1fr 1fr 1fr; } }
.option { text-align: left; padding: 16px; border: 0.5px solid rgba(244,241,236,0.2); transition: all 0.2s; font-size: 14px; }
.option:hover { border-color: rgba(244,241,236,0.5); }
.option.active { border-color: #F4F1EC; background: rgba(244,241,236,0.05); }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 32px; border-top: 0.5px solid rgba(244,241,236,0.12); }
.form-nav .back { display: inline-flex; align-items: center; gap: 8px; font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; transition: opacity 0.2s; }
.form-nav .back:hover { opacity: 1; }
.form-nav .back:disabled { opacity: 0.3; cursor: not-allowed; }
.form-nav .back svg { width: 14px; height: 14px; }
.form-nav .next, .form-nav .submit { display: inline-flex; align-items: center; gap: 12px; padding: 12px 28px; background: #F4F1EC; color: #0A0A0A; font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; transition: opacity 0.3s; }
.form-nav .next:disabled, .form-nav .submit:disabled { opacity: 0.4; cursor: not-allowed; }
.form-nav .next svg, .form-nav .submit svg { width: 14px; height: 14px; }

.success { padding: 40px; border: 0.5px solid rgba(244,241,236,0.2); }
.success svg { width: 32px; height: 32px; margin-bottom: 24px; opacity: 0.8; }
.success p { font-family: "Helvetica Neue", "Arial Black", Arial, sans-serif; font-size: 24px; margin-bottom: 24px; }
.success button { text-decoration: underline; opacity: 0.7; font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.success button:hover { opacity: 1; }

/* CONTACT FOOTER */
footer { padding-top: 128px; padding-bottom: 64px; border-top: 0.5px solid rgba(244,241,236,0.12); position: relative; }
footer h2 { margin-bottom: 64px; }
.footer-grid { display: grid; gap: 48px; margin-bottom: 80px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-grid h4 { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,241,236,0.5); margin-bottom: 12px; font-weight: 400; }
.footer-grid p { font-size: 16px; }
.footer-grid .hours { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 12px; color: rgba(244,241,236,0.5); margin-top: 8px; }
.footer-grid .wa { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; margin-top: 8px; text-decoration: underline; color: rgba(244,241,236,0.8); }
.footer-grid .wa svg { width: 14px; height: 14px; }
.footer-bottom { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 24px; padding-top: 40px; border-top: 0.5px solid rgba(244,241,236,0.12); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-bottom .left { display: flex; align-items: center; gap: 12px; }
.footer-bottom .left svg { height: 24px; }
.footer-bottom .copy { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,241,236,0.6); }
.footer-bottom .reg { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,241,236,0.4); }

/* FLOATING WHATSAPP */
.fab { position: fixed; bottom: 24px; right: 24px; z-index: 40; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: #F4F1EC; color: #0A0A0A; transition: transform 0.2s; }
.fab:hover { transform: scale(1.1); }
.fab svg { width: 20px; height: 20px; }


/* ============================================================
   INVESTMENT CALCULATOR  (matches Black Stone design system)
   ============================================================ */
.calc-wrap { margin-top: 0.5px; background: rgba(244,241,236,0.12); display: grid; gap: 0.5px; }
@media (min-width: 900px) { .calc-wrap { grid-template-columns: 1fr 1.05fr; } }

.calc-panel { background: #0A0A0A; padding: 40px; }
@media (min-width: 768px) { .calc-panel { padding: 48px; } }
.calc-panel .n { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 12px; letter-spacing: 0.2em; color: rgba(244,241,236,0.5); display:block; margin-bottom: 8px; }
.calc-panel h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); letter-spacing: -0.03em; margin-bottom: 28px; }

.calc-field { margin-bottom: 28px; }
.calc-field .lblrow { display:flex; justify-content:space-between; align-items:baseline; margin-bottom: 12px; }
.calc-field label { font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,236,0.6); }
.calc-field .fval { font-family: "Helvetica Neue","Arial Black",Arial,sans-serif; font-weight:700; font-size: 16px; color:#F4F1EC; letter-spacing:-0.02em; }
.calc-field .hint { font-family:"SF Mono",Menlo,Monaco,Consolas,"Courier New",monospace; font-size: 10px; letter-spacing:0.08em; color: rgba(244,241,236,0.4); margin-top: 8px; line-height:1.5; }

input[type=range].cr { -webkit-appearance:none; width:100%; height: 2px; background: rgba(244,241,236,0.2); outline:none; }
input[type=range].cr::-webkit-slider-thumb { -webkit-appearance:none; width:16px; height:16px; border-radius:50%; background:#F4F1EC; cursor:pointer; }
input[type=range].cr::-moz-range-thumb { width:16px; height:16px; border-radius:50%; background:#F4F1EC; cursor:pointer; border:0; }

.calc-seg { display:flex; flex-wrap:wrap; gap:8px; }
.calc-seg .opt { flex:1; min-width: 84px; text-align:center; padding: 14px 10px; border:0.5px solid rgba(244,241,236,0.2); transition: all .2s; font-size:13px; }
.calc-seg .opt:hover { border-color: rgba(244,241,236,0.5); }
.calc-seg .opt.active { border-color:#F4F1EC; background: rgba(244,241,236,0.05); }
.calc-seg .opt .sm { display:block; font-family:"SF Mono",Menlo,Monaco,Consolas,"Courier New",monospace; font-size:9px; letter-spacing:0.08em; color: rgba(244,241,236,0.45); margin-top:4px; }

/* results */
.calc-hero { display:grid; grid-template-columns: repeat(3,1fr); gap:0.5px; background: rgba(244,241,236,0.12); border:0.5px solid rgba(244,241,236,0.12); }
.calc-hero .m { background:#0A0A0A; padding: 20px 12px; text-align:center; }
.calc-hero .m .v { font-family:"Helvetica Neue","Arial Black",Arial,sans-serif; font-weight:700; font-size: 24px; letter-spacing:-0.03em; }
.calc-hero .m .l { font-family:"SF Mono",Menlo,Monaco,Consolas,"Courier New",monospace; font-size:9px; letter-spacing:0.16em; text-transform:uppercase; color:rgba(244,241,236,0.5); margin-top:8px; }

.calc-bd { margin-top:24px; border:0.5px solid rgba(244,241,236,0.12); }
.calc-bd .r { display:flex; justify-content:space-between; padding: 12px 18px; font-size:13.5px; border-bottom:0.5px solid rgba(244,241,236,0.1); color:rgba(244,241,236,0.7); }
.calc-bd .r:last-child { border-bottom:0; }
.calc-bd .r span:last-child { color:#F4F1EC; }
.calc-bd .r.head { font-family:"SF Mono",Menlo,Monaco,Consolas,"Courier New",monospace; font-size:10px; letter-spacing:0.16em; text-transform:uppercase; color:rgba(244,241,236,0.45); background:rgba(244,241,236,0.02); }
.calc-bd .r.tot { background:rgba(244,241,236,0.03); }
.calc-bd .r.tot span { color:#F4F1EC; font-family:"Helvetica Neue","Arial Black",Arial,sans-serif; font-weight:700; }
.calc-bd .r.profit { background:rgba(244,241,236,0.06); }
.calc-bd .r.profit span { color:#F4F1EC; font-family:"Helvetica Neue","Arial Black",Arial,sans-serif; font-weight:700; }

.calc-bars { margin-top:28px; }
.calc-bar { margin-bottom:18px; }
.calc-bar .top { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px; font-size:13px; }
.calc-bar .top .nm { color:#F4F1EC; } .calc-bar .top .nm .sm { font-family:"SF Mono",Menlo,Monaco,Consolas,"Courier New",monospace; font-size:10px; color:rgba(244,241,236,0.45); letter-spacing:0.08em; }
.calc-bar .top .amt { font-family:"Helvetica Neue","Arial Black",Arial,sans-serif; font-weight:700; font-size:14px; }
.calc-bar .track { height: 8px; background: rgba(244,241,236,0.08); overflow:hidden; }
.calc-bar .fill { height:100%; transition: width .6s cubic-bezier(0.16,1,0.3,1); min-width:2px; }
.calc-bar .fill.proj { background:#F4F1EC; }
.calc-bar .fill.bench { background: rgba(244,241,236,0.35); }

.calc-verdict { margin-top:24px; padding: 18px 20px; border:0.5px solid rgba(244,241,236,0.25); border-left: 2px solid #F4F1EC; font-size:14px; line-height:1.6; color:rgba(244,241,236,0.85); }
.calc-verdict b { color:#F4F1EC; font-weight:700; }
.calc-rent { margin-top:16px; font-size:12.5px; line-height:1.6; color:rgba(244,241,236,0.6); }
.calc-rent b { color:rgba(244,241,236,0.9); }

/* 3D printing callout — text only, no icon */
.calc-print { margin-top:0.5px; background:#0A0A0A; border:0.5px solid rgba(244,241,236,0.25);
  padding: 28px 40px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.calc-print .pt h4 { font-family:"Helvetica Neue","Arial Black",Arial,sans-serif; font-weight:700; font-size: 20px; letter-spacing:-0.02em; margin-bottom:6px; }
.calc-print .pt p { font-size:14px; color:rgba(244,241,236,0.7); line-height:1.6; max-width: 52ch; }
.calc-print .save { text-align:center; flex-shrink:0; border:0.5px solid #F4F1EC; padding: 16px 26px; }
.calc-print .save .big { font-family:"Helvetica Neue","Arial Black",Arial,sans-serif; font-weight:700; font-size: 26px; letter-spacing:-0.02em; }
.calc-print .save .lbl { font-family:"SF Mono",Menlo,Monaco,Consolas,"Courier New",monospace; font-size:9px; letter-spacing:0.16em; text-transform:uppercase; color:rgba(244,241,236,0.6); margin-top:4px; }

.calc-disc { font-family:"SF Mono",Menlo,Monaco,Consolas,"Courier New",monospace; font-size:10px; line-height:1.6; color:rgba(244,241,236,0.35); margin-top:24px; letter-spacing:0.04em; }

/* compare heading above the benchmark bars */
.calc-compare-h { font-family:"SF Mono",Menlo,Monaco,Consolas,"Courier New",monospace; font-size:10px; letter-spacing:0.16em; text-transform:uppercase; color:rgba(244,241,236,0.45); margin: 28px 0 16px; }
/* Mobile safety net: never let the calculator stay hidden if the reveal
   observer fails to fire on a phone. */
#calcApp { opacity: 1 !important; transform: none !important; }
