:root {
  --ink: #0b1624;
  --ink-soft: #23364c;
  --navy: #092e52;
  --navy-deep: #061d34;
  --blue: #066dc5;
  --blue-bright: #1689e7;
  --cyan: #31b9f5;
  --silver: #aeb8c2;
  --line: #dce4ec;
  --off: #f5f8fb;
  --white: #fff;
  --wood: #aa6e42;
  --dark: #07111d;
  --dark-2: #0a1827;
  --dark-line: rgba(255, 255, 255, 0.11);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 24px 80px rgba(17, 45, 74, 0.12);
  --container: 1240px;
  --container-wide: 1440px;
  --header-h: 88px;
  font-family: "Manrope Variable", "Manrope", "Avenir Next", Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

.container,
.container-wide {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(calc(100% - 48px), var(--container-wide));
}

.section {
  padding: 128px 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h1,
h2 {
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  line-height: 0.98;
  font-weight: 700;
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #8dcfff;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button span {
  font-size: 1.05em;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0872c4, #004f99);
  box-shadow: 0 14px 32px rgba(0, 102, 200, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(0, 102, 200, 0.38);
}

.button-lg {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 0.92rem;
}

.button-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.button-glass:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
}

.button-white {
  color: var(--navy-deep);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.button-resin {
  color: #03111e;
  background: linear-gradient(135deg, #6bd1ff, #1689e7);
  box-shadow: 0 14px 36px rgba(33, 163, 237, 0.26);
}

.button-outline-resin {
  color: #91dcff;
  background: rgba(73, 190, 248, .04);
  border-color: rgba(113, 204, 255, .35);
}

.button-outline-resin:hover {
  color: var(--white);
  background: rgba(73, 190, 248, .11);
  border-color: rgba(113, 204, 255, .7);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: height 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  position: fixed;
  height: 74px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(10, 42, 72, 0.08);
  box-shadow: 0 12px 40px rgba(12, 39, 66, 0.09);
  backdrop-filter: blur(16px);
  animation: header-in 0.35s ease both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: flex;
  width: 196px;
  height: 64px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.is-scrolled .brand {
  height: 54px;
  background: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 38px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav .nav-highlight::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-highlight {
  color: #8ed2ff;
}

.is-scrolled .nav-highlight {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-cta {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
  display: none;
}

.bau-hero {
  position: relative;
  display: grid;
  min-height: max(760px, 96vh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero-media,
.hero-shade,
.hero-gridlines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-visual-label {
  position: absolute;
  z-index: 4;
  top: 112px;
  right: 24px;
  padding: 7px 11px;
  color: rgba(255,255,255,.72);
  background: rgba(4,15,25,.5);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-media {
  object-fit: cover;
  object-position: center;
  animation: hero-scale 1.5s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes hero-scale {
  from { opacity: 0; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

.hero-shade {
  background: linear-gradient(90deg, rgba(3, 13, 24, 0.94) 0%, rgba(5, 20, 35, 0.72) 40%, rgba(7, 17, 29, 0.1) 76%), linear-gradient(0deg, rgba(5, 15, 26, 0.48), transparent 45%);
}

.hero-gridlines {
  opacity: 0.17;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 10vw 10vw;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.hero-content h1 {
  max-width: 870px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 6.3vw, 6.9rem);
  font-weight: 700;
  line-height: 0.96;
}

.hero-content h1 em {
  color: #8fd3ff;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}

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

.hero-meta {
  display: flex;
  max-width: 690px;
  margin-top: 68px;
  border-top: 1px solid rgba(255,255,255,.24);
}

.hero-meta > div {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: flex-start;
  gap: 14px;
  padding: 21px 18px 0 0;
}

.hero-meta > div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.2);
}

.hero-meta strong {
  color: #70c8ff;
  font-size: 0.72rem;
}

.hero-meta span {
  color: rgba(255,255,255,.78);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.6);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: bottom right;
}

.scroll-cue i {
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.4);
}

.scroll-cue i::after {
  display: block;
  width: 24px;
  height: 100%;
  background: var(--cyan);
  content: "";
  animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
  from { transform: translateX(-100%); }
  to { transform: translateX(220%); }
}

.trust-strip {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: var(--navy);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 16px clamp(20px, 3vw, 42px);
}

.trust-grid > div + div {
  border-left: 1px solid rgba(255,255,255,.14);
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #8fd3ff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  font-size: 1.05rem;
}

.trust-grid p {
  margin: 0;
}

.trust-grid strong,
.trust-grid small {
  display: block;
}

.trust-grid strong {
  margin-bottom: 5px;
  font-size: 0.82rem;
}

.trust-grid small {
  color: rgba(255,255,255,.58);
  font-size: 0.7rem;
}

.services-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), var(--off));
}

.services-section::before {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(6,109,197,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(6,109,197,.025), 0 0 0 140px rgba(6,109,197,.018);
  content: "";
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  max-width: 470px;
  margin: 0 0 9px;
  color: #627184;
  font-size: 1rem;
  line-height: 1.8;
}

.centered {
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  overflow: hidden;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0 0 rgba(17,45,74,0);
  transition: color .3s ease, background .3s ease, transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card::after {
  position: absolute;
  inset: auto -60px -80px auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(6,109,197,.13);
  border-radius: 50%;
  content: "";
  transition: transform .4s ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card:hover::after {
  border-color: rgba(255,255,255,.16);
  transform: scale(1.25);
}

.service-index {
  align-self: flex-end;
  color: #9aa9b9;
  font-size: .68rem;
  font-weight: 800;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin: 20px 0 31px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card:hover .service-icon,
.resin-card .service-icon {
  stroke: #7ad0ff;
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 1.34rem;
  font-weight: 800;
}

.service-card p {
  margin-bottom: 28px;
  color: #667588;
  font-size: .9rem;
  line-height: 1.7;
  transition: color .3s ease;
}

.service-card:hover p,
.resin-card p {
  color: rgba(255,255,255,.66);
}

.service-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card:hover a,
.resin-card a {
  color: #8ed2ff;
}

.service-card a span {
  transition: transform .2s ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

.resin-card {
  color: var(--white);
  background: radial-gradient(circle at 85% 20%, rgba(49,185,245,.28), transparent 35%), var(--dark-2);
  border-color: rgba(49,185,245,.25);
}

.resin-card .service-index {
  color: #6bcaff;
}

.resin-feature {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.resin-feature > img,
.resin-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.resin-feature > img {
  object-fit: cover;
}

.resin-overlay {
  background: linear-gradient(90deg, rgba(4,14,24,.94) 0%, rgba(5,18,31,.75) 45%, rgba(5,18,31,.1) 78%), linear-gradient(0deg, rgba(4,12,22,.65), transparent 60%);
}

.resin-feature-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 820px;
  grid-template-columns: 1fr .75fr;
  align-items: center;
  gap: 120px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.resin-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 6.5vw, 6.7rem);
}

.resin-copy h2 em {
  color: #74ccff;
}

.resin-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  line-height: 1.8;
}

.resin-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.resin-badges span {
  padding: 8px 14px;
  color: #9edcff;
  background: rgba(38,158,226,.1);
  border: 1px solid rgba(113,202,255,.2);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
}

.floating-spec {
  align-self: end;
  width: min(100%, 430px);
  margin: 0 0 20px auto;
  padding: 26px;
  background: rgba(6,20,34,.74);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
}

.spec-top,
.spec-line,
.spec-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.spec-top {
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.spec-top span {
  font-size: 1rem;
  font-weight: 800;
}

.spec-top i {
  color: #72ccff;
  font-size: .63rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.spec-top i::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  background: #5de2ab;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(93,226,171,.1);
  content: "";
}

.spec-line {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .75rem;
}

.spec-line span {
  color: rgba(255,255,255,.52);
}

.spec-foot {
  margin-top: 18px;
  padding: 15px 16px;
  background: rgba(46,174,244,.11);
  border-radius: 10px;
}

.spec-foot span {
  color: #8dd5ff;
  font-size: .68rem;
}

.spec-foot b {
  font-size: .75rem;
}

.references-section {
  background: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 18px;
}

.project-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
  border-radius: var(--radius);
}

.project-large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
}

.project-card::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(3,13,24,.92));
  content: "";
}

.project-card:hover img {
  transform: scale(1.035);
}

.visual-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  color: rgba(255,255,255,.75);
  background: rgba(4,16,27,.66);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.project-caption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
}

.project-caption small {
  display: block;
  margin-bottom: 8px;
  color: #89d2ff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-caption h3 {
  max-width: 460px;
  margin: 0;
  font-size: 1.25rem;
}

.project-caption > span {
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  font-weight: 800;
}

.reference-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 26px;
  padding: 22px 26px;
  background: var(--off);
  border-radius: var(--radius-sm);
}

.reference-cta p {
  margin: 0;
  color: #687789;
  font-size: .82rem;
}

.reference-cta strong {
  color: var(--ink);
}

.text-link {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--off);
}

.process-section::after {
  position: absolute;
  right: -80px;
  bottom: -230px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(6,109,197,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(6,109,197,.02), 0 0 0 160px rgba(6,109,197,.015);
  content: "";
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 27px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-list li {
  position: relative;
  padding: 0 26px;
  text-align: center;
}

.process-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid #cad8e5;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(17,45,74,.08);
  font-size: .67rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.process-list p {
  color: #6b7989;
  font-size: .82rem;
  line-height: 1.7;
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 110px;
}

.about-mark {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--blue);
  background: radial-gradient(circle, rgba(22,137,231,.08), transparent 65%);
  border: 1px solid rgba(6,109,197,.13);
  border-radius: 50%;
  box-shadow: inset 0 0 0 55px rgba(6,109,197,.018), inset 0 0 0 110px rgba(6,109,197,.015);
}

.about-mark::before,
.about-mark::after {
  position: absolute;
  background: rgba(6,109,197,.13);
  content: "";
}

.about-mark::before { width: 120%; height: 1px; }
.about-mark::after { width: 1px; height: 120%; }

.about-mark span {
  position: relative;
  z-index: 1;
  font-family: Georgia, serif;
  font-size: 9rem;
}

.about-mark i {
  position: absolute;
  z-index: 1;
  width: 22px;
  height: 22px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.about-grid h2 {
  margin-bottom: 30px;
}

.about-lead {
  max-width: 700px;
  color: #607083;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.about-points > div {
  display: flex;
  gap: 11px;
}

.about-points > div > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  background: #e8f4fc;
  border-radius: 50%;
  font-size: .7rem;
}

.about-points p {
  margin: 0;
}

.about-points strong,
.about-points small {
  display: block;
}

.about-points strong {
  margin-bottom: 4px;
  font-size: .82rem;
}

.about-points small {
  color: #768496;
  font-size: .68rem;
  line-height: 1.45;
}

.contact-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-deep), #0a477b);
}

.contact-blueprint {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 20% 50%, #000, transparent 68%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 100px;
}

.contact-copy {
  padding-top: 28px;
}

.contact-copy h2 {
  margin-bottom: 28px;
}

.contact-copy h2 em {
  color: #8dd2ff;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255,255,255,.68);
  line-height: 1.85;
}

.contact-direct {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.contact-direct a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.contact-direct span {
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  text-transform: uppercase;
}

.contact-direct strong {
  font-size: .82rem;
}

.external-note {
  margin: 16px 0 0;
  color: rgba(255,255,255,.58);
  font-size: .62rem;
  line-height: 1.55;
}

.contact-form,
.contact-dialog,
.config-request-dialog {
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 40px;
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-head span {
  font-size: 1.16rem;
  font-weight: 800;
}

.form-head small {
  color: #8793a0;
  font-size: .66rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label,
.contact-dialog label,
.config-request-dialog label {
  display: grid;
  gap: 8px;
}

.contact-form label > span:first-child,
.contact-dialog label > span:first-child,
.config-request-dialog label > span:first-child {
  font-size: .69rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #f7f9fb;
  border: 1px solid #d7e0e9;
  border-radius: 10px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 120px;
  padding: 14px;
  line-height: 1.55;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(6,109,197,.1);
}

input::placeholder,
textarea::placeholder {
  color: #6f7e8e;
}

.check-label {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  color: #697789;
  font-size: .68rem;
  line-height: 1.5;
}

.check-label input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.check-label a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.form-hint,
.form-status {
  margin: -6px 0 0;
  color: #5f6f80;
  font-size: .65rem;
  line-height: 1.5;
}

.form-status:not(:empty) {
  padding: 10px 12px;
  color: #07543c;
  background: #e8f8f2;
  border-radius: 8px;
}

.site-footer {
  color: rgba(255,255,255,.68);
  background: #06101b;
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr auto auto;
  align-items: center;
  gap: 60px;
  padding-top: 58px;
  padding-bottom: 52px;
}

.footer-brand {
  display: block;
  height: 76px;
  padding: 7px 13px;
  background: var(--white);
  border-radius: 12px;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-top > p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  font-weight: 700;
}

.footer-nav a:hover,
.footer-phone:hover,
.footer-bottom a:hover {
  color: #83d1ff;
}

.footer-phone {
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
}

.footer-phone span {
  color: #78ccff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.38);
  font-size: .62rem;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

.floating-contact {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 0 19px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0,88,170,.35);
  cursor: pointer;
  font-size: .74rem;
  font-weight: 800;
}

.floating-contact svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-dialog,
.config-request-dialog {
  width: min(calc(100% - 32px), 620px);
  max-height: calc(100vh - 40px);
  margin: auto;
  padding: 42px;
  overflow: auto;
}

.contact-dialog::backdrop,
.config-request-dialog::backdrop {
  background: rgba(2,10,18,.75);
  backdrop-filter: blur(9px);
}

.contact-dialog h2,
.config-request-dialog h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
}

.contact-dialog > p:not(.eyebrow),
.config-request-dialog > p:not(.eyebrow) {
  color: #657487;
  font-size: .88rem;
  line-height: 1.65;
}

.contact-dialog form,
.config-request-dialog form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  display: grid;
  width: 42px;
  height: 42px;
  float: right;
  place-items: center;
  margin: -22px -22px 0 0;
  color: var(--ink);
  background: #eef3f7;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
}

[data-reveal] {
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.js [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}

/* Resin Studio */
.resin-page {
  color: var(--white);
  background: var(--dark);
}

.resin-page ::selection {
  color: #03101d;
  background: #76d3ff;
}

.resin-header {
  color: var(--white);
  background: rgba(5, 15, 25, .35);
}

.resin-header.is-scrolled {
  color: var(--white);
  background: rgba(5, 15, 25, .94);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}

.resin-header .brand {
  position: relative;
  width: 270px;
  justify-content: flex-start;
  padding: 0;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

.resin-header .brand img {
  width: 196px;
  height: 64px;
  padding: 6px 12px;
  object-fit: contain;
  background: var(--white);
  border-radius: 12px;
}

.resin-header.is-scrolled .brand img {
  width: 175px;
  height: 54px;
}

.resin-brand > span {
  position: static;
  width: 54px;
  margin-left: 12px;
  color: rgba(255,255,255,.6);
  font-size: .48rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: normal;
}

.resin-header.is-scrolled .resin-brand > span {
  color: rgba(255,255,255,.6);
}

.resin-header.is-scrolled .nav-highlight {
  color: #80d1ff;
}

.section-dark {
  color: var(--white);
  background: var(--dark);
}

.resin-hero {
  position: relative;
  display: grid;
  min-height: max(780px, 100vh);
  align-items: center;
  overflow: hidden;
  background: #040d16;
}

.resin-hero .hero-media,
.resin-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.resin-hero .hero-media {
  object-fit: cover;
  object-position: center;
}

.resin-hero-shade {
  background: linear-gradient(90deg, rgba(2,9,16,.97) 0%, rgba(3,12,21,.82) 41%, rgba(4,14,24,.17) 76%), linear-gradient(0deg, rgba(3,10,17,.76), transparent 52%);
}

.resin-orbit {
  position: absolute;
  right: -14vw;
  top: 10%;
  width: 64vw;
  aspect-ratio: 1;
  border: 1px solid rgba(114,205,255,.14);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.resin-orbit::before,
.resin-orbit::after,
.resin-orbit i {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(114,205,255,.08);
  border-radius: inherit;
  content: "";
}

.resin-orbit::after { inset: 24%; }

.resin-orbit i:nth-child(1) {
  inset: -2% 46%;
  width: 7px;
  height: 7px;
  background: #5dc9ff;
  border: 0;
  box-shadow: 0 0 28px #37b5f5;
}

.resin-orbit i:nth-child(2) { inset: 36%; }
.resin-orbit i:nth-child(3) { inset: 43%; }

.resin-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 80px;
}

.resin-hero-content h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7vw, 7.7rem);
  font-weight: 700;
  line-height: .88;
}

.resin-hero-content h1 em {
  color: #6dccff;
}

.resin-hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 33px;
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
  line-height: 1.78;
}

.resin-hero-meta {
  display: flex;
  max-width: 780px;
  gap: 0;
  margin-top: 58px;
  padding-top: 21px;
  border-top: 1px solid rgba(255,255,255,.19);
}

.resin-hero-meta > div {
  flex: 1;
  padding-right: 24px;
}

.resin-hero-meta > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.14);
}

.resin-hero-meta span,
.resin-hero-meta strong {
  display: block;
}

.resin-hero-meta span {
  margin-bottom: 7px;
  color: rgba(255,255,255,.45);
  font-size: .63rem;
  text-transform: uppercase;
}

.resin-hero-meta strong {
  font-size: .82rem;
}

.hero-model-tag {
  position: absolute;
  z-index: 2;
  right: 3vw;
  bottom: 42px;
  display: grid;
  min-width: 235px;
  gap: 6px;
  padding: 19px 22px;
  background: rgba(3,13,22,.67);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(16px);
}

.hero-model-tag span,
.hero-model-tag small {
  color: rgba(255,255,255,.52);
  font-size: .6rem;
}

.hero-model-tag span {
  color: #70caff;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-model-tag strong {
  font-size: 1rem;
}

.resin-intro {
  position: relative;
  padding: 130px 0 100px;
  border-bottom: 1px solid var(--dark-line);
}

.resin-intro::before {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 90px 90px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000, transparent);
}

.resin-intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: .35fr 1fr .7fr;
  align-items: end;
  gap: 70px;
}

.intro-number {
  color: rgba(109,204,255,.2);
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -.07em;
}

.resin-intro-grid h2 {
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
}

.resin-intro-grid h2 em,
.resin-heading h2 em,
.craft-copy h2 em,
.faq-heading h2 em {
  color: #6dccff;
}

.resin-intro-grid > p {
  margin: 0 0 4px;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  line-height: 1.8;
}

.models-section {
  padding: 100px 0 130px;
  overflow: hidden;
}

.resin-heading {
  color: var(--white);
}

.model-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.model-showcase-card {
  position: relative;
  display: flex;
  min-height: 445px;
  flex-direction: column;
  align-items: stretch;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  text-align: left;
  background: #0a1827;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.model-showcase-card::before {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 150px;
  height: 150px;
  background: rgba(27,150,219,.07);
  border-radius: 50%;
  filter: blur(35px);
  content: "";
  transform: translateX(-50%);
  transition: background .3s ease, transform .4s ease;
}

.model-showcase-card:hover,
.model-showcase-card.active {
  background: #0c2034;
  border-color: rgba(93,198,255,.4);
  transform: translateY(-6px);
}

.model-showcase-card.active::before {
  background: rgba(27,150,219,.18);
  transform: translateX(-50%) scale(1.25);
}

.model-no {
  color: #63c8ff;
  font-size: .66rem;
  font-weight: 800;
}

.model-showcase-card svg {
  position: relative;
  width: 100%;
  height: 170px;
  margin: 26px 0 20px;
  filter: drop-shadow(0 18px 15px rgba(0,0,0,.22));
  transform: perspective(400px) rotateX(57deg) rotateZ(-4deg);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}

.model-showcase-card:hover svg {
  transform: perspective(400px) rotateX(50deg) rotateZ(0deg) translateY(-5px);
}

.model-showcase-card svg * {
  vector-effect: non-scaling-stroke;
}

.wood-shape {
  fill: #9c6338;
  stroke: #d49a61;
  stroke-width: 1;
}

.resin-shape {
  fill: #087ec4;
  stroke: #63cdff;
  stroke-width: 1;
}

.leg-shape {
  fill: none;
  stroke: #8c9aa8;
  stroke-linecap: round;
  stroke-width: 5;
}

.model-card-copy {
  position: relative;
  display: block;
  margin-top: auto;
}

.model-title {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 800;
}

.model-description {
  display: block;
  min-height: 45px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  line-height: 1.55;
}

.model-showcase-card small {
  color: #72ccff;
  font-size: .65rem;
  font-weight: 800;
}

.model-arrow {
  position: absolute;
  right: 17px;
  bottom: 17px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  font-size: .72rem;
}

.configurator-section {
  position: relative;
  padding: 125px 0 140px;
  overflow: hidden;
  color: var(--white);
  background: #06101b;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.config-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,127,194,.16), transparent 67%);
  transform: translateX(-50%);
  pointer-events: none;
}

.config-title-row {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .6fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 65px;
}

.config-title-row h2 {
  font-size: clamp(3.4rem, 5.5vw, 5.8rem);
}

.config-title-row h2 em {
  color: #6dccff;
}

.config-title-row > p {
  margin: 0 0 5px;
  color: rgba(255,255,255,.52);
  font-size: .88rem;
  line-height: 1.8;
}

.configurator-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, .78fr) minmax(560px, 1.22fr);
  align-items: start;
  gap: 22px;
}

.config-panel {
  color: var(--white);
  background: rgba(11,26,42,.92);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
}

.config-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid var(--dark-line);
  border-radius: var(--radius) var(--radius) 0 0;
}

.config-panel-head span {
  font-size: .84rem;
  font-weight: 800;
}

.config-panel-head button {
  padding: 0;
  color: rgba(255,255,255,.46);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .65rem;
}

.config-step {
  margin: 0;
  padding: 28px 26px;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
}

.config-step:last-child {
  border-bottom: 0;
}

.config-step legend {
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  font-size: .82rem;
  font-weight: 800;
}

.config-step legend span {
  margin-right: 10px;
  color: #64caff;
  font-size: .62rem;
}

.preset-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.preset-chips label,
.shape-options label,
.color-swatches label {
  cursor: pointer;
}

.preset-chips input,
.shape-options input,
.color-swatches input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
}

.preset-chips label > span {
  display: block;
  padding: 9px 12px;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 700;
}

.preset-chips input:checked + span {
  color: #9bddff;
  background: rgba(31,158,227,.11);
  border-color: rgba(95,199,255,.48);
}

.preset-chips input:focus-visible + span,
.shape-options input:focus-visible + span,
.color-swatches input:focus-visible + span,
.check-toggle input:focus-visible + span {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.shape-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.shape-options label > span {
  display: grid;
  min-height: 75px;
  place-items: center;
  gap: 2px;
  padding: 8px;
  color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--dark-line);
  border-radius: 10px;
  font-size: .58rem;
  font-weight: 700;
}

.shape-options svg {
  width: 36px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.shape-options input:checked + span {
  color: #8fd6ff;
  background: rgba(31,158,227,.1);
  border-color: rgba(95,199,255,.48);
}

.shape-options label.is-disabled {
  cursor: not-allowed;
  opacity: .3;
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.dimension-grid label,
.select-grid label,
.full-select,
.delivery-control > label:not(.check-toggle) {
  display: grid;
  gap: 8px;
}

.dimension-grid label > span,
.select-grid label > span,
.full-select > span,
.delivery-control label > span,
.control-label {
  color: rgba(255,255,255,.48);
  font-size: .6rem;
  font-weight: 700;
}

.input-unit {
  position: relative;
  display: block;
}

.config-panel input,
.config-panel select {
  min-height: 44px;
  color: var(--white);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.13);
  font-size: .72rem;
}

.config-panel input:focus,
.config-panel select:focus {
  background: rgba(255,255,255,.06);
  border-color: #4fbae9;
  box-shadow: 0 0 0 3px rgba(49,185,245,.08);
}

.config-panel select {
  padding-right: 30px;
  color-scheme: dark;
}

.dimension-grid i,
.delivery-control i {
  position: absolute;
  top: 50%;
  right: 11px;
  color: rgba(255,255,255,.33);
  font-size: .58rem;
  font-style: normal;
  transform: translateY(-50%);
  pointer-events: none;
}

.field-note {
  margin: 11px 0 0;
  color: rgba(255,255,255,.56);
  font-size: .65rem;
  line-height: 1.55;
}

.config-global-note {
  margin: 0;
  padding: 18px 26px 24px;
  border-top: 1px solid var(--dark-line);
}

.select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.select-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.range-field {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.range-field > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.5);
  font-size: .62rem;
}

.range-field output {
  color: #8dd6ff;
  font-weight: 800;
}

.range-field input[type="range"] {
  height: 5px;
  min-height: 5px;
  padding: 0;
  background: linear-gradient(90deg, #1c9be2 var(--range-progress, 0%), rgba(255,255,255,.12) 0);
  border: 0;
  border-radius: 999px;
  accent-color: #53c4ff;
}

.range-field input[type="range"]::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  background: #8ed9ff;
  border: 3px solid #0b1a2a;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #2ba6e6;
  appearance: none;
}

.control-label {
  display: block;
  margin-bottom: 10px;
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 7px;
  margin-bottom: 19px;
}

.color-swatches label {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.color-swatches label > span {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: var(--swatch);
  border: 2px solid transparent;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
  transition: border-color .2s ease, transform .2s ease;
}

.color-swatches input:checked + span {
  border-color: #e8f7ff;
  box-shadow: 0 0 0 2px #2ca9eb;
  transform: scale(.9);
}

.color-swatches small {
  color: rgba(255,255,255,.58);
  font-size: .55rem;
}

.delivery-control {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: end;
  gap: 12px;
  margin-top: 18px;
}

.check-toggle {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.check-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
}

.check-toggle > span {
  position: relative;
  width: 34px;
  height: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
}

.check-toggle > span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,.6);
  border-radius: 50%;
  content: "";
  transition: transform .2s ease, background .2s ease;
}

.check-toggle input:checked + span {
  background: #1689e7;
}

.check-toggle input:checked + span::after {
  background: var(--white);
  transform: translateX(14px);
}

.check-toggle b {
  font-size: .62rem;
}

.preview-column {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.preview-card,
.price-card {
  overflow: hidden;
  background: rgba(11,26,42,.93);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
}

.preview-topbar {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--dark-line);
}

.preview-topbar > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-topbar > div:first-child i {
  width: 7px;
  height: 7px;
  background: #58d9a5;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(88,217,165,.08);
}

.preview-topbar > div:first-child span {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.view-buttons {
  display: flex;
  gap: 5px;
}

.view-buttons button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  cursor: pointer;
  font-size: .75rem;
}

.model-canvas-wrap {
  position: relative;
  height: clamp(400px, 44vw, 600px);
  min-height: 400px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 37%, #17354e, #07131f 62%, #050d16);
}

.model-canvas-wrap::before {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(transparent, #000 65%, transparent);
}

#table-preview {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.canvas-loading,
.canvas-fallback {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  color: rgba(255,255,255,.62);
  background: #081521;
  font-size: .7rem;
}

.canvas-loading.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.canvas-loading span {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.15);
  border-top-color: #5cc7ff;
  border-radius: 50%;
  animation: spin .75s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.canvas-fallback[hidden] {
  display: none;
}

.canvas-fallback img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}

.canvas-fallback p {
  position: relative;
  z-index: 1;
  max-width: 350px;
  padding: 20px;
  text-align: center;
}

.dimension-tag {
  position: absolute;
  z-index: 3;
  padding: 6px 9px;
  color: #8ed8ff;
  background: rgba(5,17,28,.7);
  border: 1px solid rgba(98,198,253,.25);
  border-radius: 6px;
  font-size: .56rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.dim-length { right: 18px; top: 50%; }
.dim-width { left: 18px; top: 50%; }

.orbit-hint {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 12px;
  left: 0;
  margin: 0;
  color: rgba(255,255,255,.35);
  text-align: center;
  font-size: .55rem;
  pointer-events: none;
}

.orbit-hint span {
  margin-right: 6px;
  color: #75cfff;
}

.preview-specbar {
  display: grid;
  grid-template-columns: .8fr 1fr 1.25fr;
  border-top: 1px solid var(--dark-line);
}

.preview-specbar > div {
  min-width: 0;
  padding: 16px 18px;
}

.preview-specbar > div + div {
  border-left: 1px solid var(--dark-line);
}

.preview-specbar span,
.preview-specbar strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-specbar span {
  margin-bottom: 4px;
  color: rgba(255,255,255,.34);
  font-size: .52rem;
  text-transform: uppercase;
}

.preview-specbar strong {
  color: rgba(255,255,255,.8);
  font-size: .65rem;
}

.price-card {
  padding: 24px;
}

.price-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.price-main > div:first-child > span,
.price-main > div:first-child > strong,
.price-main > div:first-child > small {
  display: block;
}

.price-main > div:first-child > span {
  margin-bottom: 7px;
  color: #7ccfff;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-main > div:first-child > strong {
  margin-bottom: 4px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
}

.price-main > div:first-child > small {
  color: rgba(255,255,255,.55);
  font-size: .6rem;
}

.delivery-badge {
  display: grid;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  place-content: center;
  text-align: center;
  background: rgba(32,157,225,.09);
  border: 1px solid rgba(95,200,255,.24);
  border-radius: 50%;
}

.delivery-badge span {
  color: #7ed3ff;
  font-size: .93rem;
  font-weight: 800;
}

.delivery-badge small {
  color: rgba(255,255,255,.62);
  font-size: .52rem;
  text-transform: uppercase;
}

.price-details {
  margin-top: 19px;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.price-details summary {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.58);
  cursor: pointer;
  font-size: .61rem;
  list-style: none;
}

.price-details summary::-webkit-details-marker { display: none; }

.price-details summary span {
  color: #71ccff;
  font-size: 1rem;
  transition: transform .2s ease;
}

.price-details[open] summary span { transform: rotate(45deg); }

.price-details > div {
  padding: 0 0 13px;
}

.breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 0;
  color: rgba(255,255,255,.42);
  font-size: .57rem;
}

.breakdown-row.total {
  margin-top: 6px;
  padding-top: 10px;
  color: rgba(255,255,255,.78);
  border-top: 1px dashed rgba(255,255,255,.12);
  font-weight: 800;
}

.payment-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.payment-highlights > div {
  padding: 13px;
  background: linear-gradient(145deg, rgba(61, 183, 245, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(112, 204, 255, .15);
  border-radius: 10px;
}

.payment-highlights span,
.payment-highlights strong,
.payment-highlights small {
  display: block;
}

.payment-highlights span {
  margin-bottom: 5px;
  color: rgba(255,255,255,.56);
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.payment-highlights strong {
  margin-bottom: 4px;
  color: #8ed9ff;
  font-size: .82rem;
}

.payment-highlights small {
  color: rgba(255,255,255,.4);
  font-size: .5rem;
  line-height: 1.45;
}

.installment-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0;
  padding: 11px 13px;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.025);
  border-radius: 9px;
  font-size: .58rem;
}

.installment-line strong {
  color: #82d2ff;
  font-size: .62rem;
}

.price-actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: 7px;
}

.price-actions .button-lg {
  min-height: 52px;
}

.icon-button {
  width: 52px;
  min-height: 52px;
  padding: 0;
  color: rgba(255,255,255,.64);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  border-radius: 12px;
}

.price-disclaimer {
  margin: 14px 0 0;
  color: rgba(255,255,255,.54);
  font-size: .58rem;
  line-height: 1.55;
}

.copy-status {
  margin: 8px 0 0;
  color: #78d8af;
  font-size: .56rem;
}

.craft-section {
  padding: 140px 0;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  align-items: center;
  gap: 100px;
}

.craft-image {
  position: relative;
  height: 720px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.craft-image::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(3,12,20,.8));
  content: "";
}

.craft-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-image-tag {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: rgba(4,15,25,.66);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(15px);
}

.craft-image-tag span {
  color: rgba(255,255,255,.5);
  font-size: .6rem;
}

.craft-image-tag strong {
  color: #86d6ff;
  font-size: .72rem;
}

.craft-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
}

.craft-copy > p:not(.eyebrow):not(.source-note) {
  margin-bottom: 35px;
  color: rgba(255,255,255,.56);
  font-size: .92rem;
  line-height: 1.85;
}

.craft-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--dark-line);
}

.craft-steps li {
  display: flex;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--dark-line);
}

.craft-steps li > span {
  color: #64c8fe;
  font-size: .58rem;
  font-weight: 800;
}

.craft-steps p {
  margin: 0;
}

.craft-steps strong,
.craft-steps small {
  display: block;
}

.craft-steps strong {
  margin-bottom: 5px;
  font-size: .7rem;
}

.craft-steps small {
  color: rgba(255,255,255,.38);
  font-size: .57rem;
  line-height: 1.45;
}

.source-note {
  margin: 20px 0 0;
  color: rgba(255,255,255,.54);
  font-size: .58rem;
  line-height: 1.6;
}

.source-note a {
  color: #70c8fa;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.value-section {
  padding: 140px 0;
  color: var(--white);
  background: radial-gradient(circle at 50% 0, rgba(22,137,231,.14), transparent 35%), #0a1928;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 65px;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-grid article {
  min-height: 270px;
  padding: 30px;
  background: #0a1928;
}

.value-grid article > span {
  color: #61c9ff;
  font-size: .62rem;
  font-weight: 800;
}

.value-grid h3 {
  margin: 80px 0 13px;
  font-size: 1.15rem;
}

.value-grid p {
  margin: 0;
  color: rgba(255,255,255,.45);
  font-size: .73rem;
  line-height: 1.65;
}

.price-examples {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 60px;
  margin-top: 70px;
  padding: 34px 40px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
}

.price-examples > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 6px 20px;
}

.price-examples span,
.price-examples small {
  color: rgba(255,255,255,.37);
  font-size: .58rem;
}

.price-examples strong {
  grid-column: 1;
  font-size: 1rem;
}

.price-examples b {
  grid-column: 2;
  grid-row: 1 / 3;
  color: #74d0ff;
  font-size: 1.45rem;
}

.price-examples small {
  grid-column: 1 / 3;
}

.price-examples > i {
  width: 1px;
  height: 70px;
  background: var(--dark-line);
}

.faq-section {
  padding: 140px 0;
  border-top: 1px solid var(--dark-line);
}

.faq-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  align-items: start;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  margin-bottom: 25px;
  font-size: clamp(3.5rem, 5.6vw, 5.7rem);
}

.faq-heading > p:not(.eyebrow) {
  max-width: 380px;
  margin-bottom: 27px;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  line-height: 1.7;
}

.accordion {
  border-top: 1px solid var(--dark-line);
}

.accordion details {
  border-bottom: 1px solid var(--dark-line);
}

.accordion summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  list-style: none;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary span {
  color: #6dccff;
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform .2s ease;
}

.accordion details[open] summary span { transform: rotate(45deg); }

.accordion details p {
  max-width: 730px;
  margin: -4px 50px 26px 0;
  color: rgba(255,255,255,.47);
  font-size: .76rem;
  line-height: 1.75;
}

.resin-final-cta {
  position: relative;
  padding: 135px 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #074775, #0879bd);
}

.resin-final-cta::before {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
}

.final-orbit {
  position: absolute;
  right: -240px;
  top: 50%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.02);
  transform: translateY(-50%);
}

.resin-final-cta .container {
  position: relative;
  z-index: 1;
}

.resin-final-cta h2 {
  margin-bottom: 38px;
  font-size: clamp(3.6rem, 6.3vw, 6.8rem);
}

.resin-final-cta h2 em {
  color: #b8e8ff;
}

.resin-final-cta .container > div {
  display: flex;
  align-items: center;
  gap: 28px;
}

.resin-final-cta .container > div > a:not(.button) {
  color: rgba(255,255,255,.63);
  font-size: .72rem;
}

.resin-final-cta .container > div > a strong {
  color: var(--white);
}

.resin-footer {
  background: #040b12;
}

.dialog-config-summary {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 17px;
  color: #536579;
  background: var(--off);
  border-radius: var(--radius-sm);
  font-size: .7rem;
  line-height: 1.5;
}

.dialog-config-summary strong {
  color: var(--ink);
}

.checkout-dialog {
  width: min(calc(100% - 32px), 840px);
}

.checkout-options {
  min-width: 0;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.checkout-options legend {
  margin-bottom: 10px;
  font-size: .69rem;
  font-weight: 800;
}

.checkout-plan-grid,
.payment-method-grid {
  display: grid;
  gap: 9px;
}

.checkout-plan-grid {
  grid-template-columns: repeat(2, 1fr);
}

.payment-method-grid {
  grid-template-columns: repeat(2, 1fr);
}

.checkout-dialog .checkout-plan-grid label,
.checkout-dialog .payment-method-grid label {
  position: relative;
  display: block;
  cursor: pointer;
}

.checkout-plan-grid input,
.payment-method-grid input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  opacity: 0;
}

.checkout-plan-grid label > span,
.payment-method-grid label > span {
  display: grid;
  min-height: 76px;
  align-content: center;
  gap: 4px;
  padding: 13px 15px;
  background: #f6f9fb;
  border: 1px solid #d7e0e9;
  border-radius: 11px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.checkout-plan-grid input:checked + span,
.payment-method-grid input:checked + span {
  background: #edf8ff;
  border-color: #1689e7;
  box-shadow: 0 0 0 3px rgba(22,137,231,.1);
}

.checkout-plan-grid input:focus-visible + span,
.payment-method-grid input:focus-visible + span {
  outline: 3px solid rgba(22,137,231,.22);
  outline-offset: 2px;
}

.checkout-plan-grid strong,
.payment-method-grid strong {
  font-size: .72rem;
}

.checkout-plan-grid small,
.payment-method-grid small {
  color: #718196;
  font-size: .61rem;
}

.checkout-total {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 15px;
  color: var(--white);
  background: linear-gradient(135deg, #08243a, #0c3e64);
  border-radius: 12px;
}

.checkout-total span,
.checkout-total strong {
  display: block;
}

.checkout-total span {
  margin-bottom: 5px;
  color: rgba(255,255,255,.56);
  font-size: .56rem;
  text-transform: uppercase;
}

.checkout-total strong {
  font-size: 1.05rem;
}

.checkout-total > div + div {
  padding-left: 15px;
  border-left: 1px solid rgba(255,255,255,.15);
}

.checkout-schedule {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-schedule li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 11px;
  color: #6b7b8e;
  background: #f7f9fb;
  border-radius: 8px;
  font-size: .62rem;
}

.checkout-schedule strong {
  color: var(--ink);
}

.checkout-note,
.checkout-provider-note {
  margin: 0;
  color: #6a7a8d;
  font-size: .62rem;
  line-height: 1.55;
}

.checkout-provider-note {
  padding: 11px 13px;
  background: #f4f7fa;
  border-radius: 9px;
}

.checkout-dialog button[type="submit"]:disabled {
  opacity: .55;
  cursor: wait;
}

.payment-result-page {
  min-height: 100vh;
  color: var(--white);
  background: radial-gradient(circle at 50% 18%, rgba(36, 155, 222, .22), transparent 38%), #050e17;
}

.payment-result-header {
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.payment-result-header .container-wide {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.payment-result-header > div > a:last-child {
  color: rgba(255,255,255,.65);
  font-size: .72rem;
  font-weight: 800;
}

.payment-result-main {
  display: grid;
  min-height: calc(100vh - 93px);
  place-items: center;
  padding: 70px 16px;
}

.payment-result-card {
  width: min(100%, 720px);
  padding: clamp(28px, 6vw, 62px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
  text-align: center;
}

.payment-state-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  place-items: center;
  color: #0872c4;
  background: #e9f6ff;
  border: 1px solid #b9dff7;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 800;
}

.payment-state-icon.is-success { color: #08784f; background: #e8faf3; border-color: #a9e2cd; }
.payment-state-icon.is-error { color: #a93c3c; background: #fff0f0; border-color: #efbcbc; }
.payment-state-icon.is-pending { color: #8b6300; background: #fff8df; border-color: #ead795; }

.payment-result-card .eyebrow {
  justify-content: center;
}

.payment-result-card h1 {
  margin: 12px 0 14px;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
}

.payment-result-card > p:not(.eyebrow, .payment-result-note, .form-status) {
  max-width: 560px;
  margin: 0 auto;
  color: #68798b;
  line-height: 1.7;
}

.payment-result-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0 20px;
  background: var(--off);
  border-radius: 12px;
}

.payment-result-meta > div {
  padding: 17px 12px;
}

.payment-result-meta > div + div {
  border-left: 1px solid var(--line);
}

.payment-result-meta dt {
  margin-bottom: 5px;
  color: #8390a0;
  font-size: .56rem;
  text-transform: uppercase;
}

.payment-result-meta dd {
  margin: 0;
  font-size: .7rem;
  font-weight: 800;
}

.payment-result-note {
  margin: 0;
  padding: 14px;
  color: #6d7d8f;
  background: #f7f9fb;
  border-radius: 10px;
  font-size: .64rem;
  line-height: 1.6;
}

.payment-result-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.payment-result-card .form-status {
  margin-top: 15px;
}

/* Legal placeholder pages */
.legal-page {
  min-height: 100vh;
  background: var(--off);
}

.legal-page .site-header {
  position: relative;
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.legal-main {
  padding: 100px 0 130px;
}

.legal-main article {
  max-width: 820px;
  padding: 50px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.legal-main h1 {
  margin: 0 0 25px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
}

.legal-main h2 {
  margin: 38px 0 12px;
  font-size: 1.25rem;
}

.legal-main p,
.legal-main li {
  color: #5f7083;
  font-size: .88rem;
  line-height: 1.75;
}

.legal-notice {
  padding: 16px 18px;
  color: #7c4b00 !important;
  background: #fff4db;
  border: 1px solid #f1d49a;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 1180px) {
  .desktop-nav { gap: 18px; }
  .phone-link span { display: none; }
  .header-actions { gap: 8px; }
  .brand { width: 175px; }
  .resin-header .brand { width: 230px; }
  .resin-header .brand img { width: 165px; }
  .trust-grid > div { padding-inline: 20px; }
  .resin-feature-inner { gap: 55px; }
  .about-grid { gap: 70px; }
  .contact-grid { gap: 60px; }
  .footer-top { grid-template-columns: 220px 1fr auto; gap: 36px; }
  .footer-nav { display: none; }
  .footer-phone { grid-column: auto; }
  .model-showcase { grid-template-columns: repeat(6, 1fr); }
  .model-showcase-card { grid-column: span 2; min-height: 410px; }
  .model-showcase-card:nth-child(4) { grid-column: 2 / span 2; }
  .configurator-shell { grid-template-columns: minmax(380px,.8fr) minmax(500px,1.2fr); }
  .dimension-grid { grid-template-columns: repeat(2,1fr); }
  .color-swatches { grid-template-columns: repeat(4,1fr); row-gap: 12px; }
  .craft-grid { gap: 60px; }
}

@media (max-width: 980px) {
  :root { --header-h: 78px; }
  .desktop-nav,
  .header-cta,
  .header-actions .phone-link { display: none; }
  .menu-toggle { display: block; }
  .site-header.is-scrolled .menu-toggle { border-color: rgba(10,35,57,.18); }
  .resin-header.is-scrolled .menu-toggle { border-color: rgba(255,255,255,.25); }
  .mobile-menu {
    position: fixed;
    inset: 78px 0 0;
    display: flex;
    height: calc(100dvh - 78px);
    flex-direction: column;
    padding: 34px 24px max(30px, env(safe-area-inset-bottom));
    color: var(--ink);
    background: rgba(255,255,255,.98);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .site-header.is-scrolled .mobile-menu { inset: 74px 0 0; height: calc(100dvh - 74px); }
  .mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .mobile-menu > a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
    font-weight: 800;
  }
  .mobile-menu .mobile-call {
    justify-content: center;
    margin-top: auto;
    color: var(--white);
    background: var(--blue);
    border: 0;
    border-radius: 999px;
  }
  .resin-header .mobile-menu { color: var(--white); background: rgba(5,15,25,.99); }
  .resin-header .mobile-menu > a { border-color: var(--dark-line); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .hero-content { padding-top: 120px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.14); }
  .split-heading { grid-template-columns: 1fr; gap: 30px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .resin-feature-inner { grid-template-columns: 1fr; align-content: center; gap: 45px; }
  .floating-spec { align-self: auto; margin: 0; }
  .project-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 380px repeat(2, 260px); }
  .project-large { grid-column: 1 / 3; grid-row: auto; }
  .process-list { grid-template-columns: repeat(2,1fr); gap: 45px 0; }
  .process-list::before { display: none; }
  .about-grid { grid-template-columns: .65fr 1fr; gap: 50px; }
  .about-points { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 720px; }
  .footer-top { grid-template-columns: 200px 1fr auto; }
  .footer-nav { display: none; }
  .footer-phone { grid-column: auto; }
  .resin-intro-grid { grid-template-columns: .3fr 1fr; }
  .resin-intro-grid > p { grid-column: 2; }
  .config-title-row { grid-template-columns: 1fr; gap: 25px; }
  .configurator-shell { grid-template-columns: 1fr; }
  .preview-column { position: static; grid-row: 1; }
  .config-panel { grid-row: 2; }
  .model-canvas-wrap { height: 540px; }
  .dimension-grid { grid-template-columns: repeat(4,1fr); }
  .color-swatches { grid-template-columns: repeat(8,1fr); }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-image { height: 600px; }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 65px; }
  .faq-heading { position: static; }
}

@media (max-width: 720px) {
  :root { --radius: 16px; --radius-lg: 22px; }
  .container,
  .container-wide { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 90px 0; }
  h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .site-header { height: 72px; }
  .site-header.is-scrolled { height: 68px; }
  .brand { width: 148px; height: 54px; padding: 5px 9px; }
  .header-inner { gap: 14px; }
  .resin-header .brand { width: 148px; height: 54px; }
  .resin-header .brand img { width: 148px; height: 54px; }
  .resin-header.is-scrolled .brand { width: 148px; height: 49px; }
  .resin-header.is-scrolled .brand img { width: 148px; height: 49px; }
  .is-scrolled .brand { height: 49px; }
  .resin-brand > span { display: none; }
  .menu-toggle { width: 42px; height: 42px; }
  .mobile-menu { inset: 72px 0 0; height: calc(100dvh - 72px); }
  .site-header.is-scrolled .mobile-menu { inset: 68px 0 0; height: calc(100dvh - 68px); }
  .bau-hero { min-height: 760px; }
  .hero-media { object-position: 59% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,13,24,.94), rgba(3,13,24,.62)), linear-gradient(0deg, rgba(3,13,24,.65), transparent); }
  .hero-gridlines { background-size: 90px 90px; }
  .hero-visual-label { top: 86px; right: 12px; font-size: .52rem; }
  .hero-content { padding-top: 100px; padding-bottom: 48px; }
  .hero-content h1 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .hero-lead { font-size: .92rem; line-height: 1.68; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-meta { margin-top: 45px; }
  .hero-meta > div { display: block; padding: 17px 10px 0 0; }
  .hero-meta > div + div { padding-left: 10px; }
  .hero-meta strong { display: block; margin-bottom: 7px; }
  .hero-meta span { font-size: .63rem; }
  .scroll-cue { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 90px; border-left: 0 !important; border-top: 1px solid rgba(255,255,255,.14); }
  .trust-grid > div:first-child { border-top: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 315px; padding: 28px; }
  .resin-feature { min-height: 860px; }
  .resin-feature-inner { min-height: 860px; padding-top: 80px; padding-bottom: 80px; }
  .resin-copy h2 { font-size: clamp(3.5rem, 16vw, 5rem); }
  .floating-spec { padding: 20px; }
  .project-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .project-card,
  .project-large { height: 390px; grid-column: auto; grid-row: auto; }
  .reference-cta { align-items: flex-start; flex-direction: column; }
  .process-list { grid-template-columns: 1fr; gap: 28px; margin-top: 45px; }
  .process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 0; text-align: left; }
  .process-list li > span { width: 52px; height: 52px; margin: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-mark { max-width: 330px; margin-inline: auto; }
  .about-mark span { font-size: 6rem; }
  .contact-section { padding: 90px 0; }
  .contact-grid { gap: 45px; }
  .contact-form { padding: 25px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 25px; }
  .footer-brand { width: 210px; }
  .footer-phone { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-contact { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); min-height: 48px; }
  .floating-contact { width: 50px; padding: 0; justify-content: center; }
  .floating-contact span { display: none; }
  .contact-dialog,
  .config-request-dialog { padding: 30px 20px; }
  .dialog-close { margin: -14px -8px 0 0; }
  .resin-hero { min-height: 800px; }
  .resin-hero .hero-media { object-position: 63% center; }
  .resin-hero-shade { background: linear-gradient(90deg, rgba(2,9,16,.96), rgba(2,9,16,.53)), linear-gradient(0deg, rgba(2,9,16,.78), transparent); }
  .resin-hero-content { padding-top: 110px; padding-bottom: 70px; }
  .resin-hero-content h1 { font-size: clamp(4rem, 18vw, 5.7rem); }
  .resin-hero-content > p:not(.eyebrow) { font-size: .9rem; }
  .resin-hero-meta { margin-top: 40px; }
  .resin-hero-meta > div { padding-right: 10px; }
  .resin-hero-meta > div + div { padding-left: 10px; }
  .resin-hero-meta span { min-height: 27px; }
  .resin-hero-meta strong { font-size: .66rem; }
  .hero-model-tag { display: none; }
  .resin-intro { padding: 90px 0 70px; }
  .resin-intro-grid { grid-template-columns: 1fr; gap: 26px; }
  .resin-intro-grid > p { grid-column: auto; }
  .intro-number { font-size: 2rem; }
  .models-section { padding: 70px 0 90px; }
  .model-showcase { display: flex; margin-right: -16px; padding-right: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .model-showcase::-webkit-scrollbar { display: none; }
  .model-showcase-card,
  .model-showcase-card:nth-child(4) { min-width: 78vw; min-height: 390px; grid-column: auto; scroll-snap-align: start; }
  .configurator-section { padding: 90px 0; }
  .config-title-row { margin-bottom: 42px; }
  .model-canvas-wrap { height: 420px; min-height: 380px; }
  .preview-specbar { grid-template-columns: 1fr 1fr; }
  .preview-specbar > div:nth-child(3) { grid-column: 1 / 3; border-top: 1px solid var(--dark-line); border-left: 0; }
  .price-card { padding: 19px; }
  .price-main > div:first-child > strong { font-size: 2rem; }
  .delivery-badge { width: 65px; height: 65px; }
  .payment-highlights { grid-template-columns: 1fr; }
  .price-actions { grid-template-columns: repeat(2, 1fr); }
  .price-actions .button-lg { grid-column: 1 / 3; }
  .price-actions .icon-button { width: 100%; }
  .config-step { padding: 25px 19px; }
  .shape-options { grid-template-columns: repeat(2,1fr); }
  .dimension-grid { grid-template-columns: repeat(2,1fr); }
  .select-grid { grid-template-columns: 1fr; }
  .select-grid.two-col { grid-template-columns: 1fr; }
  .color-swatches { grid-template-columns: repeat(4,1fr); }
  .delivery-control { grid-template-columns: 1fr; }
  .craft-section { padding: 90px 0; }
  .craft-image { height: 480px; }
  .craft-image-tag { align-items: flex-start; flex-direction: column; }
  .craft-steps { grid-template-columns: 1fr; }
  .value-section { padding: 90px 0; }
  .value-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .value-grid article { min-height: 230px; }
  .value-grid h3 { margin-top: 60px; }
  .price-examples { grid-template-columns: 1fr; gap: 28px; padding: 25px 20px; }
  .price-examples > i { width: 100%; height: 1px; }
  .price-examples > div { grid-template-columns: 1fr; }
  .price-examples b { grid-column: 1; grid-row: auto; }
  .price-examples small { grid-column: 1; }
  .checkout-plan-grid,
  .payment-method-grid,
  .checkout-total { grid-template-columns: 1fr; }
  .checkout-total > div + div { padding-top: 12px; padding-left: 0; border-top: 1px solid rgba(255,255,255,.15); border-left: 0; }
  .payment-result-header .container-wide { min-height: 74px; }
  .payment-result-header .resin-brand > span { display: none; }
  .payment-result-header > div > a:last-child { font-size: .6rem; }
  .payment-result-main { min-height: calc(100vh - 75px); padding: 35px 12px; }
  .payment-result-meta { grid-template-columns: 1fr; }
  .payment-result-meta > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .payment-result-actions { align-items: stretch; flex-direction: column; }
  .faq-section { padding: 90px 0; }
  .accordion summary { min-height: 76px; font-size: .8rem; }
  .resin-final-cta { padding: 90px 0; }
  .resin-final-cta .container > div { align-items: flex-start; flex-direction: column; }
  .legal-main { padding: 60px 0 90px; }
  .legal-main article { padding: 30px 20px; }
}

@media (max-width: 420px) {
  .container,
  .container-wide { width: min(calc(100% - 24px), var(--container)); }
  .hero-content h1 { font-size: 3.15rem; }
  .hero-meta span { font-size: .58rem; }
  .resin-hero-content h1 { font-size: 3.75rem; }
  .resin-hero-meta { gap: 0; }
  .model-showcase-card,
  .model-showcase-card:nth-child(4) { min-width: 84vw; }
  .model-canvas-wrap { height: 370px; min-height: 350px; }
  .orbit-hint { display: none; }
  .price-main { align-items: flex-start; }
}

@media (min-width: 981px) and (max-height: 1050px) {
  .preview-column {
    position: static;
  }

  .model-canvas-wrap {
    height: 430px;
    min-height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal]:not(.is-visible) { opacity: 1; transform: none; }
}

/* ============================================================
   Helles Theme für das Resin Studio (Umstellung Juli 2026)
   Überschreibt die dunklen Ursprungsstyles weiter oben.
   ============================================================ */
.resin-page {
  --dark: #ffffff;
  --dark-2: #f5f8fb;
  --dark-line: rgba(9, 46, 82, 0.12);
  color: var(--ink);
  background: var(--white);
}

.resin-page ::selection { color: var(--white); background: var(--blue); }

.resin-page h1 em, .resin-page h2 em { color: var(--blue); }
.resin-page .eyebrow.light { color: var(--blue); }

/* Header hell + Logo prominenter */
.resin-header { color: var(--ink); background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(14px); }
.resin-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(17, 45, 74, 0.1);
}
.resin-header .brand { width: 320px; }
.resin-header .brand img {
  width: 250px;
  height: 86px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(9, 46, 82, 0.16);
}
.resin-header.is-scrolled .brand img { width: 216px; height: 72px; }
.resin-brand > span { color: rgba(11, 22, 36, 0.55); }
.resin-header.is-scrolled .resin-brand > span { color: rgba(11, 22, 36, 0.55); }
.resin-header .desktop-nav a { color: rgba(11, 22, 36, 0.78); }
.resin-header .desktop-nav a:hover { color: var(--ink); }
.resin-header .nav-highlight, .resin-header.is-scrolled .nav-highlight { color: var(--blue); }
.resin-header .phone-link { color: var(--ink); }
.resin-header .menu-toggle span { background: var(--ink); }

.resin-page .mobile-menu { color: var(--ink); background: var(--white); }
.resin-page .mobile-menu a { color: var(--ink); border-color: var(--line); }

/* Hero hell */
.resin-hero { min-height: max(680px, 92vh); background: var(--dark-2); }
.resin-hero-shade {
  background: linear-gradient(90deg, rgba(245, 249, 253, 0.99) 0%, rgba(245, 249, 253, 0.94) 38%, rgba(245, 249, 253, 0.24) 78%), linear-gradient(0deg, rgba(245, 249, 253, 0.9), transparent 46%);
}
.resin-orbit, .resin-orbit::before, .resin-orbit::after, .resin-orbit i { border-color: rgba(6, 109, 197, 0.14); }
.resin-orbit i:nth-child(1) { background: var(--blue-bright); box-shadow: 0 0 28px rgba(22, 137, 231, 0.6); border: 0; }
.resin-hero-content h1 { color: var(--ink); }
.resin-hero-content > p:not(.eyebrow) { color: rgba(11, 22, 36, 0.72); }
.resin-hero-meta { border-top-color: rgba(9, 46, 82, 0.18); }
.resin-hero-meta > div + div { border-left-color: rgba(9, 46, 82, 0.18); }
.resin-hero-meta span { color: rgba(11, 22, 36, 0.55); }
.resin-hero-meta strong { color: var(--ink); }
.resin-page .button-glass { color: var(--ink); background: rgba(255, 255, 255, 0.75); border-color: rgba(9, 46, 82, 0.22); }
.resin-page .button-glass:hover { background: var(--white); border-color: rgba(9, 46, 82, 0.45); }
.hero-model-tag { color: var(--ink); background: rgba(255, 255, 255, 0.9); border: 1px solid var(--line); box-shadow: var(--shadow); }
.hero-model-tag small { color: rgba(11, 22, 36, 0.6); }
.resin-page .hero-visual-label { color: rgba(11, 22, 36, 0.55); background: rgba(255, 255, 255, 0.72); }

/* Dunkle Sektionen → helle Flächen */
.section-dark { color: var(--ink); background: var(--dark-2); }
.models-section.section-dark { background: var(--white); }
.resin-intro::before { background: rgba(9, 46, 82, 0.1); }
.intro-number { color: rgba(9, 46, 82, 0.1); }
.resin-intro-grid > p { color: rgba(11, 22, 36, 0.68); }
.resin-heading h2 { color: var(--ink); }

/* Modellkarten hell */
.model-showcase-card {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(17, 45, 74, 0.08);
  text-decoration: none;
}
.model-showcase-card:hover, .model-showcase-card.active {
  background: var(--white);
  border-color: rgba(6, 109, 197, 0.45);
  box-shadow: 0 26px 60px rgba(6, 109, 197, 0.16);
}
.model-no { color: rgba(9, 46, 82, 0.35); }
.model-title { color: var(--ink); }
.model-description { color: rgba(11, 22, 36, 0.62); }
.model-card-copy small { color: var(--blue); }
.model-arrow { color: var(--blue); }

/* Konfigurator-Teaser (Startseite) */
.config-teaser { padding: 110px 0; background: var(--dark-2); }
.config-teaser-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.config-teaser-copy h2 { margin: 14px 0 18px; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.04; }
.config-teaser-copy > p { max-width: 520px; margin-bottom: 22px; color: rgba(11, 22, 36, 0.7); line-height: 1.7; }
.config-teaser-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; margin: 0 0 30px; padding: 0; list-style: none; }
.config-teaser-points li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: 0.95rem; font-weight: 600; }
.config-teaser-points li::before { position: absolute; left: 0; top: 1px; color: var(--blue); font-weight: 800; content: "✓"; }
.config-teaser-visual { position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }
.config-teaser-visual img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; transition: transform 0.5s ease; }
.config-teaser-visual:hover img { transform: scale(1.03); }
.config-teaser-visual span {
  position: absolute; left: 18px; bottom: 18px;
  padding: 12px 20px; border-radius: 999px;
  color: var(--ink); background: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem; font-weight: 800;
  box-shadow: 0 10px 30px rgba(9, 46, 82, 0.2);
}
@media (max-width: 900px) {
  .config-teaser { padding: 70px 0; }
  .config-teaser-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Konfigurator-Seite hell */
.configurator-section { color: var(--ink); background: var(--dark-2); }
.config-title-row h2 { color: var(--ink); }
.config-glow { opacity: 0.25; }
.config-title-row > p { color: rgba(11, 22, 36, 0.66); }
.config-panel { background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.config-panel-head { color: var(--ink); border-bottom-color: var(--line); }
.config-panel-head button { color: var(--blue); background: transparent; border-color: rgba(6, 109, 197, 0.3); }
.config-step legend { color: var(--ink); }
.config-step legend span { color: var(--blue); }
.preset-chips label > span {
  color: var(--ink-soft);
  background: var(--dark-2);
  border: 1px solid var(--line);
}
.preset-chips input:checked + span { color: var(--white); background: var(--blue); border-color: var(--blue); }
.shape-options label > span { color: var(--ink-soft); background: var(--dark-2); border: 1px solid var(--line); }
.shape-options input:checked + span { color: var(--blue); background: rgba(6, 109, 197, 0.08); border-color: var(--blue); }
.shape-options svg { stroke: currentColor; }
.control-label { color: rgba(11, 22, 36, 0.6); }
.dimension-grid label > span:first-child, .select-grid label > span:first-child { color: rgba(11, 22, 36, 0.6); }
.config-panel select, .config-panel input[type="number"], .config-panel input[type="text"] {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}
.config-panel select:focus, .config-panel input:focus { border-color: var(--blue); }
.input-unit { background: var(--white); border-color: var(--line); }
.input-unit i { color: rgba(11, 22, 36, 0.5); }
.delivery-control i { color: rgba(11, 22, 36, 0.5); }
.field-note { color: rgba(11, 22, 36, 0.55); }
.range-field > span { color: var(--ink-soft); }
.range-field output { color: var(--blue); }
.color-swatches label > span { border-color: rgba(9, 46, 82, 0.18); }
.color-swatches input:checked + span { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(6, 109, 197, 0.25); }
.color-swatches small { color: rgba(11, 22, 36, 0.6); }
.check-toggle > span { background: var(--dark-2); border: 1px solid var(--line); }
.check-toggle > span::after { background: var(--white); box-shadow: 0 2px 8px rgba(9, 46, 82, 0.3); }
.check-toggle input:checked + span { background: var(--blue); border-color: var(--blue); }
.check-toggle b { color: var(--ink-soft); }

/* 3D-Vorschau & Preiskarte hell */
.preview-card, .price-card { background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.preview-topbar { color: var(--ink); border-bottom-color: var(--line); }
.view-buttons button { color: var(--ink-soft); background: var(--dark-2); border: 1px solid var(--line); }
.view-buttons button:hover { color: var(--blue); border-color: var(--blue); }
.model-canvas-wrap { background: linear-gradient(180deg, #eef5fb, #dce9f4); }
.model-canvas-wrap::before { opacity: 0.35; }
.canvas-loading { color: var(--ink-soft); background: rgba(245, 249, 253, 0.9); }
.canvas-fallback { color: var(--ink-soft); background: rgba(245, 249, 253, 0.95); }
.dimension-tag { color: var(--ink); background: rgba(255, 255, 255, 0.92); border: 1px solid var(--line); }
.orbit-hint { color: rgba(11, 22, 36, 0.55); }
.preview-specbar { border-top-color: var(--line); }
.preview-specbar > div + div { border-left-color: var(--line); }
.preview-specbar span { color: rgba(11, 22, 36, 0.55); }
.preview-specbar strong { color: var(--ink); }
.price-main strong[data-price] { color: var(--ink); }
.price-main > div:first-child > span { color: var(--blue); }
.price-main > div:first-child > small { color: rgba(11, 22, 36, 0.55); }
.delivery-badge { color: var(--blue); background: rgba(6, 109, 197, 0.08); border: 1px solid rgba(6, 109, 197, 0.25); }
.delivery-badge small { color: rgba(11, 22, 36, 0.55); }
.price-details { border-color: var(--line); }
.price-details summary { color: var(--ink-soft); }
.breakdown-row { color: var(--ink-soft); border-bottom-color: var(--line); }
.breakdown-row strong { color: var(--ink); }
.breakdown-row.total { color: var(--ink); }
.payment-highlights > div { background: var(--dark-2); border: 1px solid var(--line); }
.payment-highlights span { color: rgba(11, 22, 36, 0.6); }
.payment-highlights strong { color: var(--ink); }
.payment-highlights small { color: rgba(11, 22, 36, 0.55); }
.installment-line { color: var(--ink-soft); border-color: var(--line); }
.installment-line strong { color: var(--ink); }
.resin-page .button-outline-resin { color: var(--blue); background: rgba(6, 109, 197, 0.05); border-color: rgba(6, 109, 197, 0.4); }
.resin-page .button-outline-resin:hover { color: var(--white); background: var(--blue); border-color: var(--blue); }
.icon-button { color: var(--ink-soft); background: var(--dark-2); border: 1px solid var(--line); }
.price-disclaimer { color: rgba(11, 22, 36, 0.55); }
.copy-status { color: var(--blue); }

/* Fertigung / Wert / Preisbeispiele */
.craft-section.section-dark { background: var(--white); }
.craft-copy > p:not(.eyebrow):not(.source-note) { color: rgba(11, 22, 36, 0.7); }
.craft-steps strong { color: var(--ink); }
.craft-steps small { color: rgba(11, 22, 36, 0.58); }
.craft-steps span { color: var(--blue); }
.craft-image-tag { color: var(--ink); background: rgba(255, 255, 255, 0.94); border: 1px solid var(--line); }
.craft-image-tag span { color: rgba(11, 22, 36, 0.55); }
.resin-page .visual-label { color: rgba(11, 22, 36, 0.6); background: rgba(255, 255, 255, 0.8); }
.source-note { color: rgba(11, 22, 36, 0.5); }
.source-note a { color: var(--blue); }
.value-section { color: var(--ink); background: var(--dark-2); }
.value-grid article { background: var(--white); border: 1px solid var(--line); }
.value-grid span { color: var(--blue); }
.value-grid h3 { color: var(--ink); }
.value-grid p { color: rgba(11, 22, 36, 0.65); }
.price-examples { color: var(--ink); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.price-examples span { color: var(--blue); }
.price-examples b { color: var(--ink); }
.price-examples small { color: rgba(11, 22, 36, 0.55); }
.price-examples i { background: var(--line); }

/* FAQ hell */
.faq-section.section-dark { background: var(--dark-2); }
.faq-heading > p:not(.eyebrow) { color: rgba(11, 22, 36, 0.66); }
.resin-page .button-outline-light { color: var(--ink); border-color: rgba(9, 46, 82, 0.3); background: transparent; }
.resin-page .button-outline-light:hover { color: var(--blue); border-color: var(--blue); }
.accordion details { background: var(--white); border: 1px solid var(--line); }
.accordion summary { color: var(--ink); }
.accordion summary span { color: var(--blue); }
.accordion details p { color: rgba(11, 22, 36, 0.66); }

/* Abschluss-CTA: farbig statt dunkel */
.resin-final-cta { color: var(--ink); background: linear-gradient(135deg, #e8f3fd, #d3e8fa); }
.resin-final-cta::before { background: rgba(6, 109, 197, 0.08); }
.final-orbit, .final-orbit::before, .final-orbit::after { border-color: rgba(6, 109, 197, 0.16); }
.resin-final-cta h2 { color: var(--ink); }
.resin-final-cta .container > div > a:not(.button) { color: rgba(11, 22, 36, 0.65); }
.resin-final-cta .container > div > a strong { color: var(--ink); }
.resin-final-cta .button-white { color: var(--white); background: linear-gradient(135deg, #0872c4, #004f99); box-shadow: 0 16px 40px rgba(0, 102, 200, 0.3); }

/* Footer hell */
.resin-footer { color: var(--ink); background: var(--white); border-top: 1px solid var(--line); }
.resin-footer .footer-top p { color: rgba(11, 22, 36, 0.62); }
.resin-footer .footer-nav a, .resin-footer .footer-bottom a { color: rgba(11, 22, 36, 0.7); }
.resin-footer .footer-nav a:hover, .resin-footer .footer-bottom a:hover { color: var(--blue); }
.resin-footer .footer-phone { color: var(--blue); }
.resin-footer .footer-bottom { color: rgba(11, 22, 36, 0.5); border-top: 1px solid var(--line); }

/* Dialoge hell */
.resin-page .config-request-dialog { color: var(--ink); background: var(--white); border: 1px solid var(--line); }
.resin-page .config-request-dialog h2 { color: var(--ink); }
.resin-page .config-request-dialog > p { color: rgba(11, 22, 36, 0.66); }
.resin-page .config-request-dialog label > span { color: rgba(11, 22, 36, 0.65); }
.resin-page .config-request-dialog input, .resin-page .config-request-dialog textarea {
  color: var(--ink); background: var(--white); border-color: var(--line);
}
.resin-page .dialog-config-summary { color: var(--ink-soft); background: var(--dark-2); border: 1px solid var(--line); }
.resin-page .dialog-config-summary strong { color: var(--ink); }
.resin-page .dialog-close { color: var(--ink-soft); background: var(--dark-2); border: 1px solid var(--line); }
.checkout-options legend { color: var(--ink); }
.checkout-plan-grid label > span, .payment-method-grid label > span { color: var(--ink-soft); background: var(--dark-2); border: 1px solid var(--line); }
.checkout-plan-grid input:checked + span, .payment-method-grid input:checked + span { color: var(--ink); background: rgba(6, 109, 197, 0.08); border-color: var(--blue); }
.checkout-plan-grid strong, .payment-method-grid strong { color: var(--ink); }
.checkout-total { color: var(--ink); background: var(--dark-2); border: 1px solid var(--line); }
.checkout-total span { color: rgba(11, 22, 36, 0.6); }
.checkout-total > div + div { border-left-color: var(--line); }
.checkout-schedule li { color: var(--ink-soft); border-bottom-color: var(--line); }
.checkout-note, .checkout-provider-note { color: rgba(11, 22, 36, 0.55); }

/* Rechtsseiten & Zahlungsstatus hell */
.legal-page .site-header { background: rgba(255, 255, 255, 0.92); }
.legal-main article { color: var(--ink); background: var(--white); border: 1px solid var(--line); }
.legal-notice { color: var(--ink-soft); background: var(--off); border: 1px solid var(--line); }
.payment-result-page { color: var(--ink); background: var(--off); }
.payment-result-header { border-bottom-color: var(--line); }
.payment-result-header > div > a:last-child { color: var(--blue); }
.payment-result-card { color: var(--ink); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.payment-result-meta { border-color: var(--line); }
.payment-result-note { color: rgba(11, 22, 36, 0.6); }

/* ============================================================
   Feinschliff Juli 2026: eckige Buttons, Holz-Guss-Buttons,
   freistehendes Logo, Modell-Karussell, Sektions-Redesigns
   ============================================================ */

/* Eyebrow-Striche ("—") überall entfernen */
.eyebrow > span { display: none; }

/* Sanft gerundete Buttons (neuer Mockup-Look) */
.button, .header-cta, .view-buttons button, .icon-button,
.config-panel-head button, .carousel-arrow { border-radius: 9px; }

/* Serifen-Headlines wie im neuen Design */
.resin-page h1, .resin-page h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

/* Blaue Buttons im neuen Mockup-Look: schlichtes, kräftiges Blau. */
.button-resin, .button-primary, .resin-final-cta .button-white {
  color: var(--white);
  border: 1px solid transparent;
  background: linear-gradient(180deg, #2268dd, #14489f);
  box-shadow: 0 10px 26px rgba(28, 95, 208, 0.32);
}
.button-resin:hover, .button-primary:hover, .resin-final-cta .button-white:hover {
  box-shadow: 0 14px 32px rgba(28, 95, 208, 0.42);
}

/* Logo freistehend: keine Box, weißer Logohintergrund verschmilzt mit dem Header */
.resin-header .brand { width: 260px; }
.resin-header .brand img,
.resin-header.is-scrolled .brand img {
  width: auto;
  height: 82px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: multiply;
}
.resin-header.is-scrolled .brand img { height: 70px; }
.resin-footer .footer-brand img { mix-blend-mode: multiply; }

/* Modell-Karussell */
.model-carousel { position: relative; }
.model-showcase {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 4px 14px;
  scroll-behavior: smooth;
}
.model-showcase::-webkit-scrollbar { display: none; }
.model-showcase-card {
  flex: 0 0 clamp(250px, 24vw, 320px);
  scroll-snap-align: start;
}
.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(9, 46, 82, 0.18);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.carousel-arrow:hover { color: var(--blue); border-color: var(--blue); }
.carousel-arrow.prev { left: -14px; }
.carousel-arrow.next { right: -14px; }
.carousel-arrow[disabled] { opacity: 0.25; cursor: default; }
@media (max-width: 760px) {
  .carousel-arrow { display: none; }
}

/* Fertigungsschritte: Karten mit Geisterziffer statt nummerierter Liste */
.craft-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 26px;
  padding: 0;
  list-style: none;
}
.craft-steps li {
  position: relative;
  display: block;
  margin: 0;
  padding: 20px 18px 18px 20px;
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.craft-steps li:hover {
  background: var(--white);
  box-shadow: 0 18px 40px rgba(6, 109, 197, 0.16);
  transform: translateY(-4px);
}
.craft-steps li span {
  position: absolute;
  right: 6px;
  top: -14px;
  color: rgba(6, 109, 197, 0.12);
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.25s ease, transform 0.25s ease;
}
.craft-steps li:hover span { color: rgba(6, 109, 197, 0.28); transform: translateY(-4px); }
.craft-steps li p { position: relative; margin: 0; display: grid; gap: 5px; }
.craft-steps li strong { color: var(--ink); font-size: 0.98rem; }
.craft-steps li small { color: rgba(11, 22, 36, 0.6); font-size: 0.8rem; line-height: 1.5; }

/* Wert-Karten: Farbverlauf, Badge-Nummern, Hover-Animation */
.value-grid article {
  position: relative;
  overflow: hidden;
  border-top: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.value-grid article::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #6bd1ff 60%, #aa6e42);
  content: "";
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.value-grid article:hover::before { transform: scaleX(1); }
.value-grid article span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #0872c4, #35a7f2);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(6, 109, 197, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.value-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 56px rgba(6, 109, 197, 0.18);
}
.value-grid article:hover span { transform: rotate(-6deg) scale(1.08); box-shadow: 0 14px 30px rgba(6, 109, 197, 0.4); }
.value-grid article:hover h3 { color: var(--blue); }
.value-grid article h3 { transition: color 0.25s ease; }

/* FAQ: mehr Innenabstand, Texte und Plus nicht am Rand */
.accordion details { border-radius: 10px; }
.accordion summary { padding: 24px 30px; }
.accordion details p { margin: 0; padding: 0 30px 24px; }

/* Abschluss-CTA: Kreis/Strich weg, Linienzeichnung nach Logo-Motiv (Haus mit Kuppel) */
.final-orbit { display: none; }
.resin-final-cta::before {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 340' fill='none' stroke='%23066dc5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 315 H460'/%3E%3Cpath d='M110 315 V196 L240 108 L370 196 V315'/%3E%3Cpath d='M92 204 L240 104 L388 204'/%3E%3Cpath d='M222 315 V258 h36 V315'/%3E%3Crect x='146' y='218' width='44' height='38'/%3E%3Crect x='290' y='218' width='44' height='38'/%3E%3Cpath d='M214 108 A26 26 0 0 1 266 108'/%3E%3Cpath d='M240 82 V52'/%3E%3Cpath d='M240 52 l20 9 -20 9'/%3E%3C/svg%3E")
    no-repeat right 4% bottom -12px / min(46vw, 460px) auto;
  content: "";
}
@media (max-width: 760px) {
  .resin-final-cta::before { opacity: 0.25; background-size: 320px auto; background-position: right -60px bottom -10px; }
}

/* ============================================================
   Buttons: Logo-Blau, eckige Kanten
   (--c-logo-blue ist direkt aus dem Logo entnommen)
   Gilt für die Seiten ohne home.css (Impressum, Datenschutz, Zahlung);
   home.css wiederholt den Block für Startseite + Konfigurator.
   ============================================================ */
:root {
  --c-logo-blue: #005cbe;
  --c-logo-blue-hi: #0a6cd6;
  --c-logo-blue-shadow: rgba(0, 92, 190, 0.3);
}

.button, .button-lg { border-radius: 0; }

.button-primary,
.button-resin {
  color: #fff;
  background: var(--c-logo-blue);
  border-color: transparent;
  box-shadow: 0 12px 28px var(--c-logo-blue-shadow);
}
.button-primary:hover,
.button-resin:hover {
  background: var(--c-logo-blue-hi);
  box-shadow: 0 16px 34px var(--c-logo-blue-shadow);
}
