/* Moxell — still pond + current lanes. Palette from the logo only. */
:root {
  --ink:         #1A1A22;
  --char:        #242430;
  --orange:      #F06030;
  --orange-deep: #C44A24;
  --paper:       #F4F2EF;
  --sheet:       #FFFFFF;
  --mist:        #E8E6E3;
  --muted:       #5A5A64;
  --text:        #1A1A22;
  --line:        #DCD9D4;
  --near:        #F7F6F4;
  --ease:        cubic-bezier(.22,.61,.36,1);
  --maxw:        1120px;
  --serif:       "DM Serif Display", "Times New Roman", serif;
  --sans:        "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .brand-name, blockquote {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--orange); color: #fff; padding: 10px 16px; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-primary { background: var(--orange); color: var(--near); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(244, 242, 239, .92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px -22px rgba(26, 26, 34, .4);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { border-radius: 8px; }
.brand-name { font-size: 22px; letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 15px; color: var(--muted); transition: color .2s var(--ease); }
.nav .nav-cta {
  color: var(--ink); border: 1px solid var(--line); padding: 9px 20px; border-radius: 999px;
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero: still pond + slowly expanding concentric ripples ===== */
.hero {
  position: relative;
  padding: 132px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 78% 48%, rgba(240, 96, 48, .08), transparent 62%),
    linear-gradient(180deg, #F7F6F4 0%, var(--paper) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.industry {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--char);
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--muted);
  margin: 22px 0 0;
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-place {
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.pond-stage { display: grid; justify-items: center; gap: 14px; }
.pond {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 32%, rgba(255,255,255,.78), transparent 38%),
    radial-gradient(circle at 62% 68%, rgba(240,96,48,.16), transparent 44%),
    radial-gradient(circle at 50% 50%, #EDEBE8 0%, #C9C7C4 52%, #8E8C8A 100%);
  box-shadow:
    inset 0 0 80px rgba(26, 26, 34, .14),
    0 28px 60px -28px rgba(26, 26, 34, .35);
  border: 1px solid rgba(36, 36, 48, .12);
}
.pond-glass {
  position: absolute; inset: 0; border-radius: 50%; pointer-events: none; z-index: 4;
  background: radial-gradient(ellipse at 34% 26%, rgba(255,255,255,.55), transparent 42%);
  animation: sheen 18s ease-in-out infinite;
}
@keyframes sheen {
  0%, 100% { transform: translate(0, 0); opacity: .85; }
  50% { transform: translate(5%, 4%); opacity: 1; }
}

/* Static basin rings: the still pool, not a spinning logo */
.basin {
  position: absolute;
  left: 50%; top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(36, 36, 48, .14);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.b1 { width: 34%; height: 34%; }
.b2 { width: 58%; height: 58%; }
.b3 { width: 82%; height: 82%; }

/* Expanding water ripples */
.ripple {
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 96, 48, .5);
  pointer-events: none;
  animation: expandRipple 10s ease-out infinite;
  z-index: 2;
}
.r2 { border-color: rgba(36, 36, 48, .28); animation-delay: 2s; }
.r3 { border-color: rgba(240, 96, 48, .42); animation-delay: 4s; }
.r4 { border-color: rgba(36, 36, 48, .22); animation-delay: 6s; }
.r5 { border-color: rgba(240, 96, 48, .35); animation-delay: 8s; }
@keyframes expandRipple {
  0%   { transform: scale(1); opacity: .65; }
  70%  { opacity: .16; }
  100% { transform: scale(36); opacity: 0; }
}

.drop {
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(240, 96, 48, .18), 0 8px 18px -6px rgba(196, 74, 36, .55);
  z-index: 5;
}
.pond-caption {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--muted);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .ripple, .pond-glass, .bead, .bead-rev { animation: none !important; }
}

/* Sections */
.section { padding: 96px 0; }
.kicker {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); font-weight: 700; margin: 0 0 14px;
}
.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.section-head .lead { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ===== Current lanes: horizontal flow rows ===== */
.currents { background: var(--sheet); border-block: 1px solid var(--line); }
.current-stack { display: grid; gap: 18px; }

.current {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  padding: 28px 28px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.current-rail {
  position: absolute;
  left: 22px; right: 22px; top: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(240,96,48,.05), rgba(240,96,48,.55), rgba(36,36,48,.12));
  border-radius: 2px;
  overflow: visible;
}
.current-rev .current-rail {
  background: linear-gradient(270deg, rgba(240,96,48,.05), rgba(240,96,48,.55), rgba(36,36,48,.12));
}
.bead, .bead-rev {
  position: absolute;
  top: 50%;
  width: 9px; height: 9px;
  margin-top: -4.5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 96, 48, .16);
}
.bead { animation: ride 14s linear infinite; }
.bead-rev { animation: rideBack 14s linear infinite; }
@keyframes ride {
  0% { left: 0%; }
  100% { left: calc(100% - 9px); }
}
@keyframes rideBack {
  0% { left: calc(100% - 9px); }
  100% { left: 0%; }
}

.current-inner {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 20px;
  align-items: start;
  margin-top: 10px;
}
.current-rev .current-inner { grid-template-columns: auto 1fr 72px; }
.current-rev .step { order: 3; }
.current-rev .current-copy { order: 2; }
.current-rev .current-tag { order: 1; text-align: left; }

.step {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
  padding-top: 4px;
}
.current-copy h3 { font-size: clamp(1.45rem, 2.4vw, 1.85rem); margin-bottom: 8px; }
.current-copy p { color: var(--muted); max-width: 58ch; }
.current-tag {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--char);
  align-self: center;
  text-align: right;
  white-space: nowrap;
}

/* About */
.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.about-hed h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 16ch; }
.about-copy { display: grid; gap: 18px; }
.about-lead { font-size: 1.08rem; color: var(--text); }
.about-copy p { color: var(--muted); }

/* Quote band — dark, near-white text */
.quote-band {
  background: var(--ink);
  color: var(--near);
  padding: 88px 0;
}
.quote-inner { max-width: 820px; }
.quote-kicker {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: #F0C4B0; margin: 0 0 22px;
}
.quote-band blockquote {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-style: italic;
  font-weight: 400;
  color: #F7F6F4;
  line-height: 1.18;
}
.quote-attr {
  margin-top: 22px;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: #E2D8D0;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.faq-lead p { color: var(--muted); margin-top: 16px; }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px;
  font-family: var(--serif); font-size: clamp(1.12rem, 2vw, 1.35rem);
  color: var(--ink);
}
.faq-ico { position: relative; flex: 0 0 16px; width: 16px; height: 16px; }
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; background: var(--orange); border-radius: 1px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-ico::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-ico::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item.open .faq-ico::after { transform: scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a p { color: var(--muted); margin: 0 0 22px; padding-right: 24px; }

/* Contact */
.contact { background: var(--sheet); border-top: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-copy p { color: var(--muted); margin: 16px 0 22px; }
.contact-email {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--orange);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: border-color .2s, color .2s;
}
.contact-addr {
  margin-top: 20px !important;
  font-size: 14px;
  color: var(--muted);
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: grid; gap: 16px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.field { display: grid; gap: 7px; }
.field label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.field input, .field textarea {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  padding: 12px 14px;
  font: inherit; font-size: 15px;
  width: 100%; resize: vertical;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 96, 48, .14);
}

/* Footer — dark band, near-white text */
.site-footer {
  background: var(--char);
  color: #F7F6F4;
  padding: 56px 0 32px;
}
.site-footer .brand-name { color: #F7F6F4; }
.footer-inner { display: flex; flex-direction: column; gap: 22px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-tag {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: #F0D8D0; margin: 0;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px 26px; }
.footer-nav a {
  color: #E8D8D0; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  transition: color .2s;
}
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding-top: 22px; margin-top: 8px; border-top: 1px solid rgba(247, 246, 244, .16);
  color: #D8D0C8; font-size: 14px;
}

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* Hover AFTER .reveal.in so lift is not overwritten */
@media (hover: hover) and (pointer: fine) {
  .nav a:hover { color: var(--ink); }
  .nav .nav-cta:hover {
    border-color: var(--orange); color: var(--orange);
    transform: translateY(-2px);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--orange-deep);
    box-shadow: 0 14px 28px -12px rgba(240, 96, 48, .55);
  }
  .btn-ghost:hover {
    transform: translateY(-2px);
    border-color: var(--ink);
    color: var(--ink);
  }
  .current:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 96, 48, .45);
    box-shadow: 0 18px 40px -24px rgba(26, 26, 34, .35);
  }
  .faq-q:hover { color: var(--orange); }
  .contact-email:hover { border-bottom-color: var(--orange); color: var(--orange-deep); }
  .footer-nav a:hover { color: #fff; }
  .contact-form:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -28px rgba(26, 26, 34, .35);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .faq-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pond { width: min(380px, 86vw); }
  .current-inner, .current-rev .current-inner {
    grid-template-columns: 64px 1fr;
  }
  .current-tag, .current-rev .current-tag {
    grid-column: 2;
    text-align: left;
    order: 3;
  }
  .current-rev .step { order: 1; }
  .current-rev .current-copy { order: 2; }
  .hero { padding: 118px 0 64px; }
}

/* Mobile ~390px stacked */
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(244, 242, 239, .98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 22px;
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    z-index: 90;
  }
  .nav.open { transform: translateY(0); }
  .nav a {
    padding: 14px 4px; font-size: 15px; border-bottom: 1px solid var(--line); color: var(--ink);
  }
  .nav .nav-cta { text-align: center; margin-top: 12px; border: 0; }

  .hero { padding: 104px 0 52px; }
  .section { padding: 72px 0; }
  .quote-band { padding: 64px 0; }
  .container { padding: 0 20px; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .contact-form .btn { width: 100%; }
  .pond { width: min(320px, 88vw); }
  .current { padding: 26px 18px 20px; border-radius: 18px; }
  .current-inner, .current-rev .current-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .current-tag, .current-rev .current-tag { grid-column: 1; }
  .contact-form { padding: 22px 18px; }
  .footer-bottom { flex-direction: column; }
  .about-hed h2 { max-width: none; }
}

@media (max-width: 420px) {
  .hero { padding: 96px 0 44px; }
  .section { padding: 64px 0; }
  .header-inner { height: 68px; }
  .nav { inset: 68px 0 auto 0; }
  .hero h1 { font-size: 2.15rem; }
  .section-head h2, .about-hed h2, .faq-lead h2, .contact-copy h2 {
    font-size: 1.85rem;
  }
  .current-stack { gap: 14px; }
  .quote-band blockquote { font-size: 1.55rem; }
}
