/*
 * ICYLAB Home v0.7.10
 *
 * Commercial rebuild on the shared interior-page system. The Home keeps a
 * distinctive campaign composition but deliberately avoids fixed chapter
 * heights, nested scroll containers and mandatory scroll snapping.
 */

html.icy-home-v2-scroll,
html.icy-home-v2-scroll.icy-interior-scroll {
  scroll-behavior: smooth;
  scroll-snap-type: none !important;
}

body.icy-home-v2-page {
  --icy-home-v2-acid: #00ff30;
  --icy-home-v2-black: #000;
  --icy-home-v2-paper: #f4f3ee;
  --icy-home-v2-edge: max(var(--icy-interior-gutter), calc((100vw - var(--icy-interior-max)) / 2));
  --icy-home-v2-bleed-gutter: var(--icy-interior-gutter);
  --icy-home-v2-stacked-art-w: min(92vw, 610px);
  /* Hero/opportunity art are two different PNG crops of the same visual system.
     Their alpha silhouette at the transition differs, so their CSS widths must
     not be identical. These values equalise the visible tank diameter at the
     seam instead of the full transparent canvas. */
  --icy-home-v2-hero-art-w: min(86.85vw, 576px);
  --icy-home-v2-opportunity-art-w: min(103.7vw, 688px);
  background: var(--icy-home-v2-black);
}

/* The Home keeps only the shared sticky global header. */
body.icy-home-v2-page .icy-home-v2-main > .icy-interior-section:not([data-icy-interior-hero]) {
  scroll-margin-top: var(--icy-header-h);
}

body.icy-home-v2-page .icy-home-v2-main {
  background: var(--icy-home-v2-black);
  overflow: clip;
}

body.icy-home-v2-page .icy-interior-section {
  height: auto !important;
  max-height: none !important;
  min-height: 0;
  scroll-snap-align: none !important;
}

.icy-home-v2-page :where(figure, h3, p) {
  margin-top: 0;
}

.icy-home-v2-page figure {
  margin-inline: 0;
  margin-bottom: 0;
}

.icy-home-v2-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.icy-home-v2-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: clamp(72px, 7vw, 136px) clamp(72px, 7vw, 136px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.72) 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.72) 58%, transparent 100%);
}

.icy-home-v2-grid + .icy-interior-shell,
.icy-home-v2-grid ~ .icy-home-v2-proofbar {
  position: relative;
  z-index: 1;
}

/* Hero */
.icy-home-v2-hero {
  display: grid;
  grid-template-rows: auto auto;
  min-height: calc(100svh - var(--icy-header-h));
  padding: 0;
}

.icy-home-v2-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  min-height: calc(100svh - var(--icy-header-h) - 50px);
  padding-top: clamp(2.5rem, 6svh, 5.5rem);
  padding-bottom: 0;
}

.icy-home-v2-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
}

.icy-home-v2-hero-title {
  max-width: 9.5ch;
  font-size: clamp(3.8rem, min(6vw, 10.5svh), 7.5rem);
}

.icy-home-v2-hero-title span,
.icy-home-v2-hero-title em {
  display: inline;
}

.icy-home-v2-hero .icy-interior-lead {
  max-width: 31ch;
  margin-top: clamp(1.25rem, 2.6svh, 2rem);
}

.icy-home-v2-hero .icy-interior-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 620px);
}

.icy-home-v2-hero .icy-interior-btn {
  width: 100%;
  min-width: 0;
  gap: .85rem;
  box-sizing: border-box;
}

.icy-home-v2-hero .icy-home-v2-btn-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.icy-home-v2-hero-media {
  align-self: stretch;
  display: grid;
  min-width: 0;
  margin-right: calc(-1 * var(--icy-home-v2-edge));
  place-items: end center;
}

.icy-home-v2-hero-media > img,
.icy-home-v2-hero-media .icy-home-v2-cover {
  width: auto;
  max-width: min(100%, 720px);
  height: auto;
  max-height: calc(100svh - var(--icy-header-h) - 50px - clamp(2.5rem, 6svh, 5.5rem));
  object-fit: contain;
  object-position: center bottom;
}

.icy-home-v2-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icy-home-v2-proofbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 50px;
  background: var(--icy-home-v2-acid);
  color: #000;
}

.icy-home-v2-proofbar span {
  display: grid;
  min-width: 0;
  padding: .65rem 1rem;
  place-items: center;
  border-right: 1px solid rgba(0,0,0,.24);
  font-family: 'Cy Grotesk', Arial, sans-serif;
  font-size: clamp(.55rem, .62vw, .7rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.icy-home-v2-proofbar span:last-child {
  border-right: 0;
}

/* Shared chapter geometry */
.icy-home-v2-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
}

.icy-home-v2-copy {
  min-width: 0;
}

.icy-home-v2-copy .icy-interior-lead {
  margin-top: clamp(1.4rem, 2.6svh, 2.2rem);
}

.icy-home-v2-stacked > span,
.icy-home-v2-stacked > em {
  display: block;
}

.icy-home-v2-stacked {
  max-width: 11.5ch;
}

.icy-home-v2-art {
  position: relative;
  min-width: 0;
}

.icy-home-v2-art-image {
  width: 100%;
  object-fit: contain;
}

/* Opportunity */
.icy-home-v2-opportunity-visual {
  display: grid;
  min-width: 0;
  align-self: stretch;
  grid-template-rows: minmax(0, 1fr) auto;
}

.icy-home-v2-art-opportunity {
  display: grid;
  min-height: 0;
  margin-right: calc(-1 * var(--icy-home-v2-edge));
  place-items: start center;
}

.icy-home-v2-art-opportunity img {
  width: auto;
  max-width: min(100%, 760px);
  height: auto;
  max-height: calc(100svh - var(--icy-header-h) - 72px);
  object-position: center top;
}

.icy-home-v2-impact {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(.8rem, 2vw, 2rem);
  align-items: center;
  min-width: 0;
  min-height: 72px;
  padding: 1rem clamp(1rem, 2.2vw, 2rem);
  background: var(--icy-home-v2-acid);
  color: #000;
  font-family: 'Cy Grotesk', Arial, sans-serif;
  text-transform: uppercase;
}

.icy-home-v2-impact span,
.icy-home-v2-impact small {
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .06em;
}

.icy-home-v2-impact strong {
  min-width: 0;
  font-size: clamp(.9rem, 1.1vw, 1.15rem);
  line-height: 1.1;
}

/* Product */
.icy-home-v2-art-product {
  align-self: stretch;
  display: grid;
  min-height: 0;
  margin-left: calc(-1 * var(--icy-home-v2-edge));
  place-items: end start;
}

.icy-home-v2-art-product img {
  width: auto;
  max-width: min(100%, 720px);
  height: auto;
  max-height: calc(100svh - var(--icy-header-h));
  object-fit: contain;
  object-position: center bottom;
}

.icy-home-v2-product .icy-interior-display {
  width: 100%;
  max-width: 8.8ch;
  font-size: clamp(3rem, min(4.55vw, 8.8svh), 6.2rem);
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.icy-home-v2-feature-list {
  margin-top: clamp(1.4rem, 3svh, 2.5rem);
  border-top: 1px solid rgba(255,255,255,.24);
}

.icy-home-v2-feature-list > div {
  display: grid;
  grid-template-columns: 2.5rem minmax(8rem, .55fr) minmax(0, 1fr);
  gap: .8rem;
  align-items: baseline;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.24);
  font-family: 'Cy Grotesk', Arial, sans-serif;
}

.icy-home-v2-feature-list span {
  color: var(--icy-home-v2-acid);
  font-size: .7rem;
  font-weight: 700;
}

.icy-home-v2-feature-list strong {
  font-size: .86rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.icy-home-v2-feature-list p {
  margin-bottom: 0;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  line-height: 1.25;
}

/* Results */
.icy-home-v2-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(1.5rem, 3.2svh, 3rem);
}

.icy-home-v2-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.icy-home-v2-case-card {
  display: grid;
  grid-template-columns: minmax(180px, .78fr) minmax(0, 1.22fr);
  min-width: 0;
  min-height: clamp(260px, 34svh, 400px);
  border: 1px solid rgba(0,0,0,.24);
  background: #fff;
  color: #000;
}

.icy-home-v2-case-card figure {
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: #d8d8d3;
}

.icy-home-v2-case-card figure > img,
.icy-home-v2-case-card figure > .icy-home-asset-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icy-home-v2-case-card > div {
  display: flex;
  min-width: 0;
  padding: clamp(1.2rem, 2.5vw, 2.5rem);
  flex-direction: column;
  justify-content: center;
}

.icy-home-v2-case-card > div > span {
  color: #6e6e69;
  font-family: 'Cy Grotesk', Arial, sans-serif;
  font-size: .68rem;
  font-weight: 550;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.icy-home-v2-case-card h3 {
  margin-bottom: 1rem;
  color: #000;
  font-family: 'Cy Grotesk', Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2.25rem);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.04em;
}

.icy-home-v2-case-card a {
  align-self: flex-start;
  border-bottom: 2px solid var(--icy-home-v2-acid);
  color: #000;
  font-family: 'Cy Grotesk', Arial, sans-serif;
  font-size: .78rem;
  font-weight: 620;
  text-decoration: none;
  text-transform: uppercase;
}

.icy-home-v2-results-action {
  justify-content: flex-end;
}

/* Calculator */
.icy-home-v2-calculator .icy-interior-display {
  max-width: 10.5ch;
}

.icy-home-v2-calculator-visual {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  align-items: center;
}

.icy-home-v2-calculator-visual figure {
  position: absolute;
  inset: 0 calc(-1 * var(--icy-home-v2-edge)) 0 0;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.icy-home-v2-calculator-visual figure img {
  width: auto;
  max-width: min(112%, 820px);
  height: auto;
  max-height: calc(100svh - var(--icy-header-h));
  object-fit: contain;
  object-position: center bottom;
}

.icy-home-v2-calculator-card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-width: 100%;
  margin-left: auto;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,.35);
  background: #000;
  color: #fff;
  box-shadow: 12px 12px 0 rgba(255,255,255,.9);
  font-family: 'Cy Grotesk', Arial, sans-serif;
}

.icy-home-v2-calc-head,
.icy-home-v2-calc-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: .9rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.icy-home-v2-calc-head > *,
.icy-home-v2-calc-row > * {
  min-width: 0;
}

.icy-home-v2-calc-head {
  color: var(--icy-home-v2-acid);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.icy-home-v2-calc-row span {
  color: rgba(255,255,255,.64);
  font-size: .76rem;
  font-weight: 600;
}

.icy-home-v2-calc-row strong {
  color: #fff;
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  white-space: nowrap;
}

.icy-home-v2-calc-result {
  padding: 1rem 1.25rem;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.icy-home-v2-calculator-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: .9rem 1.25rem;
  background: var(--icy-home-v2-acid);
  color: #000;
  font-size: .8rem;
  font-weight: 750;
  text-decoration: none;
}

body.icy-home-v2-page .icy-home-v2-calculator-card > a,
body.icy-home-v2-page .icy-home-v2-calculator-card > a:visited,
body.icy-home-v2-page .icy-home-v2-calculator-card > a:hover,
body.icy-home-v2-page .icy-home-v2-calculator-card > a:focus-visible {
  border-color: var(--icy-home-v2-acid) !important;
  background: var(--icy-home-v2-acid) !important;
  color: #000 !important;
}

/* Tools */
.icy-home-v2-tools .icy-interior-display {
  max-width: 12ch;
}

.icy-home-v2-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.75rem, 1.5vw, 1.5rem);
}

.icy-home-v2-tool-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.1rem;
  min-width: 0;
  min-height: clamp(250px, 32svh, 370px);
  padding: clamp(1.25rem, 2.4vw, 2.25rem);
  border: 1px solid rgba(0,0,0,.25);
  background: #000;
  color: #fff;
  box-shadow: 7px 7px 0 #000;
  font-family: 'Cy Grotesk', Arial, sans-serif;
  text-decoration: none;
}

.icy-home-v2-tool-card.is-acid {
  border-color: #000;
  background: var(--icy-home-v2-acid);
  color: #000;
}

.icy-home-v2-tool-number {
  color: var(--icy-home-v2-acid);
  font-size: .7rem;
  font-weight: 700;
}

.icy-home-v2-tool-card.is-acid .icy-home-v2-tool-number {
  color: #000;
}

.icy-home-v2-tool-card > div {
  align-self: center;
  min-width: 0;
}

.icy-home-v2-tool-card strong {
  display: block;
  color: #fff;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.icy-home-v2-tool-card p {
  margin: .55rem 0 1.1rem;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  line-height: 1.35;
}

.icy-home-v2-tool-card.is-acid p {
  color: rgba(0,0,0,.68);
}

.icy-home-v2-tool-card:not(.is-acid),
.icy-home-v2-tool-card:not(.is-acid) strong,
.icy-home-v2-tool-card:not(.is-acid) u,
.icy-home-v2-tool-card:not(.is-acid) b {
  color: #fff !important;
}

.icy-home-v2-tool-card.is-acid,
.icy-home-v2-tool-card.is-acid strong,
.icy-home-v2-tool-card.is-acid u,
.icy-home-v2-tool-card.is-acid b {
  color: #000 !important;
}

.icy-home-v2-tool-card u {
  color: inherit;
  font-size: .72rem;
  font-weight: 700;
  text-underline-offset: .22rem;
  text-transform: uppercase;
}

.icy-home-v2-tool-card > b {
  font-size: 1rem;
}

/* LAB */
.icy-home-v2-art-lab {
  display: grid;
  min-height: 0;
  margin-left: calc(-1 * var(--icy-home-v2-edge));
  place-items: start center;
}

.icy-home-v2-art-lab img {
  width: auto;
  max-width: min(100%, 740px);
  height: auto;
  max-height: calc(100svh - var(--icy-header-h));
  object-fit: contain;
  object-position: center top;
}

.icy-home-v2-capabilities {
  max-width: 46ch;
  margin: 1.6rem 0 0;
  color: rgba(255,255,255,.84);
  font-family: 'Cy Grotesk', Arial, sans-serif;
  font-size: clamp(.7rem, .85vw, .9rem);
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: .04em;
}

/* Final conversion */
.icy-home-v2-pilot {
  min-height: calc(100svh - var(--icy-header-h));
}

.icy-home-v2-pilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: end;
}

.icy-home-v2-pilot .icy-interior-display {
  max-width: 11.5ch;
}

.icy-home-v2-pilot-copy > strong {
  display: block;
  margin-top: 1.5rem;
  color: #000;
  font-family: 'Cy Grotesk', Arial, sans-serif;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
}

.icy-home-v2-btn-dark {
  border-color: #000;
  background: #000;
  color: #fff;
}

/* The final pilot section is acid-green, where inherited link color is black.
   Keep the black conversion CTA readable in its normal and visited states. */
.icy-home-v2-pilot .icy-home-v2-btn-dark,
.icy-home-v2-pilot .icy-home-v2-btn-dark:visited {
  color: #fff !important;
}

/* Placeholders keep the same footprint as their final media. */
.icy-home-v2-page .icy-home-asset-placeholder {
  display: grid;
  width: 100%;
  min-height: 260px;
  padding: 2rem;
  place-content: center;
  border: 1px dashed currentColor;
  text-align: center;
}

.icy-home-v2-page .icy-home-asset-placeholder > * {
  display: block;
}

@media (min-width: 1025px) {
  body.icy-home-v2-page .icy-home-v2-main > .icy-interior-section:not(.icy-home-v2-hero) {
    min-height: calc(100svh - var(--icy-header-h));
  }

  .icy-home-v2-hero-layout {
    padding-bottom: 0;
  }

  .icy-home-v2-opportunity,
  .icy-home-v2-product,
  .icy-home-v2-calculator,
  .icy-home-v2-lab {
    display: grid;
    align-items: stretch;
    padding-block: 0;
  }

  .icy-home-v2-opportunity > .icy-interior-shell,
  .icy-home-v2-product > .icy-interior-shell,
  .icy-home-v2-calculator > .icy-interior-shell,
  .icy-home-v2-lab > .icy-interior-shell {
    min-height: calc(100svh - var(--icy-header-h));
    align-items: stretch;
  }

  .icy-home-v2-opportunity > .icy-home-v2-split {
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
    gap: clamp(2rem, 5vw, 6rem);
  }

  .icy-home-v2-opportunity .icy-home-v2-copy,
  .icy-home-v2-product .icy-home-v2-copy,
  .icy-home-v2-calculator .icy-home-v2-copy,
  .icy-home-v2-lab .icy-home-v2-copy {
    align-self: center;
  }

  .icy-home-v2-results,
  .icy-home-v2-tools,
  .icy-home-v2-pilot {
    display: grid;
    align-items: center;
  }

  .icy-home-v2-results .icy-home-v2-case-card {
    min-height: clamp(230px, 31svh, 350px);
  }

  .icy-home-v2-tools-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1025px) and (max-height: 760px) {
  .icy-home-v2-page .icy-interior-section:not(.icy-home-v2-hero) {
    padding-block: clamp(1.25rem, 2.8svh, 2rem);
  }

  .icy-home-v2-opportunity,
  .icy-home-v2-product,
  .icy-home-v2-calculator,
  .icy-home-v2-lab {
    padding-block: 0 !important;
  }

  .icy-home-v2-product .icy-interior-display {
    font-size: clamp(2.85rem, min(4.2vw, 7.8svh), 5.5rem);
  }

  .icy-home-v2-copy .icy-interior-lead,
  .icy-home-v2-feature-list,
  .icy-home-v2-page .icy-interior-actions {
    margin-top: clamp(.85rem, 1.8svh, 1.25rem);
  }

  .icy-home-v2-feature-list > div {
    padding-block: .65rem;
  }

  .icy-home-v2-section-head {
    margin-bottom: clamp(1rem, 2svh, 1.5rem);
  }

  .icy-home-v2-results .icy-home-v2-case-card,
  .icy-home-v2-tool-card {
    min-height: clamp(210px, 29svh, 300px);
  }
}

@media (max-width: 1100px) {
  .icy-home-v2-hero-layout,
  .icy-home-v2-opportunity > .icy-home-v2-split {
    grid-template-columns: minmax(0, .95fr) minmax(300px, 1.05fr);
    gap: 2rem;
  }

  .icy-home-v2-split {
    gap: clamp(2rem, 4vw, 4rem);
  }

  .icy-home-v2-case-card {
    grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr);
  }

}

@media (max-width: 1024px) {
  html.icy-home-v2-scroll,
  html.icy-home-v2-scroll.icy-interior-scroll {
    scroll-behavior: auto;
  }

  .icy-home-v2-hero {
    min-height: calc(100svh - var(--icy-header-h));
  }

  .icy-home-v2-main > .icy-interior-section:not(.icy-home-v2-hero) {
    min-height: 0;
  }

  .icy-home-v2-hero-layout {
    /* A full-bleed media child must never enlarge the single mobile grid track.
       minmax(0,1fr) keeps copy/actions constrained to the same centered shell
       used by Bloom Hopper and the remaining Home sections. */
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 1.5rem;
    min-height: 0;
    padding-top: clamp(2.5rem, 8vw, 4rem);
    padding-bottom: 0;
  }

  .icy-home-v2-hero-copy {
    width: 100%;
    max-width: none;
  }

  .icy-home-v2-hero .icy-interior-actions {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
  }

  .icy-home-v2-hero-title {
    max-width: 10.5ch;
  }

  .icy-home-v2-hero-media {
    /* Symmetric full bleed from the centered shell. Using 100vw here made the
       grid track itself become viewport-wide, which widened the Hero CTAs and
       shifted the artwork one gutter to the right. */
    width: calc(100% + (2 * var(--icy-home-v2-bleed-gutter)));
    min-width: 0;
    min-height: 0;
    margin-inline: calc(-1 * var(--icy-home-v2-bleed-gutter));
    transform: none;
    place-items: end center;
    justify-self: stretch;
    overflow: hidden;
  }

  .icy-home-v2-hero-media > img,
  .icy-home-v2-hero-media .icy-home-v2-cover {
    width: var(--icy-home-v2-hero-art-w);
    max-width: none;
    max-height: none;
    margin-inline: auto;
    justify-self: center;
    object-position: center bottom;
  }

  .icy-home-v2-split,
  .icy-home-v2-section-head,
  .icy-home-v2-pilot-layout,
  .icy-home-v2-opportunity > .icy-home-v2-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .icy-home-v2-opportunity > .icy-home-v2-split {
    grid-template-rows: auto auto;
    gap: 0;
  }

  .icy-home-v2-section-head {
    align-items: start;
  }

  .icy-home-v2-product .icy-home-v2-copy {
    order: 1;
  }

  .icy-home-v2-product .icy-home-v2-art-product {
    order: 2;
  }

  .icy-home-v2-lab .icy-home-v2-art-lab {
    order: 1;
  }

  .icy-home-v2-lab .icy-home-v2-copy {
    order: 2;
  }

  .icy-home-v2-opportunity {
    padding-top: 0;
    padding-bottom: 0;
  }

  .icy-home-v2-opportunity .icy-home-v2-copy {
    order: 2;
    margin-block: clamp(2.5rem, 8vw, 4rem);
  }

  .icy-home-v2-opportunity .icy-home-v2-opportunity-visual {
    order: 1;
    display: grid;
    grid-template-rows: auto auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    transform: none;
    align-self: auto;
    justify-self: stretch;
    overflow: hidden;
  }

  .icy-home-v2-opportunity .icy-home-v2-art-opportunity {
    width: 100%;
    margin: 0;
    place-items: start center;
    justify-items: center;
  }

  .icy-home-v2-opportunity .icy-home-v2-art-opportunity img {
    width: var(--icy-home-v2-opportunity-art-w);
    max-width: none;
    max-height: none;
    margin-inline: auto;
    object-position: center top;
    transform: translateX(.65%);
  }

  .icy-home-v2-opportunity .icy-home-v2-impact {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  .icy-home-v2-art-product,
  .icy-home-v2-art-lab {
    width: calc(100% + (2 * var(--icy-home-v2-bleed-gutter)));
    min-height: 0;
    margin-right: 0;
    margin-left: calc(-1 * var(--icy-home-v2-bleed-gutter));
  }

  .icy-home-v2-art-product img,
  .icy-home-v2-art-lab img {
    width: min(100%, 720px);
    max-width: none;
    max-height: none;
  }

  .icy-home-v2-case-grid {
    grid-template-columns: 1fr;
  }

  .icy-home-v2-case-card {
    min-height: 260px;
  }

  .icy-home-v2-calculator-visual {
    min-height: clamp(380px, 52svh, 500px);
  }

  .icy-home-v2-tools-grid {
    grid-template-columns: 1fr;
  }

  .icy-home-v2-tool-card {
    min-height: 170px;
  }

  .icy-home-v2-pilot {
    min-height: 0;
  }
}

@media (max-width: 599px) {
  body.icy-home-v2-page {
    --icy-home-v2-bleed-gutter: 1rem;
    --icy-home-v2-stacked-art-w: min(94vw, 610px);
    /* Transition continuity: at the actual seam, hero-dryhop-alt.png exposes
       ~92.3% of its canvas while problem-dryhop.png exposes ~77.3%. Keeping
       the opportunity art at 106vw and reducing the hero to 88.8vw makes the
       visible tank diameter match at the proof bar. */
    --icy-home-v2-hero-art-w: min(88.8vw, 576px);
    --icy-home-v2-opportunity-art-w: min(106vw, 688px);
  }

  .icy-home-v2-page .icy-interior-shell {
    width: calc(100% - 2rem);
  }

  .icy-home-v2-page .icy-interior-section {
    padding-block: clamp(3.4rem, 12vw, 5rem);
  }

  .icy-home-v2-page .icy-home-v2-hero {
    padding-block: 0;
  }

  .icy-home-v2-hero-layout {
    gap: .5rem;
    padding-top: clamp(2.2rem, 8vw, 3.5rem);
  }

  .icy-home-v2-page .icy-interior-actions,
  .icy-home-v2-page .icy-interior-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-inline: 0;
    box-sizing: border-box;
  }

  /* Match Bloom Hopper mobile CTA geometry: buttons fill the centered content
     shell instead of compensating the campaign art with a one-sided overhang. */
  .icy-home-v2-hero .icy-interior-actions {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .icy-home-v2-hero .icy-interior-btn {
    width: 100%;
    max-width: none;
  }

  .icy-home-v2-page .icy-interior-btn {
    gap: .75rem;
    min-height: 58px;
    padding-inline: clamp(.9rem, 4vw, 1.25rem);
    font-size: clamp(.72rem, 3.25vw, .88rem);
  }

  body.icy-home-v2-page .icy-home-v2-hero-title {
    max-width: 10ch;
    font-size: clamp(3.4rem, 13.2vw, 5.5rem) !important;
    line-height: .84 !important;
  }

  .icy-home-v2-hero .icy-interior-lead {
    margin-top: 1rem;
  }

  .icy-home-v2-hero-media {
    min-height: 0;
    place-items: end center;
  }

  .icy-home-v2-proofbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .icy-home-v2-proofbar span {
    min-height: 34px;
    padding: .45rem .5rem;
    font-size: .65rem;
  }

  .icy-home-v2-proofbar span:nth-child(2) {
    border-right: 0;
  }

  .icy-home-v2-proofbar span:nth-child(-n+2) {
    border-bottom: 1px solid rgba(0,0,0,.24);
  }

  .icy-home-v2-stacked {
    max-width: none;
  }

  .icy-home-v2-product .icy-interior-display {
    max-width: 8.35ch;
  }

  .icy-home-v2-art-product,
  .icy-home-v2-art-lab {
    margin-left: calc(-1 * var(--icy-home-v2-bleed-gutter));
  }

  .icy-home-v2-page .icy-home-v2-opportunity {
    padding-block: 0 !important;
  }

  .icy-home-v2-impact {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    min-height: 68px;
  }

  .icy-home-v2-impact small {
    grid-column: 2;
  }

  .icy-home-v2-art-product img {
    width: min(100%, 620px);
    max-width: none;
    max-height: none;
  }

  .icy-home-v2-product {
    padding-bottom: 0 !important;
  }

  .icy-home-v2-feature-list > div {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .icy-home-v2-feature-list p {
    grid-column: 2;
  }

  .icy-home-v2-section-head {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .icy-home-v2-case-card {
    grid-template-columns: minmax(120px, .8fr) minmax(0, 1.2fr);
    min-height: 230px;
  }

  .icy-home-v2-case-card > div {
    padding: 1rem;
  }

  .icy-home-v2-case-card h3 {
    font-size: clamp(1.15rem, 5.4vw, 1.55rem);
  }

  .icy-home-v2-calculator-visual {
    width: calc(100% + (2 * var(--icy-home-v2-bleed-gutter)));
    min-height: clamp(370px, 55svh, 485px);
    margin-left: calc(-1 * var(--icy-home-v2-bleed-gutter));
  }

  .icy-home-v2-calculator {
    padding-block: 2.4rem 1.35rem !important;
  }

  .icy-home-v2-calculator .icy-home-v2-split {
    gap: 1rem;
  }

  .icy-home-v2-calculator .icy-home-v2-copy .icy-interior-lead {
    margin-top: 1rem;
  }

  .icy-home-v2-calculator-visual figure {
    inset: -.75rem 0 0;
    justify-items: start;
  }

  .icy-home-v2-calculator-visual figure img {
    width: min(100vw, 650px);
    max-width: none;
    max-height: none;
    transform: none;
  }

  .icy-home-v2-calculator-card {
    width: calc(100% - 2rem);
    margin-inline: auto;
    box-shadow: 7px 7px 0 rgba(255,255,255,.9);
  }

  .icy-home-v2-calc-head,
  .icy-home-v2-calc-row {
    min-height: 58px;
    padding: .75rem .9rem;
  }

  .icy-home-v2-calc-result,
  .icy-home-v2-calculator-card > a {
    padding-inline: .9rem;
  }

  .icy-home-v2-tool-card {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: .65rem;
    min-height: 155px;
    padding: 1rem;
    box-shadow: 5px 5px 0 #000;
  }

  .icy-home-v2-art-lab {
    min-height: 0;
    padding-top: clamp(1.5rem, 6vw, 2.5rem);
    place-items: start center;
  }

  .icy-home-v2-art-lab img {
    width: min(82vw, 520px);
    max-width: none;
    max-height: none;
  }

  .icy-home-v2-lab {
    padding-top: 0 !important;
  }

  .icy-home-v2-pilot-layout {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  body.icy-home-v2-page .icy-home-v2-hero-title {
    font-size: clamp(3.05rem, 14vw, 4.2rem) !important;
  }
}

@media (max-width: 420px) {
  .icy-home-v2-case-card {
    grid-template-columns: 1fr;
  }

  .icy-home-v2-case-card figure {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.icy-home-v2-scroll,
  html.icy-home-v2-scroll.icy-interior-scroll {
    scroll-behavior: auto;
  }
}
