:root {
  --rix-blue: #00a7e2;
  --ink: #111416;
  --muted: #5d6a73;
  --line: #d9e4ea;
  --paper: #ffffff;
  --mist: #eef8fb;
  --foam: #dff7ef;
  --signal: #e33d2f;
  --sun: #f4c44d;
  --action-orange: #ff7900;
  --action-orange-dark: #df6500;
  --shadow: 0 20px 60px rgba(17, 20, 22, 0.14);
  --page-gutter: clamp(20px, 5vw, 72px);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

/* Scroll Animation Layout */
.scroll-anim-wrapper {
  /* Provide exactly 800px of scrolling space before releasing the sticky container */
  height: calc(100vh + 800px);
}

.scroll-anim-sticky {
  position: sticky;
  top: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-link {
  color: #007eac;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0, 167, 226, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
  text-decoration-color: var(--rix-blue);
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--page-gutter);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 228, 234, 0.7);
  backdrop-filter: blur(18px);
}

/* ============================================
   GLASS CLEANING SCROLL ANIMATION (FULL VIEWPORT)
   ============================================ */

.glass-pane {
  position: fixed;
  inset: 0;
  z-index: 9999; /* Sit on top of everything */
  pointer-events: none;
  overflow: hidden;
  /* Hidden when animation completes */
  opacity: var(--pane-opacity, 1);
  visibility: var(--pane-visibility, visible);
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

/* The dirty, frosted glass effect covering everything */
.glass-frost {
  position: absolute;
  inset: 0;
  background-image: url('assets/frost.png');
  background-size: 170vmax 170vmax;
  background-position: left top;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.85;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  clip-path: var(--frost-clip, polygon(100% 0, 100% 100%, 100% 100%, 100% 0));
  will-change: clip-path;
}

/* Soap streaks left by the washer */
.glass-soap-streaks {
  position: absolute;
  inset: 0;
  clip-path: var(--soap-clip, polygon(0 0, 0 100%, 0 100%, 0 0));
  background-image: url('assets/soap-trail-alpha.png');
  background-size: cover;
  background-position: center;
  background-color: var(--soap-tint, rgba(60, 65, 70, 0.45));
  opacity: var(--soap-opacity, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  will-change: clip-path;
}

.glass-soap-edge {
  position: absolute;
  inset: 0;
  clip-path: var(--soap-edge-clip, polygon(0 0, 0 0, 0 100%, 0 100%));
  background:
    radial-gradient(ellipse at 50% 20%, rgba(52, 48, 43, 0.46), transparent 54%),
    linear-gradient(90deg, rgba(38, 38, 34, 0.48), rgba(92, 88, 78, 0.18), transparent 72%);
  opacity: var(--soap-edge-opacity, 0);
  filter: blur(18px);
  mix-blend-mode: multiply;
  will-change: clip-path, opacity;
}

/* The actual tool images */
.glass-washer-img {
  position: absolute;
  top: 50%;
  left: 0;
  height: 167.4vh;
  width: auto;
  object-fit: contain;
  transform-origin: 50% 21%;
  transform: translate3d(var(--tool-x, -20%), var(--tool-y, 0px), 0) translate(-50%, -50%) rotate(var(--tool-rotation, 0deg));
  opacity: var(--tool-opacity, 0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: paint;
  image-rendering: -webkit-optimize-contrast;
  pointer-events: none;
  filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.4));
}

.glass-washer-dirt {
  position: absolute;
  top: 50%;
  left: 0;
  height: 167.4vh;
  width: calc(167.4vh * 440 / 2000);
  transform-origin: 50% 21%;
  transform: translate3d(var(--tool-x, -20%), var(--tool-y, 0px), 0) translate(-50%, -50%) rotate(var(--tool-rotation, 0deg));
  opacity: var(--washer-dirt-opacity, 0);
  pointer-events: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: paint;
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(39, 35, 30, 0.06) 68%, rgba(35, 31, 27, 0.28) 79%, rgba(25, 23, 20, 0.76) 91%, rgba(18, 17, 15, 1) 100%),
    radial-gradient(ellipse at 93% 18%, rgba(36, 33, 28, 0.58) 0 10%, transparent 25%),
    radial-gradient(ellipse at 96% 45%, rgba(30, 27, 24, 0.82) 0 13%, transparent 28%),
    radial-gradient(ellipse at 93% 75%, rgba(32, 29, 25, 0.58) 0 10%, transparent 26%);
  mix-blend-mode: multiply;
  -webkit-mask-image: url('assets/mc-langwerpig-washer-cropped.png');
  mask-image: url('assets/mc-langwerpig-washer-cropped.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.glass-squeegee-img {
  position: absolute;
  top: var(--squeegee-y, 50%);
  left: var(--squeegee-x, -20%);
  height: 225.25vh;
  width: 6.8vh;
  object-fit: fill;
  transform: translate(-50%, -50%) rotate(var(--squeegee-rotation, 15deg));
  opacity: var(--tool-opacity, 0);
  will-change: transform, left, opacity;
  image-rendering: -webkit-optimize-contrast;
  pointer-events: none;
  filter: drop-shadow(15px 15px 25px rgba(0,0,0,0.6));
}

.brand img {
  width: 156px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10001;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #24313a;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--mist);
}

.site-nav .nav-cta {
  color: #ffffff;
  background: var(--action-orange);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 132px var(--page-gutter) 112px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.68) 44%, rgba(255, 255, 255, 0.22) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 96px),
    radial-gradient(circle at 78% 28%, rgba(0, 167, 226, 0.28), transparent 30%),
    linear-gradient(130deg, #f9fdff 0%, #cbecf7 44%, #65c6e8 100%);
}

.glass-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  isolation: isolate;
}

.glass-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.42) 32% 34%, transparent 34% 100%),
    linear-gradient(90deg, rgba(17, 20, 22, 0.11) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(17, 20, 22, 0.08) 0 1px, transparent 1px 100%);
  background-size: auto, 180px 100%, 100% 140px;
  mix-blend-mode: screen;
}

.shine {
  position: absolute;
  width: 22vw;
  height: 140vh;
  top: -22vh;
  background: rgba(255, 255, 255, 0.36);
  transform: rotate(18deg);
  filter: blur(2px);
}

.shine-one {
  right: 16%;
}

.shine-two {
  right: 1%;
  opacity: 0.5;
}

.drop {
  position: absolute;
  width: 12px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0 18px rgba(0, 167, 226, 0.24);
  animation: drip 8s linear infinite;
}

.drop-one {
  top: 20%;
  right: 22%;
}

.drop-two {
  top: 48%;
  right: 12%;
  animation-delay: 1.8s;
}

.drop-three {
  top: 36%;
  right: 38%;
  animation-delay: 3.3s;
}

.squeegee-line {
  position: absolute;
  right: -8vw;
  bottom: 20vh;
  width: 58vw;
  height: 9px;
  background: var(--ink);
  transform: rotate(-13deg);
  box-shadow: 0 14px 0 rgba(0, 167, 226, 0.85);
}

@keyframes drip {
  0% {
    transform: translateY(-18px);
    opacity: 0;
  }
  15%,
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(82px);
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rix-blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-left: 3px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0 0 0 -3px;
  font-size: clamp(3.25rem, 9vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 0 -1px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.22;
}

p {
  line-height: 1.65;
}

.hero-copy {
  position: relative;
  width: min(720px, 100%);
  margin: 30px 0 0;
  padding: 9px 0 9px 24px;
  color: #152a38;
  font-size: clamp(1.14rem, 2.05vw, 1.48rem);
  font-weight: 620;
  line-height: 1.48;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0));
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 6px;
  border-radius: 999px;
  background: var(--brand-blue);
}

.hero-copy strong {
  color: var(--ink);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.button.primary {
  color: #ffffff;
  background: var(--action-orange);
  box-shadow: 0 12px 26px rgba(255, 121, 0, 0.2);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(17, 20, 22, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 20, 22, 0.12);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--action-orange-dark);
  box-shadow: 0 14px 28px rgba(255, 121, 0, 0.28);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin: 44px 0 0;
  padding: 0;
  border: 1px solid rgba(17, 20, 22, 0.16);
  background: rgba(17, 20, 22, 0.16);
}

.hero-proof div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.hero-proof dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 6px 0 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.scroll-cue {
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: max(44px, env(safe-area-inset-bottom));
  width: clamp(48px, 5vw, 64px);
  height: clamp(48px, 5vw, 64px);
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) drop-shadow(0 5px 12px rgba(0, 0, 0, 0.34));
  transition: opacity 320ms ease, transform 320ms ease;
}

body.show-scroll-cue .scroll-cue {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  animation: scroll-cue-pulse 1.8s ease-in-out infinite;
}

.scroll-cue img {
  width: 100%;
  height: 100%;
}

@keyframes scroll-cue-pulse {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.section {
  padding: clamp(72px, 9vw, 128px) var(--page-gutter);
}

.section-heading {
  width: min(890px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  width: min(720px, 100%);
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-section {
  background: #ffffff;
}

.feature-grid,
.formula-grid,
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.formula-grid article,
.model-card,
.values-list,
.fit-result,
.calculator-result,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.feature {
  padding: 28px;
}

.feature-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--foam);
  font-weight: 900;
}

.feature p,
.formula-grid p,
.model-card p,
.model-card li,
.values-list li,
.proof-copy p,
.faq-list p,
.contact-copy p,
.fit-result p,
.form-note {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: var(--mist);
}

.story-panel p:not(.eyebrow) {
  color: #42515a;
}

.timeline {
  --timeline-line-width: 4px;
  --timeline-dot-size: 18px;
  --timeline-dot-border: 4px;
  border-left: 4px solid var(--rix-blue);
}

.timeline div {
  position: relative;
  padding: 0 0 32px 28px;
}

.timeline div::before {
  content: "";
  position: absolute;
  left: calc(
    -1 * ((var(--timeline-dot-size) + (var(--timeline-dot-border) * 2) + var(--timeline-line-width)) / 2)
  );
  top: 4px;
  width: var(--timeline-dot-size);
  height: var(--timeline-dot-size);
  border-radius: 50%;
  background: #ffffff;
  border: var(--timeline-dot-border) solid var(--rix-blue);
}

.timeline span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 950;
}

.timeline p {
  margin: 0;
  color: #43525b;
}

.formula-section {
  background: #ffffff;
}

.formula-grid article {
  position: relative;
  padding: 24px;
  border-top: 5px solid var(--rix-blue);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.formula-grid article:nth-child(even) {
  border-top-color: var(--sun);
}

.formula-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 167, 226, 0.55);
  box-shadow: 0 18px 42px rgba(0, 167, 226, 0.12);
}

.formula-grid article:nth-child(even):hover {
  border-color: rgba(244, 196, 77, 0.85);
  box-shadow: 0 18px 42px rgba(244, 196, 77, 0.2);
}

.model-section {
  background: #f7fafb;
}

.entry-fee {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 0 0 22px;
  padding: 24px;
  border: 1px solid rgba(0, 167, 226, 0.35);
  border-left: 5px solid var(--rix-blue);
  border-radius: 8px;
  background: #ffffff;
}

.entry-fee p {
  margin: 0;
  color: var(--muted);
}

.entry-fee h3 {
  margin-top: 8px;
}

.entry-label {
  color: var(--rix-blue) !important;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-card {
  padding: 26px;
}

.model-label {
  margin: 0 0 10px;
  color: var(--rix-blue);
  font-weight: 900;
  text-transform: uppercase;
}

.model-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.model-card li {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 16px;
  align-items: baseline;
}

.model-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--rix-blue);
  transform: translateY(-1px);
}

.calculator-section {
  background: #ffffff;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.calculator-controls {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.segmented legend {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  font-weight: 900;
}

.segment {
  min-height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 900;
}

.segment.active {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.range-row {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.range-row > span {
  color: #35444d;
  font-weight: 800;
}

.range-row strong {
  font-size: 1.28rem;
}

.range-row small {
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

input[type="range"] {
  accent-color: var(--rix-blue);
}

.calculator-result {
  padding: 26px;
  box-shadow: var(--shadow);
}

.result-label {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--rix-blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.calculator-result dl {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 22px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.calculator-result dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px;
  background: #ffffff;
}

.calculator-result dt {
  color: var(--muted);
  font-weight: 800;
}

.calculator-result dd {
  margin: 0;
  text-align: right;
  font-weight: 950;
}

.calculator-result .total {
  color: #ffffff;
  background: var(--ink);
}

.calculator-result .subtotal {
  background: #f7fafb;
}

.calculator-result .total dt {
  color: #ffffff;
}

.start-costs {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.start-costs h4 {
  margin: 0;
  font-size: 1.02rem;
}

.start-costs dl {
  margin-top: 14px;
}

.purchase-breakdown {
  margin-bottom: 22px;
}

.purchase-breakdown + h4 {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.purchase-note,
.calculator-note {
  margin: 18px 0 0;
  color: #42515a;
  font-size: 0.95rem;
}

.fit-section {
  background: #f7fafb;
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 22px;
}

.fit-scan {
  display: grid;
  gap: 12px;
}

.fit-scan label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #26343d;
  font-weight: 750;
}

.fit-scan input {
  width: 20px;
  height: 20px;
  accent-color: var(--rix-blue);
  flex: 0 0 auto;
}

.fit-result {
  position: sticky;
  top: 100px;
  padding: 28px;
  align-self: start;
}

.fit-result span {
  display: block;
  margin-bottom: 18px;
  color: var(--rix-blue);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.9;
  font-weight: 950;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 32px;
  align-items: start;
  background: var(--ink);
  color: #ffffff;
}

.proof-copy p {
  color: #c9d4da;
}

.values-list {
  padding: 26px;
  color: var(--ink);
}

.values-list ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.values-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.values-list li:last-child {
  border-bottom: 0;
}

.faq-section {
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.faq-list summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 74px);
  padding: clamp(72px, 9vw, 128px) var(--page-gutter);
  background:
    linear-gradient(90deg, rgba(0, 167, 226, 0.08), rgba(244, 196, 77, 0.13)),
    #ffffff;
}

.phone-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 950;
  border-bottom: 3px solid var(--rix-blue);
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 26px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #34434c;
  font-size: 0.95rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  color: #26343d;
  background: var(--mist);
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-status a {
  color: var(--ink);
  font-weight: 900;
  border-bottom: 2px solid var(--rix-blue);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px var(--page-gutter);
  color: #cbd6dc;
  background: #0a0d0f;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 76px var(--page-gutter) auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .feature-grid,
  .formula-grid,
  .model-grid,
  .split-section,
  .calculator-layout,
  .fit-layout,
  .proof-section,
  .contact-section,
  .entry-fee {
    grid-template-columns: 1fr;
  }

  .fit-result {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  /* Glass animation: show mobile specks, hide desktop specks */
  .speck-desktop {
    display: none;
  }

  .speck-mobile {
    display: block;
  }

  /* Mobile speck positions — clustered around hamburger (top-right) */
  .speck-m1 { top: 10px; right: 52px; }
  .speck-m2 { top: 28px; right: 60px; }
  .speck-m3 { top: 14px; right: 38px; }
  .speck-m4 { top: 32px; right: 48px; }
  .speck-m5 { top: 22px; right: 68px; }

  /* Smaller tools on mobile */
  .glass-washer {
    width: 120px;
    height: 34px;
  }

  .glass-cloth {
    width: 60px;
    height: 42px;
  }
}

@media (max-width: 680px) {
  :root {
    --page-gutter: 18px;
  }

  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    overflow: hidden;
  }

  .hero-inner,
  .section-heading,
  .story-panel,
  .proof-copy,
  .contact-copy {
    width: 100%;
    max-width: none;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .story-panel p,
  .proof-copy p,
  .contact-copy p {
    max-width: none;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 3.7rem);
    line-height: 0.96;
    max-width: 10ch;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
    line-height: 1.05;
    max-width: 14ch;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .segmented {
    grid-template-columns: 1fr;
  }

  .calculator-result dl div {
    display: grid;
    gap: 6px;
  }

  .calculator-result dd {
    text-align: left;
  }

  .site-footer {
    display: grid;
  }
}
