:root {
  --ice-black: #10100f;
  --ice-black-soft: #171715;
  --ice-graphite: #242321;
  --ice-stone: #d8d1c6;
  --ice-stone-soft: #e6e0d7;
  --ice-paper: #f0ebe3;
  --ice-ink: #171615;
  --ice-muted: #6b665f;
  --ice-red: #e1251b;
  --ice-red-deep: #a91610;
  --ice-frost: #dcecf0;
  --ice-line-dark: rgba(255, 255, 255, 0.13);
  --ice-line-light: rgba(23, 22, 21, 0.14);
  --ice-shadow: 0 24px 70px rgba(18, 16, 13, 0.16);
  --ice-radius: 26px;
  --ice-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--ice-black);
}

body.dryice-page {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 88% 12%, rgba(225, 37, 27, 0.08), transparent 25rem),
    var(--ice-stone);
  color: var(--ice-ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.dryice-page::before {
  position: fixed;
  z-index: 80;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px 5px);
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--ice-red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ice-paper);
  color: var(--ice-ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.dryice-container {
  width: min(100% - 36px, 1240px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ice-red);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.dryice-header {
  position: sticky;
  z-index: 70;
  top: 0;
  border-bottom: 1px solid var(--ice-line-dark);
  background: rgba(16, 16, 15, 0.94);
  color: var(--ice-paper);
  backdrop-filter: blur(18px);
}

.dryice-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 16px;
  width: min(100% - 28px, 1320px);
  min-height: 74px;
  margin-inline: auto;
  padding-block: 10px;
  align-items: center;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand span {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  overflow: hidden;
  font-family: "Archivo", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  margin-top: 2px;
  color: rgba(240, 235, 227, 0.52);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.48rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dryice-nav {
  grid-column: 1 / -1;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.dryice-nav::-webkit-scrollbar {
  display: none;
}

.dryice-nav a {
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(240, 235, 227, 0.7);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.025em;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.dryice-nav a:hover,
.dryice-nav a[aria-current="page"] {
  border-color: rgba(225, 37, 27, 0.45);
  background: rgba(225, 37, 27, 0.1);
  color: #fff;
}

@media (max-width: 380px) {
  .dryice-nav {
    justify-content: space-between;
    gap: 2px;
    overflow: visible;
  }

  .dryice-nav a {
    min-height: 36px;
    padding: 8px 5px;
    font-size: 0.63rem;
    letter-spacing: 0;
  }
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ice-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.dryice-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 118px);
  overflow: hidden;
  align-items: end;
  isolation: isolate;
  background: var(--ice-black);
  color: var(--ice-paper);
}

.dryice-hero__media,
.dryice-hero__shade {
  position: absolute;
  inset: 0;
}

.dryice-hero__media {
  z-index: -3;
  overflow: hidden;
  background: #111;
}

.dryice-hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.45) contrast(1.05) brightness(0.58) sepia(0.12);
  transform: scale(1.025);
}

.dryice-hero__clean {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(170, 210, 219, 0.05), rgba(170, 210, 219, 0.05)),
    url("/assets/img/cinematic/ccc-trockeneis-freilegung-v1.webp") 58% center / cover no-repeat;
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 43% 100%);
  filter: saturate(0.9) contrast(1.17) brightness(0.82);
  animation: dryice-clean-sweep 8.5s var(--ice-ease) infinite alternate;
}

.dryice-hero__clean::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 42%, rgba(219, 242, 246, 0.2) 51%, transparent 59%);
  content: "";
  mix-blend-mode: screen;
}

.dryice-hero__scan {
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: 56%;
  width: 2px;
  background: linear-gradient(transparent, rgba(222, 245, 249, 0.95) 26%, #fff 51%, rgba(225, 37, 27, 0.82) 72%, transparent);
  box-shadow: 0 0 14px rgba(219, 244, 249, 0.9), 0 0 58px rgba(225, 37, 27, 0.2);
  transform: rotate(4deg);
  animation: dryice-scan 8.5s var(--ice-ease) infinite alternate;
}

.dryice-hero__frost {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.72;
}

.dryice-hero__frost i,
.dryice-cta__mist i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(227, 246, 249, 0.88);
  box-shadow: 0 0 12px rgba(226, 247, 250, 0.88);
  animation: dryice-particle 4.8s ease-in-out infinite;
}

.dryice-hero__frost i:nth-child(1) { left: 48%; top: 18%; animation-delay: -0.4s; }
.dryice-hero__frost i:nth-child(2) { left: 66%; top: 25%; animation-delay: -1.1s; transform: scale(0.65); }
.dryice-hero__frost i:nth-child(3) { left: 78%; top: 40%; animation-delay: -2.8s; transform: scale(1.2); }
.dryice-hero__frost i:nth-child(4) { left: 55%; top: 52%; animation-delay: -3.7s; transform: scale(0.5); }
.dryice-hero__frost i:nth-child(5) { left: 87%; top: 62%; animation-delay: -1.9s; }
.dryice-hero__frost i:nth-child(6) { left: 69%; top: 74%; animation-delay: -2.4s; transform: scale(0.72); }
.dryice-hero__frost i:nth-child(7) { left: 92%; top: 18%; animation-delay: -4.1s; transform: scale(0.45); }
.dryice-hero__frost i:nth-child(8) { left: 43%; top: 67%; animation-delay: -1.4s; transform: scale(0.58); }
.dryice-hero__frost i:nth-child(9) { left: 80%; top: 83%; animation-delay: -3.1s; transform: scale(0.85); }

.dryice-hero__temperature {
  position: absolute;
  top: clamp(30px, 7vw, 74px);
  right: 18px;
  padding: 9px 11px;
  border: 1px solid rgba(224, 245, 248, 0.32);
  border-radius: 999px;
  background: rgba(10, 12, 13, 0.5);
  color: rgba(231, 247, 249, 0.82);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.dryice-hero__shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0.05) 0%, rgba(16, 16, 15, 0.2) 34%, rgba(16, 16, 15, 0.97) 90%),
    linear-gradient(90deg, rgba(16, 16, 15, 0.42), transparent 72%);
}

.dryice-hero__content {
  padding-block: clamp(165px, 45svh, 350px) 84px;
}

.dryice-hero__copy {
  width: min(100%, 760px);
}

.dryice-hero h1,
.dryice-section h2,
.dryice-process h2,
.dryice-cta h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 850;
  letter-spacing: -0.057em;
  line-height: 0.94;
  text-wrap: balance;
}

.dryice-hero h1 {
  max-width: 13ch;
  margin-top: 18px;
  font-size: clamp(2.75rem, 12vw, 6.7rem);
}

.dryice-hero__lead {
  max-width: 66ch;
  margin: 22px 0 0;
  color: rgba(240, 235, 227, 0.72);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
}

.dryice-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 220ms var(--ice-ease), background 220ms ease, border-color 220ms ease;
}

.button--primary {
  background: var(--ice-red);
  color: #fff;
  box-shadow: 0 16px 38px rgba(225, 37, 27, 0.2);
}

.button--secondary {
  border-color: rgba(240, 235, 227, 0.28);
  background: rgba(16, 16, 15, 0.48);
  color: var(--ice-paper);
  backdrop-filter: blur(13px);
}

.dryice-hero__note {
  display: flex;
  max-width: 58ch;
  margin: 24px 0 0;
  align-items: flex-start;
  gap: 12px;
  color: rgba(240, 235, 227, 0.58);
  font-size: 0.75rem;
}

.dryice-hero__note > span {
  flex: 0 0 auto;
  color: var(--ice-red);
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.dryice-availability {
  max-width: 72ch;
  margin: 16px 0 0;
  border-left: 3px solid var(--ice-red);
  background: rgba(8, 9, 11, 0.68);
  padding: 12px 14px;
  color: rgba(244, 241, 235, 0.72);
  font-size: 0.72rem;
  line-height: 1.55;
  backdrop-filter: blur(10px);
}

.dryice-availability strong {
  color: #fff;
}

.dryice-hero__rail {
  position: absolute;
  right: 18px;
  bottom: 24px;
  display: none;
  align-items: center;
  gap: 9px;
  color: rgba(240, 235, 227, 0.44);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dryice-hero__rail i {
  width: 24px;
  height: 1px;
  background: rgba(240, 235, 227, 0.25);
}

.dryice-proof {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid var(--ice-line-light);
  background: var(--ice-paper);
}

.dryice-proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dryice-proof article {
  min-width: 0;
  padding: 20px 13px;
  border-right: 1px solid var(--ice-line-light);
  border-bottom: 1px solid var(--ice-line-light);
}

.dryice-proof article:nth-child(even) {
  border-right: 0;
}

.dryice-proof article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.dryice-proof strong,
.dryice-proof span {
  display: block;
}

.dryice-proof strong {
  color: var(--ice-red);
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 850;
}

.dryice-proof span {
  margin-top: 4px;
  color: var(--ice-muted);
  font-size: 0.67rem;
  line-height: 1.45;
}

.dryice-section {
  position: relative;
  padding-block: clamp(76px, 11vw, 150px);
}

.dryice-section__intro h2,
.dryice-section__head h2 {
  margin-top: 17px;
  font-size: clamp(2.25rem, 7vw, 5.25rem);
}

.dryice-section__intro > p,
.dryice-section__head > p {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--ice-muted);
}

.dryice-section__head {
  display: grid;
  gap: 10px 40px;
  margin-bottom: clamp(36px, 6vw, 70px);
}

.dryice-reveal {
  background:
    linear-gradient(118deg, transparent 0 67%, rgba(225, 37, 27, 0.05) 67% 68%, transparent 68%),
    var(--ice-stone);
}

.dryice-reveal__layout {
  display: grid;
  gap: 42px;
  align-items: center;
}

.dryice-checks {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.dryice-checks li {
  position: relative;
  padding-left: 25px;
  font-size: 0.84rem;
  font-weight: 760;
}

.dryice-checks li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--ice-red);
  content: "";
}

.dryice-stage {
  margin: 0;
}

.dryice-stage__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--ice-radius);
  aspect-ratio: 4 / 3;
  background: var(--ice-black);
  box-shadow: var(--ice-shadow);
}

.dryice-stage__before {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.8) sepia(0.25) brightness(0.55) contrast(1.12);
}

.dryice-stage__after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(209, 234, 239, 0.03), rgba(209, 234, 239, 0.03)),
    url("/assets/img/cinematic/ccc-trockeneis-freilegung-v1.webp") center / cover no-repeat;
  clip-path: inset(0 0 0 47%);
  filter: saturate(0.88) brightness(0.88) contrast(1.15);
  animation: dryice-stage-reveal 7.5s var(--ice-ease) infinite alternate;
}

.dryice-stage__beam {
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 47%;
  width: 2px;
  background: linear-gradient(transparent, rgba(225, 246, 249, 0.98), var(--ice-red), transparent);
  box-shadow: 0 0 18px rgba(223, 245, 249, 0.85), 0 0 62px rgba(225, 37, 27, 0.2);
  transform: rotate(2deg);
  animation: dryice-stage-beam 7.5s var(--ice-ease) infinite alternate;
}

.dryice-stage__particles i {
  position: absolute;
  left: 48%;
  top: 42%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(226, 247, 250, 0.9);
  box-shadow: 0 0 12px rgba(226, 247, 250, 0.8);
  animation: dryice-spray 2.6s ease-out infinite;
}

.dryice-stage__particles i:nth-child(2) { animation-delay: -0.55s; --spray-y: -58px; }
.dryice-stage__particles i:nth-child(3) { animation-delay: -1.1s; --spray-y: 42px; }
.dryice-stage__particles i:nth-child(4) { animation-delay: -1.65s; --spray-y: -24px; }
.dryice-stage__particles i:nth-child(5) { animation-delay: -2.2s; --spray-y: 68px; }

.dryice-stage__label {
  position: absolute;
  bottom: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  background: rgba(15, 15, 14, 0.62);
  color: rgba(255, 255, 255, 0.82);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.dryice-stage__label--before {
  left: 12px;
}

.dryice-stage__label--after {
  right: 12px;
}

.dryice-stage figcaption {
  margin-top: 12px;
  color: var(--ice-muted);
  font-size: 0.69rem;
  line-height: 1.5;
}

.dryice-systems {
  overflow: hidden;
  background: var(--ice-paper);
}

.dryice-systems::before {
  position: absolute;
  top: -8rem;
  right: -11rem;
  width: 27rem;
  height: 27rem;
  border: 1px solid rgba(225, 37, 27, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5rem rgba(225, 37, 27, 0.025), 0 0 0 10rem rgba(225, 37, 27, 0.018);
}

.system-grid {
  position: relative;
  display: grid;
  gap: 14px;
}

.system-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 28px 24px;
  border: 1px solid var(--ice-line-light);
  border-radius: var(--ice-radius);
  background: rgba(255, 255, 255, 0.4);
}

.system-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(23, 22, 21, 0.09);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 25px rgba(23, 22, 21, 0.018);
}

.system-card--ice {
  background:
    radial-gradient(circle at 88% 16%, rgba(212, 237, 242, 0.42), transparent 28%),
    var(--ice-black-soft);
  color: var(--ice-paper);
}

.system-card--premium {
  border-color: rgba(225, 37, 27, 0.32);
  background:
    linear-gradient(145deg, rgba(225, 37, 27, 0.13), transparent 42%),
    var(--ice-black);
  color: var(--ice-paper);
}

.system-card__index {
  color: var(--ice-red);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-card h3 {
  max-width: 11ch;
  margin: 74px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 8vw, 3.6rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.system-card p {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: var(--ice-muted);
  font-size: 0.83rem;
}

.system-card--ice p,
.system-card--premium p {
  color: rgba(240, 235, 227, 0.64);
}

.system-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.system-card li {
  padding-left: 16px;
  font-size: 0.72rem;
  font-weight: 720;
}

.system-card li::before {
  position: absolute;
  margin-top: 0.62em;
  margin-left: -16px;
  width: 8px;
  height: 2px;
  background: var(--ice-red);
  content: "";
}

.trademark-note {
  max-width: 92ch;
  margin: 22px 0 0;
  color: var(--ice-muted);
  font-size: 0.68rem;
}

.dryice-process {
  padding-block: clamp(78px, 11vw, 150px);
  background:
    linear-gradient(120deg, transparent 0 70%, rgba(225, 37, 27, 0.09) 70% 70.25%, transparent 70.25%),
    var(--ice-black);
  color: var(--ice-paper);
}

.dryice-section__head--light > p {
  color: rgba(240, 235, 227, 0.57);
}

.process-track {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ice-line-dark);
  list-style: none;
  counter-reset: none;
}

.process-track li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-block: 26px;
  border-bottom: 1px solid var(--ice-line-dark);
}

.process-track > li > span {
  color: var(--ice-red);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-track small {
  color: rgba(240, 235, 227, 0.42);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-track h3 {
  margin: 7px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.45rem, 5vw, 2.35rem);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.process-track p {
  max-width: 55ch;
  margin: 12px 0 0;
  color: rgba(240, 235, 227, 0.58);
  font-size: 0.81rem;
}

.dryice-pricing {
  background: var(--ice-stone-soft);
}

.dryice-pricing .ccc-price-mode {
  margin-bottom: 28px;
}

.dryice-configurator {
  display: grid;
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
}

.dryice-configurator__controls {
  display: grid;
  gap: 18px;
}

.dryice-configurator__controls fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.dryice-configurator__controls legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--ice-ink);
  font-family: "Archivo", sans-serif;
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: -0.01em;
}

.dryice-configurator__controls legend span {
  color: var(--ice-red);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.price-grid {
  display: grid;
  gap: 12px;
}

.dryice-configurator__vehicles label {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.dryice-configurator__vehicles label:last-child {
  grid-column: 1 / -1;
}

.dryice-configurator__vehicles input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.dryice-configurator__vehicles input:focus-visible + .price-card {
  outline: 3px solid rgba(225, 37, 27, 0.3);
  outline-offset: 3px;
}

.dryice-configurator__vehicles input:checked + .price-card {
  border-color: rgba(225, 37, 27, 0.55);
  background:
    linear-gradient(150deg, rgba(225, 37, 27, 0.12), transparent 48%),
    var(--ice-paper);
  box-shadow: var(--ice-shadow);
}

.dryice-configurator__vehicles input:checked + .price-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--ice-red);
  color: #fff;
  content: "✓";
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.price-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 25px 22px;
  border: 1px solid var(--ice-line-light);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.48);
}

.price-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 3px;
  background: var(--ice-red);
  content: "";
}

.price-card--featured {
  border-color: rgba(225, 37, 27, 0.34);
  background:
    linear-gradient(150deg, rgba(225, 37, 27, 0.11), transparent 48%),
    var(--ice-paper);
  box-shadow: var(--ice-shadow);
}

.price-card > span {
  color: var(--ice-red);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 70px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.12rem;
  font-weight: 820;
}

.price-card strong {
  display: block;
  margin-top: 7px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 880;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price-card > small {
  display: block;
  margin-top: 8px;
  color: var(--ice-muted);
  font-size: 0.64rem;
}

.price-card p {
  margin: 27px 0 0;
  color: var(--ice-muted);
  font-size: 0.72rem;
}

.dryice-configurator__detail-grid {
  display: grid;
  gap: 12px;
}

.dryice-configurator__detail-grid fieldset {
  border: 1px solid var(--ice-line-light);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  padding: 18px;
}

.dryice-configurator__detail-grid select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(18, 16, 13, 0.18);
  border-radius: 10px;
  background: var(--ice-paper);
  padding: 0 14px;
  color: var(--ice-ink);
  font: 760 0.78rem/1 "Manrope", sans-serif;
}

.dryice-configurator__result {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(225, 37, 27, 0.2), transparent 36%),
    linear-gradient(145deg, #1b1b1d, #09090b 74%);
  box-shadow: 0 34px 90px rgba(18, 16, 13, 0.2);
  padding: clamp(24px, 4vw, 42px);
  color: #f0ebe3;
}

.dryice-configurator__result::after {
  position: absolute;
  right: -8px;
  bottom: -24px;
  color: rgba(255, 255, 255, 0.035);
  content: "CCC";
  font-family: "Archivo", sans-serif;
  font-size: clamp(6rem, 13vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
  pointer-events: none;
}

.dryice-configurator__result > * {
  position: relative;
  z-index: 1;
}

.dryice-configurator__signal {
  display: block;
  color: #ff7068;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dryice-configurator__result > small {
  display: block;
  margin-top: clamp(44px, 7vw, 78px);
  color: rgba(240, 235, 227, 0.58);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dryice-configurator__result > strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: clamp(3.1rem, 8vw, 5.6rem);
  font-weight: 880;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.dryice-configurator__result > span:not(.dryice-configurator__signal) {
  display: block;
  margin-top: 8px;
  color: rgba(240, 235, 227, 0.52);
  font-size: 0.66rem;
}

.dryice-configurator__result > p {
  max-width: 50ch;
  margin: 24px 0 0;
  color: rgba(240, 235, 227, 0.72);
  font-size: 0.8rem;
  line-height: 1.7;
}

.dryice-configurator__result .ccc-price-mode {
  margin: 24px 0 0;
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  color: #f0ebe3;
}

.dryice-configurator__server {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.63rem !important;
}

.dryice-configurator__server::before {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: rgba(240, 235, 227, 0.45);
  content: "";
}

.dryice-configurator__server.is-verified::before {
  background: #6ac384;
  box-shadow: 0 0 0 5px rgba(106, 195, 132, 0.1);
}

.dryice-configurator__result .button {
  width: 100%;
  margin-top: 22px;
  justify-content: space-between;
}

.hourly-rates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(18, 16, 13, 0.14);
  border-radius: 24px;
  background: rgba(18, 16, 13, 0.14);
}

.hourly-rates__intro,
.hourly-rate {
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(22px, 3vw, 34px);
}

.hourly-rates__intro h3 {
  max-width: 16ch;
  margin: 10px 0 14px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 860;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hourly-rates__intro p,
.hourly-rate p {
  margin: 0;
  color: var(--ice-muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.hourly-rate {
  position: relative;
}

.hourly-rate::after {
  position: absolute;
  right: 16px;
  bottom: 4px;
  color: rgba(18, 16, 13, 0.035);
  content: "CCC";
  font-family: "Archivo", sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 1;
  pointer-events: none;
}

.hourly-rate > span {
  display: block;
  color: var(--ice-red);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hourly-rate strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin: 28px 0 18px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 880;
  letter-spacing: -0.06em;
  line-height: 1;
}

.hourly-rate strong small {
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0;
}

.hourly-rate--subzero {
  background:
    radial-gradient(circle at 100% 0, rgba(225, 37, 27, 0.18), transparent 40%),
    #161618;
  color: #f0ebe3;
}

.hourly-rate--subzero p {
  color: rgba(240, 235, 227, 0.64);
}

.hourly-rate--subzero::after {
  color: rgba(255, 255, 255, 0.035);
}

.price-boundary {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 24px;
  border-left: 3px solid var(--ice-red);
  background: rgba(255, 255, 255, 0.45);
}

.price-boundary strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.1rem;
}

.price-boundary p,
.price-boundary span {
  margin: 0;
  color: var(--ice-muted);
  font-size: 0.73rem;
}

.price-boundary span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.58rem;
}

.dryice-risks {
  background: var(--ice-paper);
}

.risk-box {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 6vw, 58px);
  border: 1px solid rgba(225, 37, 27, 0.3);
  border-radius: var(--ice-radius);
  background:
    linear-gradient(145deg, rgba(225, 37, 27, 0.12), transparent 44%),
    var(--ice-black);
  color: var(--ice-paper);
  box-shadow: 0 28px 90px rgba(16, 16, 15, 0.2);
}

.risk-box__signal {
  display: grid;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(225, 37, 27, 0.54);
  border-radius: 50%;
  place-items: center;
  color: var(--ice-red);
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.risk-box h2 {
  margin-top: 15px;
  font-size: clamp(2.5rem, 10vw, 5.8rem);
}

.risk-box p {
  max-width: 70ch;
  margin: 20px 0 0;
  color: rgba(240, 235, 227, 0.66);
}

.risk-box ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.risk-box li {
  position: relative;
  padding: 0 0 12px 25px;
  border-bottom: 1px solid var(--ice-line-dark);
  color: rgba(240, 235, 227, 0.68);
  font-size: 0.78rem;
}

.risk-box li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--ice-red);
  content: "";
}

.dryice-directions {
  background: var(--ice-stone);
}

.dryice-directions__grid {
  display: grid;
  gap: 34px;
}

.dryice-directions h2 {
  margin-top: 17px;
  font-size: clamp(2.45rem, 8vw, 5rem);
}

.dryice-directions p {
  max-width: 65ch;
  margin: 22px 0 0;
  color: var(--ice-muted);
}

.direction-links {
  display: grid;
  gap: 12px;
}

.direction-links a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--ice-line-light);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.44);
  text-decoration: none;
}

.direction-links a::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(225, 37, 27, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 22px rgba(225, 37, 27, 0.025);
}

.direction-links small {
  color: var(--ice-red);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direction-links strong {
  margin-top: 28px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.55rem, 6vw, 2.55rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1;
}

.direction-links span {
  position: relative;
  z-index: 1;
  color: var(--ice-muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.direction-links i {
  color: var(--ice-red);
  font-style: normal;
}

.ppf-boundary {
  padding: 18px 20px;
  border-left: 3px solid var(--ice-red);
  background: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.dryice-interior {
  isolation: isolate;
  scroll-margin-top: 178px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 16%, rgba(225, 37, 27, 0.18), transparent 24rem),
    radial-gradient(circle at 12% 66%, rgba(220, 236, 240, 0.08), transparent 27rem),
    linear-gradient(152deg, #191917, #0d0d0c 68%);
  color: var(--ice-paper);
}

.dryice-interior::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.dryice-interior::after {
  position: absolute;
  z-index: -1;
  right: -7vw;
  bottom: -2vw;
  color: rgba(255, 255, 255, 0.018);
  content: "CCC";
  font-family: "Archivo", sans-serif;
  font-size: clamp(10rem, 34vw, 34rem);
  font-weight: 900;
  letter-spacing: -0.13em;
  line-height: 0.75;
  pointer-events: none;
}

.dryice-interior__trace {
  position: absolute;
  top: 38px;
  right: 18px;
  max-width: calc(100% - 36px);
  overflow: hidden;
  color: rgba(240, 235, 227, 0.16);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.dryice-interior__head > p {
  color: rgba(240, 235, 227, 0.62);
}

.dryice-interior__head h2,
.dryice-interior__stage h3,
.dryice-interior__pricing h3,
.dryice-interior__workflow h3,
.dryice-interior__limits h3,
.dryice-interior__cta strong {
  overflow-wrap: break-word;
}

.dryice-interior__stage {
  display: grid;
  gap: clamp(18px, 4vw, 38px);
  align-items: stretch;
}

.dryice-interior__copy {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(24px, 5vw, 50px);
}

.dryice-interior__kicker {
  color: #ff6a62;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.dryice-interior__copy h3,
.dryice-interior__pricing-head h3,
.dryice-interior__workflow-head h3,
.dryice-interior__limits h3 {
  margin: 20px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 6.8vw, 4.3rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.dryice-interior__copy > p {
  max-width: 62ch;
  margin: 22px 0 0;
  color: rgba(240, 235, 227, 0.63);
  font-size: 0.82rem;
  line-height: 1.75;
}

.dryice-interior__copy > ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.dryice-interior__copy > li,
.dryice-interior__copy > ul li {
  position: relative;
  padding-left: 24px;
  color: rgba(240, 235, 227, 0.78);
  font-size: 0.73rem;
  font-weight: 760;
}

.dryice-interior__copy > ul li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--ice-red);
  content: "";
}

.dryice-interior__visual {
  position: relative;
  min-width: 0;
  min-height: clamp(350px, 76vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(240, 235, 227, 0.15);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(240, 235, 227, 0.1), transparent 38%),
    radial-gradient(circle at 68% 36%, rgba(220, 236, 240, 0.16), transparent 8rem),
    #11110f;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.48), 0 32px 85px rgba(0, 0, 0, 0.23);
}

.dryice-interior__visual::before {
  position: absolute;
  inset: 12% 10% 21%;
  border: 1px solid rgba(240, 235, 227, 0.16);
  border-radius: 48% 48% 22% 22% / 28% 28% 18% 18%;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(240, 235, 227, 0.1) 49.7% 50.3%, transparent 50.3%),
    linear-gradient(165deg, transparent 0 58%, rgba(225, 37, 27, 0.13) 58% 58.7%, transparent 58.7%);
  content: "";
  clip-path: polygon(12% 0, 88% 0, 100% 25%, 91% 100%, 9% 100%, 0 25%);
}

.dryice-interior__visual::after {
  position: absolute;
  top: 24%;
  left: 50%;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(225, 37, 27, 0.3);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 22px rgba(225, 37, 27, 0.035),
    0 0 0 64px rgba(220, 236, 240, 0.025);
  transform: translateX(-50%);
}

.dryice-interior__ghost {
  position: absolute;
  top: 8px;
  right: -4px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Archivo", sans-serif;
  font-size: clamp(6rem, 29vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.13em;
  line-height: 1;
}

.dryice-interior__scan {
  position: absolute;
  z-index: 3;
  top: 20%;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 91, 82, 0.28), #ff5b52 50%, rgba(255, 91, 82, 0.28), transparent);
  box-shadow: 0 0 24px rgba(225, 37, 27, 0.55);
  animation: dryice-interior-scan 6.4s var(--ice-ease) infinite alternate;
}

.dryice-interior__orbit {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--ice-red);
  box-shadow: 0 0 0 7px rgba(225, 37, 27, 0.12);
}

.dryice-interior__orbit--one {
  top: 28%;
  left: 22%;
}

.dryice-interior__orbit--two {
  top: 49%;
  right: 19%;
}

.dryice-interior__visual-copy {
  position: absolute;
  z-index: 4;
  top: 23%;
  left: 50%;
  width: min(72%, 320px);
  text-align: center;
  transform: translateX(-50%);
}

.dryice-interior__visual-copy small,
.dryice-interior__visual-copy span {
  display: block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dryice-interior__visual-copy small {
  color: #ff6f67;
}

.dryice-interior__visual-copy strong {
  display: block;
  margin: 16px 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(3rem, 15vw, 6.5rem);
  font-weight: 880;
  letter-spacing: -0.075em;
  line-height: 0.72;
  text-transform: uppercase;
}

.dryice-interior__visual-copy span {
  color: rgba(240, 235, 227, 0.5);
}

.dryice-interior__signals {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 227, 0.1);
  border-radius: 13px;
  background: rgba(240, 235, 227, 0.1);
}

.dryice-interior__signals span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  background: rgba(10, 10, 9, 0.88);
  padding: 9px 11px;
  color: rgba(240, 235, 227, 0.64);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.48rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.dryice-interior__signals i {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: #6ac384;
  box-shadow: 0 0 0 4px rgba(106, 195, 132, 0.09);
}

@keyframes dryice-interior-scan {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(clamp(150px, 43vw, 265px));
  }
}

.dryice-interior__pricing {
  margin-top: clamp(72px, 10vw, 130px);
}

.dryice-interior__pricing-head {
  max-width: 900px;
}

.dryice-interior__pricing-head > p {
  max-width: 70ch;
  margin: 20px 0 0;
  color: rgba(240, 235, 227, 0.6);
  font-size: 0.78rem;
}

.dryice-interior__price-grid {
  display: grid;
  gap: 13px;
  margin-top: clamp(30px, 5vw, 56px);
}

.dryice-interior__price-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 227, 0.14);
  border-radius: 24px;
  background: rgba(240, 235, 227, 0.045);
  padding: clamp(23px, 4vw, 34px);
}

.dryice-interior__price-card::after {
  position: absolute;
  right: -11px;
  bottom: -18px;
  color: rgba(255, 255, 255, 0.025);
  content: "CCC";
  font-family: "Archivo", sans-serif;
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: -0.14em;
  line-height: 1;
  pointer-events: none;
}

.dryice-interior__price-card > * {
  position: relative;
  z-index: 1;
}

.dryice-interior__price-card > span {
  display: block;
  color: #ff6c64;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dryice-interior__price-card h4 {
  margin: 38px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 860;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.dryice-interior__price-card > strong {
  display: block;
  margin: 22px 0 5px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 8vw, 3.6rem);
  font-weight: 880;
  letter-spacing: -0.065em;
  line-height: 1;
}

.dryice-interior__price-card > small {
  display: block;
  color: rgba(240, 235, 227, 0.48);
  font-size: 0.58rem;
}

.dryice-interior__price-card > p {
  margin: 24px 0 0;
  color: rgba(240, 235, 227, 0.63);
  font-size: 0.74rem;
  line-height: 1.7;
}

.dryice-interior__price-card > b {
  display: inline-flex;
  margin-top: 17px;
  border: 1px solid rgba(255, 108, 100, 0.32);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.08);
  padding: 6px 10px;
  color: #ff7e77;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.51rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dryice-interior__price-card > ul {
  display: grid;
  gap: 9px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.dryice-interior__price-card > ul li {
  position: relative;
  padding-left: 19px;
  color: rgba(240, 235, 227, 0.66);
  font-size: 0.67rem;
}

.dryice-interior__price-card > ul li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 2px;
  background: var(--ice-red);
  content: "";
}

.dryice-interior__price-card--complete {
  background:
    linear-gradient(145deg, rgba(225, 37, 27, 0.1), transparent 36%),
    var(--ice-paper);
  color: var(--ice-ink);
}

.dryice-interior__price-card--complete > p,
.dryice-interior__price-card--complete > small {
  color: var(--ice-muted);
}

.dryice-interior__price-card--complete::after {
  color: rgba(18, 16, 13, 0.035);
}

.dryice-interior__price-card dl {
  display: grid;
  gap: 0;
  margin: 25px 0 18px;
}

.dryice-interior__price-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(18, 16, 13, 0.12);
  align-items: baseline;
}

.dryice-interior__price-card dt,
.dryice-interior__price-card dd {
  min-width: 0;
  margin: 0;
}

.dryice-interior__price-card dt {
  color: var(--ice-muted);
  font-size: 0.65rem;
}

.dryice-interior__price-card dd {
  font-family: "Archivo", sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.dryice-interior__price-card--collector {
  border-color: rgba(225, 37, 27, 0.38);
  background:
    radial-gradient(circle at 100% 0, rgba(225, 37, 27, 0.26), transparent 44%),
    #191918;
}

.dryice-interior__configurator {
  display: grid;
  min-width: 0;
  gap: 18px;
  margin-top: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(225, 37, 27, 0.34);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(225, 37, 27, 0.11), transparent 48%),
    rgba(240, 235, 227, 0.04);
}

.dryice-interior__config-copy,
.dryice-interior__config-result {
  min-width: 0;
}

.dryice-interior__config-copy h4 {
  margin: 14px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.8rem, 7vw, 3.25rem);
  font-weight: 860;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.dryice-interior__config-copy > p {
  max-width: 62ch;
  margin: 16px 0 0;
  color: rgba(240, 235, 227, 0.62);
  font-size: 0.73rem;
}

.dryice-interior__config-fields {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.dryice-interior__config-fields label {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.dryice-interior__config-fields label > span {
  color: rgba(240, 235, 227, 0.58);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dryice-interior__config-fields select {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  border: 1px solid rgba(240, 235, 227, 0.18);
  border-radius: 11px;
  background: #222220;
  color: var(--ice-paper);
  padding: 12px 38px 12px 13px;
  font: 750 0.78rem/1.35 "Manrope", sans-serif;
}

.dryice-interior__config-result {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(240, 235, 227, 0.14);
  border-radius: 18px;
  background: #f0ebe3;
  color: var(--ice-ink);
  padding: clamp(20px, 4vw, 30px);
}

.dryice-interior__config-result::after {
  position: absolute;
  right: -13px;
  top: -20px;
  content: "CCC";
  color: rgba(18, 16, 13, 0.045);
  font: 900 6rem/1 "Archivo", sans-serif;
  letter-spacing: -0.13em;
  pointer-events: none;
}

.dryice-interior__config-result > * {
  position: relative;
  z-index: 1;
}

.dryice-interior__config-result > small {
  color: var(--ice-red-deep);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dryice-interior__config-result > small.is-verified {
  color: #28724a;
}

.dryice-interior__config-result > strong {
  margin-top: 17px;
  font: 880 clamp(2.6rem, 12vw, 5rem)/0.9 "Archivo", sans-serif;
  letter-spacing: -0.075em;
}

.dryice-interior__config-result > span {
  margin-top: 8px;
  color: var(--ice-muted);
  font-size: 0.62rem;
}

.dryice-interior__config-result > p {
  margin: 18px 0 0;
  color: var(--ice-muted);
  font-size: 0.7rem;
  line-height: 1.62;
}

.dryice-interior__config-result .button {
  width: 100%;
  margin-top: 22px;
}

.dryice-interior__workflow {
  margin-top: clamp(72px, 10vw, 130px);
  overflow: hidden;
  border: 1px solid rgba(240, 235, 227, 0.13);
  border-radius: 28px;
  background: rgba(240, 235, 227, 0.038);
}

.dryice-interior__workflow-head {
  padding: clamp(24px, 5vw, 52px);
}

.dryice-interior__workflow-head h3 {
  max-width: 18ch;
}

.dryice-interior__workflow ol {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(240, 235, 227, 0.12);
  list-style: none;
}

.dryice-interior__workflow li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border-bottom: 1px solid rgba(240, 235, 227, 0.1);
}

.dryice-interior__workflow li:last-child {
  border-bottom: 0;
}

.dryice-interior__workflow li > span {
  color: #ff6c64;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  font-weight: 850;
}

.dryice-interior__workflow h4 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.12rem;
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.dryice-interior__workflow p {
  margin: 10px 0 0;
  color: rgba(240, 235, 227, 0.56);
  font-size: 0.68rem;
  line-height: 1.65;
}

.dryice-interior__limits {
  display: grid;
  gap: 28px;
  margin-top: 14px;
  border: 1px solid rgba(225, 37, 27, 0.36);
  border-radius: 28px;
  background:
    linear-gradient(125deg, rgba(225, 37, 27, 0.12), transparent 42%),
    rgba(0, 0, 0, 0.24);
  padding: clamp(24px, 5vw, 52px);
}

.dryice-interior__limits h3 {
  max-width: 15ch;
  font-size: clamp(2rem, 6vw, 3.8rem);
}

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

.dryice-interior__limits li {
  padding: 0 0 12px 20px;
  border-bottom: 1px solid rgba(240, 235, 227, 0.11);
  color: rgba(240, 235, 227, 0.62);
  font-size: 0.71rem;
  line-height: 1.65;
}

.dryice-interior__limits li::before {
  position: absolute;
}

.dryice-interior__limits li {
  position: relative;
}

.dryice-interior__limits li::before {
  top: 0.76em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--ice-red);
  content: "";
}

.dryice-interior__limits li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.dryice-interior__limits strong {
  color: var(--ice-paper);
}

.dryice-interior__cta {
  display: grid;
  gap: 24px;
  margin-top: clamp(42px, 7vw, 82px);
  border-top: 1px solid rgba(240, 235, 227, 0.15);
  padding-top: clamp(28px, 5vw, 50px);
  align-items: end;
}

.dryice-interior__cta small {
  display: block;
  color: #ff6c64;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.dryice-interior__cta strong {
  display: block;
  max-width: 26ch;
  margin-top: 12px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.55rem, 5vw, 2.7rem);
  font-weight: 840;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.dryice-interior__cta p {
  margin: 14px 0 0;
  color: rgba(240, 235, 227, 0.54);
  font-size: 0.7rem;
}

.dryice-interior__cta .button {
  width: 100%;
}

.dryice-faq {
  background: var(--ice-paper);
}

.faq-list {
  border-top: 1px solid var(--ice-line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--ice-line-light);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 15px;
  min-height: 80px;
  padding-block: 22px;
  align-items: center;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.03rem, 4.8vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.16;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ice-line-light);
  border-radius: 50%;
  place-items: center;
  color: var(--ice-red);
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  transition: transform 220ms ease;
}

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

.faq-list details > div {
  max-width: 72ch;
  padding: 0 48px 24px 0;
  color: var(--ice-muted);
}

.faq-list p {
  margin: 0;
}

.dryice-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 13vw, 170px);
  background:
    radial-gradient(circle at 84% 30%, rgba(211, 236, 241, 0.12), transparent 21rem),
    linear-gradient(132deg, transparent 63%, rgba(225, 37, 27, 0.11) 63% 64%, transparent 64%),
    var(--ice-black);
  color: var(--ice-paper);
}

.dryice-cta__content {
  position: relative;
  z-index: 2;
}

.dryice-cta h2 {
  max-width: 14ch;
  margin-top: 18px;
  font-size: clamp(2.8rem, 10vw, 7.2rem);
}

.dryice-cta p {
  max-width: 65ch;
  margin: 24px 0 0;
  color: rgba(240, 235, 227, 0.63);
}

.dryice-cta__mist {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.dryice-cta__mist i:nth-child(1) { top: 22%; right: 18%; width: 12px; height: 12px; animation-delay: -1s; }
.dryice-cta__mist i:nth-child(2) { top: 48%; right: 8%; width: 6px; height: 6px; animation-delay: -2.4s; }
.dryice-cta__mist i:nth-child(3) { bottom: 16%; right: 28%; width: 9px; height: 9px; animation-delay: -3.6s; }

.dryice-footer {
  padding-block: 46px 22px;
  border-top: 1px solid var(--ice-line-dark);
  background: #0b0b0a;
  color: var(--ice-paper);
}

.dryice-footer__grid {
  display: grid;
  gap: 34px;
}

.brand--footer img {
  width: 52px;
  height: 52px;
}

.dryice-footer nav {
  display: grid;
  gap: 9px;
}

.dryice-footer nav a {
  width: fit-content;
  color: rgba(240, 235, 227, 0.58);
  font-size: 0.73rem;
  font-weight: 720;
  text-decoration: none;
}

.dryice-footer nav a:hover {
  color: #fff;
}

.dryice-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--ice-line-dark);
  color: rgba(240, 235, 227, 0.35);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.54rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@keyframes dryice-clean-sweep {
  0% {
    clip-path: polygon(72% 0, 100% 0, 100% 100%, 59% 100%);
  }
  100% {
    clip-path: polygon(47% 0, 100% 0, 100% 100%, 32% 100%);
  }
}

@keyframes dryice-scan {
  0% { left: 69%; }
  100% { left: 44%; }
}

@keyframes dryice-particle {
  0%,
  100% {
    opacity: 0;
    translate: 0 14px;
  }
  25% {
    opacity: 0.85;
  }
  65% {
    opacity: 0.45;
  }
  80% {
    opacity: 0;
    translate: 18px -34px;
  }
}

@keyframes dryice-stage-reveal {
  from { clip-path: inset(0 0 0 68%); }
  to { clip-path: inset(0 0 0 31%); }
}

@keyframes dryice-stage-beam {
  from { left: 68%; }
  to { left: 31%; }
}

@keyframes dryice-spray {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.4);
  }
  16% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
    transform: translate3d(92px, var(--spray-y, 20px), 0) scale(1.1);
  }
}

@media (min-width: 390px) {
  .dryice-container {
    width: min(100% - 44px, 1240px);
  }

  .dryice-hero__temperature {
    right: 24px;
  }

  .dryice-actions {
    width: fit-content;
  }

  .button {
    padding-inline: 22px;
  }
}

@media (min-width: 768px) {
  .dryice-interior {
    scroll-margin-top: 100px;
  }

  .dryice-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
    min-height: 82px;
    padding-block: 0;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .dryice-nav {
    grid-column: auto;
    justify-content: center;
    overflow: visible;
  }

  .dryice-nav a {
    padding-inline: 11px;
  }

  .header-cta {
    padding-inline: 18px;
  }

  .dryice-hero {
    min-height: calc(100svh - 82px);
  }

  .dryice-hero__content {
    padding-block: 200px 105px;
  }

  .dryice-hero__media > img,
  .dryice-hero__clean {
    object-position: center;
    background-position: center;
  }

  .dryice-hero__shade {
    background:
      linear-gradient(180deg, rgba(16, 16, 15, 0.06), rgba(16, 16, 15, 0.82) 88%),
      linear-gradient(90deg, rgba(16, 16, 15, 0.9) 0%, rgba(16, 16, 15, 0.44) 53%, rgba(16, 16, 15, 0.05) 82%);
  }

  .dryice-hero h1 {
    font-size: clamp(4.8rem, 9.8vw, 7.4rem);
  }

  .dryice-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button {
    min-height: 56px;
  }

  .dryice-hero__rail {
    display: flex;
  }

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

  .dryice-proof article {
    padding: 25px 22px;
    border-bottom: 0;
  }

  .dryice-proof article:nth-child(even) {
    border-right: 1px solid var(--ice-line-light);
  }

  .dryice-proof article:last-child {
    border-right: 0;
  }

  .dryice-proof strong {
    font-size: 1.18rem;
  }

  .dryice-section__head {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: end;
  }

  .dryice-section__head > p {
    margin: 0 0 4px;
  }

  .dryice-reveal__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(50px, 8vw, 110px);
  }

  .dryice-stage__frame {
    aspect-ratio: 16 / 11;
  }

  .system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-card:last-child {
    grid-column: 1 / -1;
  }

  .system-card {
    min-height: 500px;
    padding: 32px 28px;
  }

  .system-card h3 {
    margin-top: 110px;
    font-size: clamp(2.35rem, 3.4vw, 3rem);
    overflow-wrap: anywhere;
  }

  .process-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-track li {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: 420px;
    padding: 24px 21px;
    border-right: 1px solid var(--ice-line-dark);
  }

  .process-track li:last-child {
    border-right: 0;
  }

  .process-track h3 {
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  }

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

  .dryice-configurator__detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dryice-configurator__detail-grid fieldset:last-child {
    grid-column: 1 / -1;
  }

  .hourly-rates {
    grid-template-columns: 1fr 1fr;
  }

  .hourly-rates__intro {
    grid-column: 1 / -1;
  }

  .hourly-rate {
    min-height: 245px;
  }

  .risk-box {
    grid-template-columns: 82px 1fr;
  }

  .risk-box__signal {
    width: 70px;
    height: 70px;
  }

  .risk-box li {
    font-size: 0.86rem;
  }

  .dryice-directions__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 60px;
    align-items: start;
  }

  .ppf-boundary {
    grid-column: 1 / -1;
  }

  .dryice-interior__visual {
    min-height: 100%;
  }

  .dryice-interior__signals {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dryice-interior__price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dryice-interior__price-card--collector {
    grid-column: 1 / -1;
  }

  .dryice-interior__config-fields {
    grid-template-columns: 1fr 1fr;
  }

  .dryice-interior__workflow ol {
    grid-template-columns: 1fr 1fr;
  }

  .dryice-interior__workflow li:nth-child(odd) {
    border-right: 1px solid rgba(240, 235, 227, 0.1);
  }

  .dryice-interior__limits {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .dryice-interior__cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .dryice-interior__cta .button {
    width: auto;
    min-width: 250px;
  }

  .dryice-cta .dryice-actions {
    margin-top: 34px;
  }

  .dryice-footer__grid {
    grid-template-columns: minmax(250px, 1.5fr) 1fr 0.8fr;
  }
}

@media (min-width: 1100px) {
  .dryice-interior__stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .dryice-interior__configurator {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: stretch;
  }

  .dryice-configurator__detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dryice-configurator__detail-grid fieldset:last-child {
    grid-column: auto;
  }

  .direction-links {
    grid-template-columns: 1fr 1fr;
  }

  .dryice-nav a {
    padding-inline: 15px;
    font-size: 0.75rem;
  }

  .header-cta {
    font-size: 0.73rem;
  }

  .dryice-hero__content {
    padding-bottom: 118px;
  }

  .dryice-hero__copy {
    width: min(64vw, 850px);
  }

  .dryice-hero__lead {
    font-size: 1.14rem;
  }

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

  .dryice-configurator {
    grid-template-columns: minmax(0, 1.35fr) minmax(350px, 0.65fr);
  }

  .dryice-configurator__vehicles {
    grid-template-columns: 1fr 1fr;
  }

  .dryice-configurator__result {
    position: sticky;
    top: 104px;
  }

  .hourly-rates {
    grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.75fr));
  }

  .hourly-rates__intro {
    grid-column: auto;
  }

  .price-card {
    min-height: 340px;
    padding: 28px 24px;
  }

  .price-card h3 {
    margin-top: 96px;
  }

  .dryice-interior__stage {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .dryice-interior__visual {
    min-height: 590px;
  }

  .dryice-interior__price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dryice-interior__price-card {
    min-height: 590px;
  }

  .dryice-interior__price-card--collector {
    grid-column: auto;
  }

  .dryice-interior__workflow ol {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dryice-interior__workflow li,
  .dryice-interior__workflow li:nth-child(odd) {
    min-height: 260px;
    border-right: 1px solid rgba(240, 235, 227, 0.1);
    border-bottom: 0;
  }

  .dryice-interior__workflow li:last-child {
    border-right: 0;
  }

  .dryice-cta__content {
    padding-left: 6vw;
  }
}

@media (min-width: 1160px) {
  .system-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .system-card:last-child {
    grid-column: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .header-cta:hover {
    transform: translateY(-3px);
  }

  .button--primary:hover,
  .header-cta:hover {
    background: #f02b20;
  }

  .button--secondary:hover {
    border-color: rgba(240, 235, 227, 0.55);
    background: rgba(34, 33, 31, 0.72);
  }

  .system-card,
  .price-card,
  .dryice-interior__price-card,
  .direction-links a {
    transition: transform 300ms var(--ice-ease), border-color 300ms ease, box-shadow 300ms ease;
  }

  .system-card:hover,
  .price-card:hover,
  .dryice-interior__price-card:hover,
  .direction-links a:hover {
    border-color: rgba(225, 37, 27, 0.38);
    box-shadow: 0 24px 60px rgba(18, 16, 13, 0.13);
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .dryice-hero__clean {
    clip-path: polygon(56% 0, 100% 0, 100% 100%, 43% 100%);
  }

  .dryice-hero__scan {
    left: 54%;
  }

  .dryice-hero__frost,
  .dryice-stage__particles,
  .dryice-cta__mist {
    display: none;
  }

  .dryice-stage__after {
    clip-path: inset(0 0 0 52%);
  }

  .dryice-stage__beam {
    left: 52%;
  }

  .dryice-interior__scan {
    transform: none;
  }
}

@media (forced-colors: active) {
  .dryice-header,
  .dryice-hero,
  .dryice-process,
  .risk-box,
  .dryice-interior,
  .dryice-cta,
  .dryice-footer {
    border-color: CanvasText;
    background: Canvas;
    color: CanvasText;
  }

  .button,
  .header-cta,
  .dryice-nav a,
  .system-card,
  .price-card,
  .dryice-interior__copy,
  .dryice-interior__visual,
  .dryice-interior__price-card,
  .dryice-interior__workflow,
  .dryice-interior__limits,
  .direction-links a {
    border: 1px solid ButtonText;
  }
}
