:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.1);
  --accent: #0f766e;
  --accent-2: #22c55e;
  --accent-warm: #f59e0b;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.06), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 45%, #ffffff 100%);
}

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

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 32px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.topbar span {
  position: relative;
}

.topbar span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.18);
  transform: translateY(-50%);
}

.site-header,
.hero,
.strip,
.section,
.site-footer {
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark,
.brand-logo {
  position: relative;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(15, 118, 110, 0.22);
}

.brand-logo {
  object-fit: contain;
  padding: 6px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--accent), #7ee8b0);
  color: #ffffff;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 28px 0 20px;
  align-items: center;
  justify-items: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.4), transparent 30%),
    linear-gradient(180deg, #98eef0 0%, #a6f0ee 60%, #dfffff 100%);
  overflow: hidden;
  min-height: clamp(680px, 92vh, 840px);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -2px;
  height: 220px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  clip-path: ellipse(72% 55% at 50% 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 12px 16px 0;
  max-width: 760px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.center {
  text-align: center;
}

.brand-owner-line {
  margin: 10px 0 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section h2 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.94;
  max-width: 11ch;
  margin: 0 auto;
}

.lead,
.section-heading p,
.mission-copy p,
.feature p,
.product-card p,
.mission-stat span,
.site-footer p {
  color: var(--muted);
}

.lead {
  margin: 20px 0 0;
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
}

.hero-actions-center {
  justify-content: center;
}

.button {
  min-width: 164px;
  padding: 14px 20px;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #77e4d1);
  color: #ffffff;
}

.button-secondary {
  border-color: var(--line);
  background: #ffffff;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

.trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-shelf {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 36px 16px 6px;
}

.hero-shelf-band {
  position: absolute;
  inset: auto 0 52px;
  height: 170px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px 999px 0 0;
  filter: blur(0.2px);
}

.hero-shelf-products {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  align-items: end;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-shelf-item {
  display: grid;
  justify-items: center;
  align-items: end;
  min-height: 250px;
  border-radius: 24px;
  padding: 22px 12px 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-shelf-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.hero-shelf-item img {
  width: min(100%, 188px);
  height: clamp(170px, 24vw, 220px);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 24px rgba(15, 23, 42, 0.16));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.hero-shelf-item:hover img {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 26px 30px rgba(15, 23, 42, 0.2));
}

.hero-shelf-caption {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.hero-shelf-item-pink { background: #ffffff; }
.hero-shelf-item-violet { background: #ffffff; }
.hero-shelf-item-red { background: #ffffff; }
.hero-shelf-item-blue { background: #ffffff; }
.hero-shelf-item-green { background: #ffffff; }

.point,
.card,
.mission-panel,
.contact-card,
.strip {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.point {
  padding: 18px;
  border-radius: 20px;
}

.point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.point span {
  color: var(--muted);
  line-height: 1.6;
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-card {
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95)),
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 50%);
  box-shadow: var(--shadow);
}

.hero-card-main h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 10px 0 18px;
}

.hero-card-main p,
.mini-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-card-main ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.hero-product-stack {
  display: grid;
  gap: 12px;
}

.hero-product {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #f8fafc;
  padding: 16px 18px;
}

.hero-product-primary {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(255, 255, 255, 0.98));
}

.hero-product-label {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-product-sub {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card-accent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-left: 4px solid var(--accent-warm);
}

.hero-card-accent p {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1;
}

.accent-badge {
  display: grid;
  gap: 8px;
}

.accent-badge span {
  display: inline-flex;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-card-quick {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.hero-card-quick strong {
  display: block;
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: -70px;
  padding: 24px 22px;
  border-radius: 28px;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.strip span,
.contact-label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.strip strong {
  font-size: 1.02rem;
}

.section {
  padding: 90px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.mission-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 14px;
}

.section-heading p:last-child,
.mission-copy p:last-child {
  line-height: 1.8;
}

.grid {
  display: grid;
  gap: 18px;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.other-products {
  margin-top: 20px;
}

.product-grid-large .product-card-feature {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  align-content: start;
}

.phenyle-explorer {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1.18fr);
  gap: 22px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff7e8, #eefafc);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.phenyle-explorer-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.phenyle-explorer-copy h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.phenyle-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.phenyle-selector input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.phenyle-selector label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.phenyle-selector label:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.phenyle-selector input:checked + label {
  background: linear-gradient(135deg, var(--accent), #77e4d1);
  color: #ffffff;
  border-color: transparent;
}

.phenyle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.phenyle-specs span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.phenyle-stage {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 251, 241, 0.95));
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.phenyle-panel {
  position: absolute;
  inset: 0;
  display: none;
  grid-template-columns: minmax(240px, 0.95fr) minmax(260px, 1.05fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.phenyle-panel.is-active {
  display: grid;
}

.phenyle-panel img {
  width: 100%;
  max-width: 340px;
  height: 380px;
  object-fit: contain;
  justify-self: center;
  filter: drop-shadow(0 22px 28px rgba(15, 23, 42, 0.16));
}

.phenyle-panel-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.phenyle-panel-copy h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.phenyle-panel-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 34ch;
}

.phenyle-panel-neem {
  background: linear-gradient(135deg, rgba(213, 255, 235, 0.9), rgba(255, 255, 255, 0.92));
}

.phenyle-panel-lavender {
  background: linear-gradient(135deg, rgba(236, 222, 255, 0.9), rgba(255, 255, 255, 0.92));
}

.phenyle-panel-rose {
  background: linear-gradient(135deg, rgba(255, 223, 227, 0.9), rgba(255, 255, 255, 0.92));
}

.phenyle-panel-lemon {
  background: linear-gradient(135deg, rgba(255, 245, 208, 0.95), rgba(255, 255, 255, 0.92));
}

.phenyle-panel-sandalwood {
  background: linear-gradient(135deg, rgba(248, 232, 208, 0.95), rgba(255, 255, 255, 0.92));
}

.phenyle-panel-lemongrass {
  background: linear-gradient(135deg, rgba(226, 249, 213, 0.95), rgba(255, 255, 255, 0.92));
}

.product-catalog {
  padding: 22px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-catalog-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.product-tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.product-tab.is-active {
  background: linear-gradient(135deg, var(--accent), #77e4d1);
  color: #ffffff;
  border-color: transparent;
}

.product-catalog-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: 22px;
  align-items: center;
  min-width: 0;
}

.product-catalog-visual {
  min-height: 420px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  place-items: center;
  padding: 24px;
  min-width: 0;
}

.product-catalog-visual img {
  width: 100%;
  max-width: 340px;
  height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(15, 23, 42, 0.16));
}

.product-catalog-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.product-catalog-copy h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  overflow-wrap: anywhere;
}

.product-catalog-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.product-variant-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.variant-tab {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  border-radius: 999px;
  padding: 9px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.variant-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.variant-tab.is-active {
  background: #0f766e;
  color: #ffffff;
  border-color: transparent;
}

.product-variant-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.story-grid,
.sustain-points,
.launch-grid,
.safety-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.story-grid {
  display: grid;
  gap: 18px;
}

.story-card,
.launch-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.story-card {
  padding: 22px;
}

.story-card h3,
.launch-card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 10px;
}

.sustainability-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.sustain-copy {
  position: relative;
  padding-right: 12px;
  animation: section-rise 0.8s ease both;
}

.sustain-copy::before {
  content: "";
  position: absolute;
  inset: -18px -20px -18px -12px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15, 118, 110, 0.06), transparent 30%);
  z-index: -1;
  filter: blur(2px);
}

.story-section {
  padding-top: 100px;
}

.story-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  border-radius: 32px;
  overflow: hidden;
  background: #f4f0ff;
  box-shadow: var(--shadow);
}

.story-visual {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(180deg, #e9f6ff 0%, #d8f3ff 58%, #c5ebff 100%);
  overflow: hidden;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 260px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent);
}

.story-visual::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -1px;
  height: 170px;
  background: #ffffff;
  clip-path: ellipse(72% 56% at 50% 100%);
}

.story-visual-hand {
  position: absolute;
  left: 20%;
  bottom: 120px;
  width: 150px;
  height: 180px;
  border-radius: 70px 70px 24px 24px;
  background: linear-gradient(180deg, #c88a63, #9a5d3b);
  transform: rotate(-16deg);
  box-shadow: 90px 15px 0 -22px rgba(255, 255, 255, 0.5);
}

.story-visual-bottle {
  position: absolute;
  right: 18%;
  bottom: 98px;
  width: 78px;
  height: 180px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff, #ebf7fb);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.story-visual-bottle::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 18px;
  border-radius: 10px 10px 6px 6px;
  background: #0f172a;
}

.story-visual-bottle::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.82), rgba(59, 130, 246, 0.65));
}

.story-copy {
  padding: 56px 42px;
  background: #d8f7ff;
  display: grid;
  align-content: center;
}

.story-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.98;
  margin: 0 0 16px;
}

.story-copy p {
  max-width: 40ch;
  line-height: 1.8;
}

.story-copy .button {
  width: fit-content;
  margin-top: 16px;
}

.testimonial-marquee {
  position: relative;
  margin-top: 26px;
  padding: 22px;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.testimonial-marquee.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(15, 118, 110, 0.08), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.08), transparent 30%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 48%, transparent 100%);
  opacity: 0.65;
  pointer-events: none;
  animation: testimonial-glow 12s ease-in-out infinite alternate;
}

.testimonial-marquee-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.testimonial-marquee-head h3 {
  margin: 6px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.testimonial-marquee-head p {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.testimonial-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 4px 0 2px;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-track-shell {
  width: 100%;
  transition: opacity 0.7s ease;
  will-change: transform;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overflow-y: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.testimonial-track-shell::-webkit-scrollbar {
  display: none;
}

.testimonial-track.is-paused {
  animation-play-state: paused;
}

.testimonial-card {
  position: relative;
  width: calc((100% - 48px) / 4);
  min-width: 0;
  flex: 0 0 calc((100% - 48px) / 4);
  padding: 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 24px rgba(15, 23, 42, 0.06);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  scroll-snap-align: start;
}

.testimonial-marquee.is-visible .testimonial-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testimonial-marquee.is-visible .testimonial-card:nth-child(1) {
  transition-delay: 0.02s;
}

.testimonial-marquee.is-visible .testimonial-card:nth-child(2) {
  transition-delay: 0.08s;
}

.testimonial-marquee.is-visible .testimonial-card:nth-child(3) {
  transition-delay: 0.14s;
}

.testimonial-marquee.is-visible .testimonial-card:nth-child(4) {
  transition-delay: 0.2s;
}

.testimonial-marquee.is-visible .testimonial-card:nth-child(5) {
  transition-delay: 0.26s;
}

.testimonial-marquee.is-visible .testimonial-card:nth-child(6) {
  transition-delay: 0.32s;
}

.testimonial-marquee.is-visible .testimonial-card:nth-child(7) {
  transition-delay: 0.38s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 20px 32px rgba(15, 23, 42, 0.09);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 35%);
  opacity: 0.72;
  pointer-events: none;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f766e, #22c55e);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex: 0 0 auto;
  animation: avatar-pulse 6s ease-in-out infinite;
}

.testimonial-meta div {
  min-width: 0;
  flex: 1;
}

.testimonial-meta strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-meta small {
  color: var(--muted);
}

.testimonial-stars {
  color: transparent;
  letter-spacing: 0.08em;
  font-size: 0;
  white-space: nowrap;
  position: relative;
}

.testimonial-stars::before {
  content: "5.0/5";
  color: var(--accent-warm);
  font-size: 0.82rem;
  font-weight: 800;
}

.testimonial-card p {
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes testimonial-glow {
  0% {
    transform: translateX(-2%) translateY(-1%);
  }
  100% {
    transform: translateX(2%) translateY(1%);
  }
}

@keyframes avatar-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(15, 118, 110, 0.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    transition: none;
  }

  .testimonial-track-shell {
    transform: none;
    mask-image: none;
  }

  .testimonial-marquee::before,
  .testimonial-avatar {
    animation: none;
  }
}

.sustain-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 50%);
  box-shadow: var(--shadow);
  padding: 22px;
  overflow: hidden;
  animation: section-rise 0.95s ease 0.12s both;
}

.sustain-visual {
  position: relative;
  min-height: 150px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.06), rgba(34, 197, 94, 0.08));
  border: 1px solid rgba(15, 118, 110, 0.08);
  margin-bottom: 16px;
  overflow: hidden;
}

.sustain-graphic {
  position: absolute;
  inset: 22px 20px 20px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: end;
}

.sustain-graphic div {
  border-radius: 16px 16px 20px 20px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.9), rgba(34, 197, 94, 0.65));
  box-shadow: 0 14px 20px rgba(15, 23, 42, 0.12);
  animation: sustain-pulse 5.5s ease-in-out infinite;
}

.sustain-graphic div:nth-child(1) {
  height: 62%;
}

.sustain-graphic div:nth-child(2) {
  height: 84%;
  animation-delay: 0.45s;
}

.sustain-graphic div:nth-child(3) {
  height: 70%;
  animation-delay: 0.9s;
}

.sustain-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  filter: blur(2px);
  animation: sustain-float 7s ease-in-out infinite;
}

.sustain-orb-one {
  width: 92px;
  height: 92px;
  left: -8px;
  top: -10px;
}

.sustain-orb-two {
  width: 120px;
  height: 120px;
  right: 18px;
  top: 20px;
  animation-delay: 1s;
}

.sustain-orb-three {
  width: 72px;
  height: 72px;
  right: 70px;
  bottom: -18px;
  animation-delay: 1.8s;
}

.sustain-points {
  display: grid;
  gap: 14px;
}

.sustain-point {
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sustain-point:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 14px 24px rgba(15, 23, 42, 0.08);
}

.sustain-point strong,
.launch-tag,
.card-footer span {
  display: block;
}

.sustain-point strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.sustain-point span,
.launch-card p {
  color: var(--muted);
  line-height: 1.7;
}

.mission-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mission-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.12);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
}

@keyframes sustain-pulse {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.05);
  }
}

@keyframes sustain-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.launch-grid {
  display: grid;
  gap: 18px;
}

.launch-card {
  padding: 22px;
  background: #fbf4e7;
}

.launch-tag {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.safety-grid {
  display: grid;
  gap: 18px;
}

.feature {
  background: #ffffff;
  border: 1px solid var(--line);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 0;
}

.card-footer a {
  color: var(--accent);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.feature {
  border-radius: 24px;
}

.product-card,
.feature {
  padding: 22px;
}

.product-card {
  background: #ffffff;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.product-card-feature {
  background: #ffffff;
}

.feature-image-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.feature-image-row .product-image {
  margin-bottom: 0;
}

.product-card-feature .product-image-wide {
  height: 240px;
}

.product-visual {
  position: relative;
  height: 208px;
  border-radius: 24px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: auto 12% 16px;
  height: 38px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  filter: blur(14px);
}

.product-visual-phenyle::after,
.product-visual-floor::after,
.product-visual-carwash::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 40%, rgba(255, 255, 255, 0.45) 40% 44%, transparent 44% 100%);
  opacity: 0.9;
}

.product-visual-phenyle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
}

.product-visual-floor,
.product-visual-carwash {
  display: grid;
  place-items: center;
  padding: 18px;
}

.product-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
}

.product-visual-grid span {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pack {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(226, 232, 240, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.pack::before {
  content: "";
  position: absolute;
  inset: 10px 10px auto;
  height: 42%;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.86), rgba(52, 211, 153, 0.62));
  opacity: 0.96;
}

.pack::after {
  content: "";
  position: absolute;
  inset: auto 16px 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
}

.pack-tall {
  width: 120px;
  height: 160px;
}

.pack-small {
  width: 96px;
  height: 138px;
  transform: translateY(10px);
}

.pack-wide {
  width: min(220px, 100%);
  height: 140px;
}

.pack-top {
  position: absolute;
  top: -18px;
  width: 34px;
  height: 18px;
  border-radius: 10px 10px 6px 6px;
  background: linear-gradient(180deg, #0f172a, #334155);
}

.pack-label {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pack-sub {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
}

.shine {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.68), transparent 70%);
  filter: blur(2px);
}

.product-visual-carwash .pack::before {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.86), rgba(251, 191, 36, 0.65));
}

.product-visual-floor .pack::before {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.84), rgba(59, 130, 246, 0.62));
}

.pack-soap::before {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.88), rgba(251, 113, 133, 0.62));
}

.pack-liquid::before {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.88), rgba(34, 211, 238, 0.62));
}

.pack-bulk::before {
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.88), rgba(132, 204, 22, 0.62));
}

.grid-tile-1,
.grid-tile-2,
.grid-tile-3,
.grid-tile-4 {
  min-height: 70px;
}

.grid-tile-1 {
  background: linear-gradient(180deg, #d1fae5, #ffffff);
}

.grid-tile-2 {
  background: linear-gradient(180deg, #dbeafe, #ffffff);
}

.grid-tile-3 {
  background: linear-gradient(180deg, #fef3c7, #ffffff);
}

.grid-tile-4 {
  background: linear-gradient(180deg, #e2e8f0, #ffffff);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  padding: 18px 16px 8px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 55%),
    linear-gradient(180deg, #fffdf7 0%, #f8efd9 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 16px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover .product-image {
  transform: translateY(-4px) scale(1.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 22px 36px rgba(15, 23, 42, 0.12);
}

.story-card-image {
  width: 100%;
  height: clamp(200px, 26vw, 240px);
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  border-radius: 18px;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 60%),
    #ffffff;
  box-shadow:
    inset 0 0 0 1px var(--line),
    0 16px 28px rgba(15, 23, 42, 0.06);
}

.product-card h3,
.feature h3,
.mission-stat strong,
.contact-link,
.contact-card p {
  margin: 0;
}

.product-card h3,
.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  min-width: 0;
}

.chip {
  border-radius: 999px;
  padding: 9px 12px;
  background: #f8fafc;
  color: var(--text);
  border: 1px solid var(--line);
  font-size: 0.86rem;
}

.mission-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.mission-copy {
  padding-right: 12px;
}

.mission-panel {
  border-radius: 28px;
  padding: 22px;
  display: grid;
  gap: 16px;
}

.mission-stat {
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.mission-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
}

.contact-section {
  padding-bottom: 40px;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 18% 8% 6% 8%;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(15, 118, 110, 0.06), transparent 28%);
  z-index: -1;
  filter: blur(2px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  border-radius: 28px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 42%);
  position: relative;
  overflow: hidden;
  animation: section-rise 0.85s ease both;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.14), transparent 70%);
  pointer-events: none;
}

.contact-highlight {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.95), rgba(17, 94, 89, 0.96));
  color: #ffffff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: section-rise 0.95s ease 0.08s both;
}

.contact-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(34, 197, 94, 0.2), transparent 32%);
  pointer-events: none;
}

.contact-highlight-head,
.contact-highlight-grid {
  position: relative;
  z-index: 1;
}

.contact-highlight-head h3 {
  margin: 10px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.1;
}

.contact-highlight-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.contact-highlight-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-highlight-grid div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.contact-highlight-grid strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
}

.contact-highlight-grid span {
  color: rgba(255, 255, 255, 0.8);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-actions {
  grid-column: 1 / -1;
  padding-top: 10px;
}

.contact-action-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(34, 197, 94, 0.12)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 28px rgba(15, 23, 42, 0.06);
}

.contact-action-copy strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.contact-action-copy span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.contact-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-partner-button {
  min-width: 194px;
}

.contact-call-button {
  min-width: 140px;
  border-color: rgba(15, 118, 110, 0.16);
  color: var(--accent);
}

.contact-link {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: #0f172a;
}

.blessing-popup {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
  max-width: min(360px, calc(100vw - 24px));
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(236, 253, 245, 0.98));
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(12px);
  transform: translate3d(0, 24px, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.blessing-popup.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.blessing-popup-copy strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}

.blessing-popup-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.blessing-popup-close {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subpage-hero {
  padding: 40px 0 18px;
  text-align: center;
}

.subpage-hero h1 {
  margin: 10px auto 0;
  max-width: 12ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.subpage-hero .lead {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.subpage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 28px;
}

.info-card,
.partner-card,
.presence-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.info-card,
.partner-card {
  padding: 24px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.partner-card h3,
.presence-card h3 {
  margin: 12px 0 8px;
  font-family: "Space Grotesk", sans-serif;
}

.partner-card p,
.presence-card p {
  color: var(--muted);
  line-height: 1.7;
}

.partner-icon,
.presence-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(34, 197, 94, 0.14));
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.partner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  justify-content: center;
}

.partner-steps {
  display: grid;
  gap: 14px;
}

.partner-step {
  padding: 18px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.partner-step strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
}

.partner-step span,
.partner-card li,
.presence-card li {
  color: var(--muted);
  line-height: 1.7;
}

.partner-card ul,
.presence-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.presence-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 24px;
}

.presence-map-card {
  padding: 18px;
}

.odisha-map {
  position: relative;
  min-height: clamp(480px, 70vw, 620px);
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 26%),
    radial-gradient(circle at bottom right, rgba(15, 118, 110, 0.08), transparent 30%),
    linear-gradient(180deg, #f6fffb 0%, #eafaf4 100%);
  border: 1px solid rgba(15, 118, 110, 0.1);
}

.odisha-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-title {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
}

.map-title h3 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  max-width: 11ch;
  line-height: 0.98;
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 118, 110, 0.12);
  color: var(--text);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  font-weight: 700;
}

.map-pin::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.12);
}

.pin-bhubaneswar {
  left: 58%;
  top: 36%;
}

.pin-cuttack {
  left: 49%;
  top: 32%;
}

.pin-puri {
  left: 53%;
  top: 58%;
}

.pin-sambalpur {
  left: 20%;
  top: 25%;
}

.pin-rourkela {
  left: 10%;
  top: 20%;
}

.pin-berhampur {
  left: 58%;
  top: 77%;
}

.presence-side {
  display: grid;
  gap: 16px;
}

.presence-card {
  padding: 22px;
  display: grid;
  gap: 12px;
}

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

.presence-list-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.presence-list-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Space Grotesk", sans-serif;
}

.presence-list-item span {
  color: var(--muted);
}

.presence-map-card {
  padding: 14px;
}

.partner-cta-box {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 20px;
}

.partner-quote {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(34, 197, 94, 0.12));
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.partner-quote h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
}

.partner-quote p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 64px 34px 34px;
  border-radius: 34px 34px 0 0;
  margin-top: 40px;
  background: linear-gradient(180deg, #14b8a6 0%, #0f766e 100%);
  color: #ffffff;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -30% -12% auto auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
  pointer-events: none;
  animation: footer-orb 10s ease-in-out infinite alternate;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: auto auto -40px -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent 70%);
  pointer-events: none;
}

.site-footer p {
  margin: 0;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a {
  color: #ffffff;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  color: #ffffff;
}

.site-footer .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand p,
.footer-cta p {
  margin-bottom: 10px;
}

.footer-social {
  margin-top: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-weight: 700;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-brand-logo {
  width: 86px;
  height: 86px;
  display: block;
  object-fit: contain;
  margin-bottom: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.footer-cta .button {
  margin-top: 8px;
  background: #ffffff;
  color: #0f766e;
  border-color: #ffffff;
}

.footer-cta .button:hover {
  background: #f0fdf4;
  color: #115e59;
  border-color: #f0fdf4;
}

@keyframes footer-orb {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-18px, 12px, 0) scale(1.04);
  }
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1faa54);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

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

@media (max-width: 1024px) {
  .sustainability-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 14px;
  }

  .hero h1 {
    max-width: 12ch;
  }

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

  .product-grid,
  .phenyle-explorer,
  .product-catalog-body,
  .story-grid,
  .contact-layout,
  .sustain-points,
  .launch-grid,
  .safety-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-split {
    grid-template-columns: 1fr;
  }

  .partner-grid,
  .presence-layout,
  .partner-cta-box,
  .subpage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    width: calc((100% - 16px) / 2);
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }

  .topbar {
    justify-content: flex-start;
  }

  .topbar span:not(:last-child)::after {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 12px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    overflow: hidden;
  }

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

  .site-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(15, 118, 110, 0.04);
  }

  .site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .hero-points,
  .strip,
  .hero-shelf-products,
  .product-grid,
  .phenyle-explorer,
  .product-catalog-body,
  .why-grid,
  .contact-layout,
  .contact-card,
  .story-grid,
  .sustain-points,
  .launch-grid,
  .safety-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 10px;
  }

  .hero-shelf-item img {
    height: 180px;
  }

  .product-image,
  .story-card-image,
  .product-card-feature .product-image-wide {
    height: 220px;
  }

  .product-catalog {
    padding: 18px;
  }

  .product-catalog-body {
    grid-template-columns: 1fr;
  }

  .product-catalog-visual {
    min-height: 280px;
  }

  .product-catalog-visual img {
    height: 260px;
    max-width: min(100%, 260px);
  }

  .product-catalog-copy {
    width: 100%;
  }

  .product-catalog-copy h3 {
    font-size: clamp(1.55rem, 5vw, 2.2rem);
  }

  .phenyle-explorer {
    grid-template-columns: 1fr;
  }

  .phenyle-stage {
    min-height: 400px;
  }

  .phenyle-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .phenyle-panel-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .testimonial-marquee-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-grid,
  .presence-layout,
  .partner-cta-box,
  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .contact-action-panel {
    grid-template-columns: 1fr;
  }

  .contact-action-buttons {
    justify-content: flex-start;
  }

  .presence-layout {
    gap: 16px;
  }

  .presence-map-card,
  .presence-card {
    padding: 16px;
  }

  .odisha-map {
    min-height: 480px;
  }

  .map-title h3 {
    max-width: 12ch;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 10px;
  }

  .site-header {
    gap: 12px;
  }

  .site-header,
  .hero-card,
  .point,
  .strip,
  .product-card,
  .feature,
  .mission-panel,
  .contact-card,
  .contact-highlight,
  .blessing-popup {
    border-radius: 20px;
  }

  .site-header {
    padding: 14px;
  }

  .brand {
    min-width: 0;
    width: calc(100% - 60px);
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-shelf {
    padding: 24px 8px 6px;
  }

  .hero-shelf-item {
    min-height: 210px;
  }

  .hero-shelf-item img {
    height: 170px;
  }

  .button {
    width: 100%;
  }

  .product-catalog {
    padding: 14px;
  }

  .testimonial-track-shell {
    mask-image: none;
  }

  .testimonial-card {
    width: 100%;
    flex-basis: 100%;
  }

  .product-catalog-body {
    gap: 16px;
  }

  .product-catalog-visual {
    min-height: 220px;
    padding: 16px;
    border-radius: 20px;
  }

  .product-catalog-visual img {
    height: 200px;
    max-width: min(100%, 200px);
  }

  .product-catalog-copy {
    gap: 12px;
  }

  .product-catalog-copy h3 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
    line-height: 1.08;
  }

  .product-catalog-copy p {
    line-height: 1.65;
    font-size: 0.96rem;
  }

  .product-catalog-tabs,
  .product-variant-tabs,
  .chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .product-catalog-tabs::-webkit-scrollbar,
  .product-variant-tabs::-webkit-scrollbar,
  .chip-row::-webkit-scrollbar {
    display: none;
  }

  .product-tab,
  .variant-tab,
  .chip {
    white-space: nowrap;
    flex: 0 0 auto;
  }

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

  .contact-action-panel {
    padding: 16px;
  }

  .contact-highlight {
    padding: 18px;
  }

  .card-footer {
    grid-template-columns: 1fr;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-copy {
    padding: 36px 22px;
  }

  .story-visual {
    min-height: 420px;
  }

  .subpage-hero {
    padding-top: 28px;
  }

  .subpage-hero h1 {
    max-width: 10ch;
  }

  .odisha-map {
    min-height: 400px;
  }

  .map-title {
    top: 16px;
    left: 16px;
  }

  .map-title h3 {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
    max-width: 10ch;
  }

  .map-pin {
    transform: scale(0.92);
    transform-origin: left top;
  }

  .footer-brand-logo {
    width: 72px;
    height: 72px;
  }

  .product-catalog-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .map-pin {
    font-size: 0.8rem;
    padding: 7px 9px;
  }

  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }

  .blessing-popup {
    right: 10px;
    left: 10px;
    bottom: 78px;
    min-width: 0;
    max-width: none;
    justify-content: space-between;
  }
}

@media (max-width: 390px) {
  .page-shell {
    width: min(100% - 14px, 1200px);
  }

  .topbar {
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .lead {
    font-size: 0.98rem;
  }

  .testimonial-card {
    width: 280px;
  }

  .button,
  .header-cta {
    min-width: 0;
  }

  .site-header,
  .product-catalog,
  .contact-card,
  .contact-highlight,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-link {
    font-size: 1.3rem;
  }

  .product-catalog {
    padding: 12px;
  }

  .product-catalog-visual {
    min-height: 200px;
    padding: 12px;
  }

  .product-catalog-visual img {
    height: 176px;
    max-width: min(100%, 176px);
  }

  .product-catalog-copy h3 {
    font-size: 1.28rem;
  }

  .card-footer {
    gap: 8px;
    font-size: 0.84rem;
  }

  .contact-highlight-head h3,
  .section-heading h2 {
    word-break: break-word;
  }

  .footer-badges {
    gap: 8px;
  }

  .footer-badges span {
    width: 100%;
    text-align: center;
  }

  .map-pin {
    font-size: 0.72rem;
    padding: 6px 8px;
  }

  .presence-map-card,
  .presence-card {
    padding: 14px;
  }

  .presence-list-item {
    padding: 14px 16px;
  }
}
