:root {
  --black: #050605;
  --deep: #091412;
  --purple: #1b1028;
  --purple-2: #5a2f6f;
  --cream: #fff2cf;
  --coral: #ff6d55;
  --leaf: #7ecf7a;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --img-paper: url("https://ecoally-1417094974.cos.na-siliconvalley.myqcloud.com/%E4%BA%A7%E5%93%81%E5%B0%81%E9%9D%A2%E5%9B%BE_webp/Paper%20Bags/Custom%20Bakery%20Bags.webp");
  --img-paper-alt: url("https://ecoally-1417094974.cos.na-siliconvalley.myqcloud.com/%E4%BA%A7%E5%93%81%E5%B0%81%E9%9D%A2%E5%9B%BE_webp/Paper%20Bags/%20Custom%20Recycled%20Paper%20Bags.webp");
  --img-wrap: url("https://ecoally-1417094974.cos.na-siliconvalley.myqcloud.com/%E4%BA%A7%E5%93%81%E5%B0%81%E9%9D%A2%E5%9B%BE_webp/Food%20Wrapping%20Paper/Custom%20Burger%20Wrapping%20Paper.webp");
  --img-wrap-alt: url("https://ecoally-1417094974.cos.na-siliconvalley.myqcloud.com/%E4%BA%A7%E5%93%81%E5%B0%81%E9%9D%A2%E5%9B%BE_webp/Food%20Wrapping%20Paper/Custom%20Food%20Wrapping%20Paper.webp");
  --img-label: url("https://ecoally-1417094974.cos.na-siliconvalley.myqcloud.com/%E4%BA%A7%E5%93%81%E5%B0%81%E9%9D%A2%E5%9B%BE_webp/Stickers%20%26%20Labels/Custom%20Tamper-proof%20Sticker%20Rolls.webp");
  --img-box: url("https://ecoally-1417094974.cos.na-siliconvalley.myqcloud.com/%E4%BA%A7%E5%93%81%E5%B0%81%E9%9D%A2%E5%9B%BE_webp/boxes/Custom%20Burger%20Boxes.webp");
  --img-cup: url("https://ecoally-1417094974.cos.na-siliconvalley.myqcloud.com/%E4%BA%A7%E5%93%81%E5%B0%81%E9%9D%A2%E5%9B%BE_webp/Cups%20%26%20Sleeves/Custom%20Recyclable%20Paper%20Cups%20with%20Lids.webp");
  --img-cafe: url("https://ecoally-1417094974.cos.na-siliconvalley.myqcloud.com/%E4%BA%A7%E5%93%81%E5%B0%81%E9%9D%A2%E5%9B%BE_webp/Paper%20Bags/Custom%20Euro%20Tote%20Paper%20Bags.webp");
  --img-bakery: url("https://ecoally-1417094974.cos.na-siliconvalley.myqcloud.com/%E4%BA%A7%E5%93%81%E5%B0%81%E9%9D%A2%E5%9B%BE_webp/Food%20Wrapping%20Paper/Custom%20Greaseproof%20paper.webp");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Outfit", Arial, sans-serif;
}

body.is-loading {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

.quote-form input:focus-visible,
.quote-form select:focus-visible,
.quote-form textarea:focus-visible {
  outline-offset: 0;
  border-color: var(--coral);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 44%, rgba(255, 109, 85, 0.16), transparent 46%), var(--black);
}

/* Faint engineering grid behind the die-line, masked off towards the edges. */
.page-loader::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 46px);
  mask-image: radial-gradient(circle at 50% 46%, #000 0 42%, transparent 74%);
  -webkit-mask-image: radial-gradient(circle at 50% 46%, #000 0 42%, transparent 74%);
}

.page-loader > div,
.page-loader > svg {
  grid-area: 1 / 1;
}

/* .pl-meta pins its children to the corners, so it must escape the centring. */
.page-loader > div:not(.pl-meta) {
  position: relative;
  z-index: 3;
  text-align: center;
}

.page-loader span {
  display: block;
  font-size: clamp(3rem, 12vw, 12rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.page-loader strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--coral);
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* The progress bar reads as a dimension line: hairline rule with end ticks. */
.page-loader i {
  position: absolute;
  left: 50%;
  bottom: 54px;
  z-index: 4;
  width: min(420px, calc(100vw - 48px));
  height: 2px;
  background: var(--coral);
  transform: translateX(-50%) scaleX(0);
  transform-origin: left center;
}

.page-loader i::before,
.page-loader i::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 2px;
  height: 10px;
  background: var(--coral);
}

.page-loader i::before {
  left: 0;
}

.page-loader i::after {
  right: 0;
}

.pl-dieline {
  z-index: 2;
  width: min(780px, 90vw);
  height: auto;
  overflow: visible;
}

/* No non-scaling-stroke on the cut path: it would measure the dash pattern in
   screen pixels while getTotalLength() reports user units, so the draw-on
   would never line up. */
.dl-cut path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.dl-crease path {
  fill: none;
  stroke: var(--cream);
  stroke-width: 1.1;
  stroke-dasharray: 7 6;
  opacity: 0.5;
  vector-effect: non-scaling-stroke;
}

.dl-dim path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.dl-dim text {
  fill: rgba(255, 255, 255, 0.5);
  font-family: "Space Grotesk", monospace;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.dl-marks path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.dl-head {
  opacity: 0;
}

.dl-head path,
.dl-head circle {
  fill: none;
  stroke: var(--coral);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pl-meta {
  position: absolute;
  z-index: 4;
  inset: clamp(20px, 4vw, 46px);
  pointer-events: none;
  font-family: "Space Grotesk", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-align: left;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.pl-meta > * {
  position: absolute;
}

.pl-meta em {
  font-style: normal;
}

.m-tl {
  top: 0;
  left: 0;
}

.m-tr {
  top: 0;
  right: 0;
  text-align: right;
}

.m-bl {
  bottom: 0;
  left: 0;
}

.m-br {
  bottom: 0;
  right: 0;
  text-align: right;
}

.m-name {
  display: block;
  margin-top: 8px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(15px, 2.4vw, 20px);
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--cream);
}

.m-spec {
  display: block;
  margin-top: 6px;
  max-width: 34ch;
  line-height: 1.7;
}

.m-pct {
  font-size: clamp(20px, 3.4vw, 30px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--coral);
  font-variant-numeric: tabular-nums;
}

.m-leaf {
  color: var(--leaf);
  font-weight: inherit;
}

@media (max-width: 640px) {
  .pl-meta {
    font-size: 9px;
  }

  .m-spec {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader::before {
    opacity: 0.5;
  }
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 clamp(22px, 4vw, 70px);
  pointer-events: none;
}

.leaf-logo,
.topbar-quote {
  pointer-events: auto;
}

.leaf-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 8px 0 8px;
  border: 1px solid rgba(9, 20, 18, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.leaf-logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.leaf-logo img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

.leaf-word {
  color: #091412;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.leaf-home {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(9, 20, 18, 0.08);
  color: rgba(9, 20, 18, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.leaf-home::before {
  margin-right: 5px;
  content: "\2190";
  font-size: 0.9rem;
}

.topbar-quote {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  background: #ffd0df;
  color: #251327;
  font-weight: 900;
}

body.scrolled .topbar-quote {
  display: inline-flex;
}

.hero-section {
  position: relative;
  z-index: 3;
  height: 200svh;
  min-height: 100svh;
  background: transparent;
}

.hero-sticky {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  padding: 92px clamp(18px, 5vw, 84px) 54px;
  isolation: isolate;
}

.hero-bg,
.hero-vignette,
.hero-blackout {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  z-index: 0;
  background: #ffffff;
  filter: none;
  transform: none;
}

.hero-vignette {
  z-index: 1;
  display: none;
}

.hero-blackout {
  z-index: 8;
  background: var(--white);
  opacity: 0;
}

.hero-poster {
  position: absolute;
  top: clamp(84px, 9vh, 112px);
  left: 50%;
  z-index: 3;
  --poster-wash: 0;
  width: min(76vw, 1400px, calc((100svh - 260px) * 16 / 9));
  aspect-ratio: 16 / 9;
  border: 12px solid #1e0833;
  background: #15051f;
  container-type: inline-size;
  filter: brightness(1) saturate(1);
  transform: translateX(-50%);
  box-shadow: 0 36px 80px rgba(21, 38, 27, 0.2);
  isolation: isolate;
}

.hero-poster::after {
  position: absolute;
  inset: -12px;
  z-index: 10;
  content: "";
  background: #ffffff;
  opacity: var(--poster-wash);
  pointer-events: none;
}

.mosaic-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.7fr 1.45fr 1.1fr;
  grid-template-rows: 1.05fr 0.78fr 1.05fr;
  gap: 8px;
  padding: 8px;
}

.mosaic-cell {
  overflow: hidden;
  background-color: #1c3131;
  background-position: center;
  background-size: cover;
}

.mosaic-cell::after {
  display: none;
}

.cell-a {
  background-image: var(--img-paper);
}

.cell-b {
  grid-row: span 2;
  background-image: var(--img-bakery);
}

.cell-c {
  background-image: var(--img-wrap);
}

.cell-d {
  grid-row: span 2;
  background-image: var(--img-label);
}

.cell-e {
  grid-row: span 2;
  background-image: var(--img-cup);
}

.cell-f {
  background-image: var(--img-box);
}

.cell-g {
  background-image: var(--img-cafe);
}

.cell-h {
  background-image: var(--img-wrap-alt);
}

.cell-i {
  background-image: var(--img-paper-alt);
}

.hero-lockup {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.76);
}

.hero-lockup span {
  align-self: end;
  margin-bottom: -10px;
  padding: 8px 15px;
  border-radius: 6px;
  background: var(--coral);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-lockup h1 {
  margin: 0;
  font-size: clamp(4.2rem, 16cqw, 10.4rem);
  line-height: 0.77;
  font-weight: 900;
}

.hero-lockup p {
  align-self: start;
  margin: 4px 0 0;
  color: var(--cream);
  font-size: clamp(0.86rem, 1.5vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero-meta {
  text-transform: uppercase;
}

.hero-meta p {
  margin: 0 0 10px;
  color: rgba(9, 20, 18, 0.58);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero-meta strong {
  display: block;
  color: #091412;
  font-size: clamp(1.55rem, 2.15vw, 2.55rem);
  line-height: 0.96;
}

.hero-release-row {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(58px, 7.5vh, 96px);
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  width: min(76vw, 1400px, calc((100svh - 260px) * 16 / 9));
  min-width: min(calc(100vw - 72px), 920px);
  transform: translateX(-50%);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 30px;
  border-radius: 999px;
  background: #ffd0df;
  color: #251327;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 18px 46px rgba(255, 140, 171, 0.22);
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: end;
  column-gap: clamp(18px, 2.5vw, 38px);
  row-gap: 10px;
  color: #091412;
  font-size: clamp(1.05rem, 1.45vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.scroll-hint {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(9, 20, 18, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.scroll-hint i {
  width: 10px;
  height: 26px;
  border: 1px solid rgba(9, 20, 18, 0.32);
  border-radius: 999px;
}

.sequence-section {
  position: relative;
  z-index: 1;
  height: 360svh;
  margin-top: -200svh;
  background: var(--black);
}

.sequence-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.sequence-pin::after {
  display: none;
}

.sequence-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  background: var(--black);
  pointer-events: none;
}

#frameCanvas,
#frameCanvas2 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  background: #111914;
}

.sequence2-section {
  position: relative;
  z-index: 5;
  height: 160svh;
  background: var(--black);
}

.sequence2-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.sequence2-copy {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 7vw, 120px);
  bottom: clamp(36px, 8vh, 82px);
  max-width: 640px;
  color: #ffffff;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.sequence2-copy p {
  margin: 0 0 14px;
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sequence2-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 6.4rem);
  line-height: 0.94;
  font-weight: 900;
}

.sequence-copy {
  position: absolute;
  z-index: 2;
  display: none;
  left: clamp(22px, 7vw, 120px);
  bottom: clamp(36px, 8vh, 82px);
  max-width: 620px;
}

.sequence-copy p,
.section-heading p,
.quote-copy p,
.program-card-copy p {
  margin: 0 0 14px;
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sequence-copy h2,
.section-heading h2,
.quote-copy h2,
.program-card-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 7.6rem);
  line-height: 0.9;
  font-weight: 900;
}

.rise-card-section {
  position: relative;
  z-index: 4;
  min-height: 150svh;
  margin-top: -105svh;
  overflow: hidden;
  display: grid;
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
  padding: 68svh clamp(18px, 6vw, 128px) 6svh;
  background: transparent;
  isolation: isolate;
}

.card-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
}

.card-backdrop::after {
  display: none;
}

.card-blackout {
  display: none;
}

.program-card {
  position: relative;
  z-index: 3;
  display: grid;
  justify-self: center;
  width: min(86vw, 1500px);
  min-height: clamp(610px, 78svh, 820px);
  grid-template-columns: minmax(420px, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(30px, 4.5vw, 72px);
  align-items: center;
  overflow: hidden;
  border-radius: clamp(24px, 2vw, 36px);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 113, 76, 0.34), transparent 28%),
    radial-gradient(circle at 86% 86%, rgba(229, 171, 84, 0.24), transparent 34%),
    linear-gradient(135deg, #071b17 0%, #1b1330 42%, #305044 100%);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.34);
}

.program-card-media {
  display: grid;
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin-left: clamp(30px, 5vw, 86px);
  overflow: hidden;
  border: 7px solid rgba(255, 241, 219, 0.92);
  border-radius: clamp(18px, 1.5vw, 26px);
  background: #f6f1e8;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.program-card-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.program-card-copy {
  align-self: center;
  padding: clamp(44px, 5vw, 76px) clamp(38px, 6vw, 92px) clamp(44px, 5vw, 76px) 0;
}

.program-card-copy p {
  margin-bottom: 20px;
  color: #ff7658;
  letter-spacing: 0.18em;
}

.program-card-copy h2 {
  max-width: 640px;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: clamp(2.6rem, 4vw, 5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.program-card-copy span {
  display: block;
  max-width: 650px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.58;
}

.program-card-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.program-card-trust b {
  padding: 10px 13px;
  border: 1px solid rgba(255, 215, 166, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffe2bd;
  font-size: clamp(0.76rem, 0.9vw, 0.92rem);
  line-height: 1;
  white-space: nowrap;
}

.program-card-copy a,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 30px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  background: #ffd7a6;
  color: #281527;
  font-weight: 900;
  cursor: pointer;
}

.factory-footprint {
  position: relative;
  z-index: 3;
  justify-self: center;
  width: min(86vw, 1500px);
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(7, 27, 23, 0.1);
  border-radius: clamp(22px, 1.8vw, 32px);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 113, 76, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 246, 0.86));
  box-shadow: 0 28px 80px rgba(7, 27, 23, 0.12);
}

.factory-footprint-copy {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(24px, 5vw, 96px);
  align-items: center;
  margin-bottom: clamp(20px, 2.4vw, 30px);
}

.factory-footprint-copy p {
  margin: 0;
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.factory-footprint-copy h2 {
  margin: 8px 0 0;
  max-width: 760px;
  color: var(--deep);
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: clamp(2.25rem, 3.15vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.factory-footprint-copy span {
  display: block;
  max-width: 620px;
  color: rgba(9, 20, 18, 0.68);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.58;
}

.factory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.factory-card {
  min-height: 190px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(255, 215, 166, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 113, 76, 0.2), transparent 30%),
    linear-gradient(145deg, #071b17, #1b1330 58%, #304a3f);
  color: #ffffff;
}

.factory-card small {
  color: #ffd7a6;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.factory-card h3 {
  margin: 42px 0 10px;
  color: #ffffff;
  font-size: clamp(1.28rem, 1.7vw, 1.9rem);
  line-height: 1;
}

.factory-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.content-band,
.quote-section {
  position: relative;
  z-index: 5;
  padding: clamp(76px, 10vw, 142px) clamp(18px, 5vw, 84px);
}

.feature-grid,
.service-grid,
.scenario-grid,
.case-grid {
  display: grid;
  gap: 14px;
}

.feature-grid article,
.service-grid article,
.case-grid article,
.faq-list details {
  border: 1px solid rgba(27, 16, 40, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(27, 16, 40, 0.08);
}

.content-band {
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 109, 85, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #fbf5ff 54%, #ffffff);
  color: var(--deep);
}

.content-band:nth-of-type(odd) {
  background:
    radial-gradient(circle at 12% 16%, rgba(90, 47, 111, 0.12), transparent 30%),
    #ffffff;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-heading span,
.quote-copy span {
  display: block;
  max-width: 760px;
  color: rgba(9, 20, 18, 0.68);
  font-size: 1.12rem;
  line-height: 1.58;
}

.section-heading h2,
.quote-copy h2 {
  color: var(--deep);
}

.feature-grid article,
.service-grid article,
.case-grid article {
  padding: 24px;
}

.case-grid small {
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-grid h3,
.service-grid h3,
.scenario-grid h3,
.case-grid h3 {
  margin: 14px 0 12px;
  color: var(--deep);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.feature-grid p,
.service-grid p,
.scenario-grid p,
.case-grid p,
.faq-list p {
  color: rgba(9, 20, 18, 0.68);
  line-height: 1.58;
}

.service-grid strong {
  display: inline-flex;
  margin-top: 10px;
  color: #5a2f6f;
  font-weight: 900;
}

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

.feature-grid b {
  color: rgba(255, 109, 85, 0.8);
  font-size: 0.95rem;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid rgba(27, 16, 40, 0.14);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 26px 90px rgba(27, 16, 40, 0.1);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
  border-bottom: 1px solid rgba(27, 16, 40, 0.1);
}

.comparison-table > div:first-child {
  background: #1b1028;
  color: #ffffff;
}

.comparison-table > div:last-child {
  border-bottom: 0;
}

.comparison-table span,
.comparison-table b {
  padding: 18px;
  line-height: 1.42;
}

.comparison-table span:first-child {
  font-weight: 900;
  color: var(--deep);
}

.text-link,
.scenario-grid a,
.footer-note a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--coral);
  font-weight: 900;
}

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

.scenario-grid article {
  overflow: hidden;
  border-radius: 14px;
  background: #1b1028;
  color: #ffffff;
  box-shadow: 0 30px 90px rgba(27, 16, 40, 0.16);
}

.scenario-grid img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.scenario-grid h3,
.scenario-grid p,
.scenario-grid a {
  margin-right: 24px;
  margin-left: 24px;
}

.scenario-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.scenario-grid a {
  margin-bottom: 24px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: center;
}

.process-layout img {
  width: 100%;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(27, 16, 40, 0.1);
}

.process-layout ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-layout li {
  padding: 18px 20px;
  border-radius: 12px;
  background: #1b1028;
  color: #ffffff;
}

.process-layout strong,
.process-layout span {
  display: block;
}

.process-layout span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-card {
  overflow: hidden;
  border: 1px solid rgba(27, 16, 40, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(27, 16, 40, 0.08);
}

.team-photo {
  aspect-ratio: 4 / 3;
  background: #ffffff;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.team-body {
  padding: 22px 24px 28px;
}

.team-body h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  color: var(--deep);
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  line-height: 1.05;
}

.team-tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 109, 85, 0.14);
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.team-body b {
  display: block;
  margin-bottom: 12px;
  color: #5a2f6f;
  font-weight: 900;
}

.team-body p {
  margin: 0;
  color: rgba(9, 20, 18, 0.68);
  line-height: 1.58;
}

.team-card-cat {
  border-color: rgba(255, 109, 85, 0.3);
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 205, 120, 0.22), transparent 34%),
    #fffdf8;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1fr);
  gap: clamp(28px, 5vw, 86px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 109, 85, 0.2), transparent 28%),
    linear-gradient(180deg, #16091f, #050605);
}

.quote-copy h2,
.quote-copy span {
  color: #ffffff;
}

.quote-copy span {
  margin-top: clamp(22px, 3vw, 40px);
  font-size: clamp(1.12rem, 1.4vw, 1.35rem);
  font-weight: 700;
}

.quote-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 22px;
}

.quote-contact small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  font-weight: 700;
}

.quote-email {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 215, 166, 0.4);
  border-radius: 999px;
  background: rgba(255, 215, 166, 0.12);
  color: #ffd7a6;
  font-weight: 900;
  transition: background 0.2s ease, transform 0.2s ease;
}

.quote-email:hover {
  background: rgba(255, 215, 166, 0.22);
  transform: translateY(-1px);
}

.quote-form {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.form-progress {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.form-progress span {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-weight: 900;
}

.form-progress span.active {
  background: #ffd0df;
  color: #251327;
}

.form-step {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step.active {
  display: grid;
}

.form-step legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 15px 14px;
}

.quote-form select option {
  color: #091412;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.full,
.upload-note,
.form-actions,
.form-success {
  grid-column: 1 / -1;
}

.upload-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent input {
  width: auto;
  margin-top: 4px;
}

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

.form-submit,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  margin-top: 0;
  background: #ffd7a6;
  color: #281527;
}

.ghost-button {
  min-width: 120px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.form-success {
  margin-top: 14px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(126, 207, 122, 0.16);
  color: #ffffff;
}

.form-success strong,
.form-success span {
  display: block;
}

.form-success span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

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

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

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--deep);
  font-weight: 900;
}

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

.footer-note {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(9, 20, 18, 0.68);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .hero-poster {
    width: min(86vw, 980px);
  }

  .hero-release-row {
    width: min(86vw, 980px);
    min-width: 0;
    grid-template-columns: minmax(245px, 1fr) auto minmax(170px, 0.82fr);
    gap: clamp(20px, 3vw, 42px);
  }

  .hero-summary {
    column-gap: 18px;
    font-size: clamp(0.88rem, 1.65vw, 1.1rem);
  }

  .program-card,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-grid,
  .scenario-grid,
  .case-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .program-card {
    width: min(92vw, 900px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: clamp(26px, 4vw, 42px);
  }

  .program-card-media {
    width: min(100%, 560px);
    justify-self: center;
    margin-left: 0;
  }

  .program-card-copy {
    padding: 0;
  }

  .program-card-copy h2 {
    font-size: clamp(2.55rem, 7vw, 4.4rem);
  }

  .factory-footprint {
    width: min(92vw, 900px);
  }

  .factory-footprint-copy {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

@media (max-width: 680px) {
  .topbar {
    height: 70px;
    padding: 0 16px;
  }

  .topbar-quote {
    min-height: 44px;
    padding: 12px 16px;
  }

  .leaf-home {
    display: none;
  }

  .hero-section {
    height: 200svh;
  }

  .hero-sticky {
    padding: 78px 14px 112px;
  }

  .hero-poster {
    top: clamp(94px, 13vh, 118px);
    width: min(calc(100vw - 56px), 360px, calc((100svh - 310px) * 4 / 5));
    aspect-ratio: 4 / 5;
    border-width: 8px;
  }

  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 5px;
    padding: 5px;
  }

  .cell-a,
  .cell-b,
  .cell-c,
  .cell-d,
  .cell-e,
  .cell-f {
    grid-column: auto;
    grid-row: auto;
  }

  .cell-b {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .cell-d {
    grid-column: 1;
    grid-row: 3 / 5;
  }

  .cell-g,
  .cell-h,
  .cell-i {
    display: none;
  }

  .hero-lockup h1 {
    font-size: clamp(2.45rem, 16vw, 4.7rem);
  }

  .hero-lockup p {
    font-size: clamp(0.68rem, 3.2vw, 0.96rem);
  }

  .hero-release-row {
    bottom: 28px;
    width: calc(100vw - 48px);
    min-width: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 13px;
    text-align: center;
  }

  .hero-meta strong {
    font-size: clamp(1.35rem, 7vw, 2.1rem);
  }

  .hero-cta {
    min-height: 46px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero-summary {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    column-gap: 14px;
    row-gap: 0;
    width: 100%;
    font-size: clamp(0.76rem, 3vw, 0.92rem);
    letter-spacing: 0.06em;
    text-align: center;
  }

  .scroll-hint {
    display: none;
  }

  .sequence-copy {
    right: 18px;
  }

  .rise-card-section {
    padding: 24svh 18px 10svh;
  }

  .program-card {
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 22px;
    padding: 18px;
    gap: 24px;
  }

  .program-card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-width: 5px;
    border-radius: 18px;
  }

  .program-card-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
    line-height: 1;
  }

  .program-card-copy span {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .program-card-trust {
    gap: 8px;
  }

  .program-card-trust b {
    font-size: 0.72rem;
    padding: 9px 10px;
  }

  .factory-footprint {
    width: 100%;
    padding: 18px;
    border-radius: 22px;
  }

  .factory-footprint-copy h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .factory-footprint-copy span {
    font-size: 0.96rem;
    line-height: 1.52;
  }

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

  .factory-card {
    min-height: 150px;
  }

  .factory-card h3 {
    margin-top: 28px;
  }

  .topbar-quote {
    max-width: 64vw;
    font-size: 0.82rem;
  }

  .feature-grid,
  .service-grid,
  .scenario-grid,
  .case-grid,
  .team-grid,
  .form-step {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table > div {
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(27, 16, 40, 0.12);
    border-radius: 12px;
    background: #ffffff;
  }

  .comparison-table > div:first-child {
    display: none;
  }

  .comparison-table span,
  .comparison-table b {
    padding: 12px 16px;
  }

  .scenario-grid h3,
  .scenario-grid p,
  .scenario-grid a {
    margin-right: 18px;
    margin-left: 18px;
  }

  .quote-section {
    padding-top: 84px;
  }

  .form-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
