:root {
  --black: #111513;
  --ink: #18211d;
  --muted: #68716b;
  --green: #1e4b3a;
  --green-dark: #123128;
  --mint: #c7dfb9;
  --acid: #d9ef8b;
  --warm: #f2f3ed;
  --paper: #fbfbf7;
  --sand: #e9e6dc;
  --white: #ffffff;
  --line: rgba(24, 33, 29, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --page: min(1280px, calc(100vw - 64px));
  --radius-small: 14px;
  --radius-medium: 28px;
  --radius-large: 48px;
  --radius-pill: 999px;
  --font: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

button {
  color: inherit;
  font: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(32px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.topbar.is-scrolled {
  background: rgba(251, 251, 247, 0.94);
  box-shadow: 0 1px 0 rgba(24, 33, 29, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img,
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.brand span,
.footer-brand span {
  display: block;
  line-height: 1;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  font-size: 12px;
}

.desktop-nav a,
.text-action {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after,
.text-action::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.text-action:hover::after,
.text-action:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--black);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--black);
  background: var(--acid);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(400px, 0.88fr) minmax(560px, 1.12fr);
  padding-top: 86px;
  background: var(--warm);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px max(32px, calc((100vw - 1280px) / 2)) 68px;
  border-right: 0;
}

.eyebrow,
.section-label {
  margin-bottom: 32px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--black);
  font-size: clamp(64px, 6.7vw, 108px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 35px;
  color: #4f5953;
  font-size: 16px;
  line-height: 1.85;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--black);
  background: var(--acid);
}

.button-quiet {
  border-color: var(--line);
  background: transparent;
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--black);
  background: var(--white);
}

.button-light {
  color: var(--black);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--acid);
}

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

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: var(--white);
  color: var(--black);
  background: var(--white);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 34px;
  margin-top: 72px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero-product {
  position: relative;
  min-height: 814px;
  margin: 20px 20px 20px 0;
  overflow: hidden;
  border-radius: 44px 44px 44px 100px;
  background: var(--mint);
}

.hero-product::before {
  content: "";
  position: absolute;
  width: min(620px, 78%);
  aspect-ratio: 1;
  top: 46%;
  left: 52%;
  border: 1px solid rgba(24, 33, 29, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.08), 0 0 0 180px rgba(255, 255, 255, 0.05);
  transform: translate(-50%, -50%);
}

.product-caption {
  position: absolute;
  top: 30px;
  left: 32px;
  color: rgba(24, 33, 29, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-phone {
  position: absolute;
  top: 16%;
  right: 9%;
  z-index: 1;
  width: clamp(170px, 18vw, 260px);
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  border: 8px solid #151917;
  border-radius: 38px;
  background: #151917;
  box-shadow: 0 38px 70px rgba(19, 44, 34, 0.22);
  transform: rotate(4deg);
}

.hero-phone img,
.phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-sensor {
  position: absolute;
  bottom: 3%;
  left: 26%;
  z-index: 3;
  width: clamp(220px, 25vw, 355px);
  max-height: 86%;
  object-fit: contain;
  filter: drop-shadow(28px 42px 24px rgba(19, 44, 34, 0.22));
  transform: rotate(-4deg);
}

.measure-label {
  position: absolute;
  z-index: 4;
  min-width: 118px;
  padding: 13px 14px;
  border: 1px solid rgba(24, 33, 29, 0.13);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}

.measure-label small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 9px;
}

.measure-label strong {
  font-size: 21px;
  font-weight: 500;
}

.measure-label-soil {
  top: 44%;
  left: 5%;
}

.measure-label-temp {
  right: 4%;
  bottom: 17%;
}

.hero-product-name {
  position: absolute;
  right: 28px;
  bottom: 23px;
  z-index: 5;
  margin: 0;
  color: rgba(24, 33, 29, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.proof-strip {
  width: var(--page);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 28px auto 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-medium);
  color: var(--white);
  background: var(--black);
}

.proof-strip > div {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 30px 25px;
}

.proof-strip > div + div {
  border-left: 1px solid var(--line-light);
}

.proof-strip strong {
  margin-bottom: 8px;
  font-size: 23px;
  font-weight: 500;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.detector-section,
.app-section,
.garden-section {
  width: var(--page);
  margin-inline: auto;
}

.detector-section {
  padding: 118px 0 138px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 34px 90px;
  align-items: end;
  margin-bottom: 78px;
}

.section-intro .section-label {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.section-intro h2,
.app-heading h2,
.garden-copy h2,
.pod-copy h2,
.experience-section h2 {
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(56px, 6.4vw, 94px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.075em;
}

.section-summary {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.sensor-lab {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-radius: var(--radius-large);
  color: var(--white);
  background: var(--green-dark);
}

.sensor-lab::after {
  content: "SENSOR 01";
  position: absolute;
  right: 28px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.23);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.sensor-lab-product {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 630px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}

.sensor-lab-product img {
  position: relative;
  z-index: 2;
  width: 270px;
  max-height: 610px;
  object-fit: contain;
  filter: drop-shadow(24px 35px 20px rgba(0, 0, 0, 0.32));
}

.lab-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.lab-ring-one {
  width: 450px;
  height: 450px;
}

.lab-ring-two {
  width: 650px;
  height: 650px;
}

.sensor-point {
  position: absolute;
  z-index: 3;
  width: 220px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.sensor-point span {
  display: block;
  margin-bottom: 15px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 700;
}

.sensor-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 500;
}

.sensor-point small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1.65;
}

.sensor-point-one {
  top: 15%;
  left: 6%;
}

.sensor-point-two {
  top: 48%;
  left: 6%;
}

.sensor-point-three {
  bottom: 11%;
  left: 12%;
}

.sensor-point-four {
  top: 15%;
  right: 6%;
}

.sensor-point-five {
  top: 48%;
  right: 6%;
}

.sensor-point-six {
  right: 12%;
  bottom: 11%;
}

.product-explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 82px 0 0;
}

.product-explainer h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(39px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.065em;
}

.explainer-copy {
  max-width: 550px;
}

.explainer-copy > p {
  margin-bottom: 33px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.explainer-copy dl {
  margin-bottom: 0;
  border-top: 1px solid var(--line);
}

.explainer-copy dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.explainer-copy dt {
  color: var(--muted);
}

.explainer-copy dd {
  font-weight: 600;
}

.scene-section {
  position: relative;
  width: min(1500px, calc(100vw - 32px));
  min-height: 820px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius-large);
  color: var(--white);
}

.scene-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 25, 19, 0.75), rgba(11, 25, 19, 0.08) 72%),
    linear-gradient(0deg, rgba(11, 25, 19, 0.48), transparent 52%);
}

.scene-copy {
  position: absolute;
  bottom: 84px;
  left: max(32px, calc((100vw - 1280px) / 2));
  z-index: 2;
  max-width: 680px;
}

.scene-copy p {
  margin-bottom: 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.scene-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(58px, 6.8vw, 100px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.075em;
}

.scene-copy span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.app-section {
  padding: 150px 0;
}

.app-heading {
  max-width: 850px;
  margin-bottom: 85px;
}

.app-heading h2 {
  margin-bottom: 34px;
}

.app-heading .section-summary {
  max-width: 540px;
}

.app-product {
  display: grid;
  grid-template-columns: minmax(440px, 1.08fr) minmax(370px, 0.92fr);
  gap: 10%;
  align-items: center;
}

.phone-pair {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  border-radius: 44px 18px 44px 44px;
  background: var(--sand);
}

.phone-pair-note {
  position: absolute;
  top: 30px;
  left: 32px;
  z-index: 3;
  color: rgba(24, 33, 29, 0.56);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.phone {
  position: absolute;
  aspect-ratio: 9 / 19.5;
  margin: 0;
  overflow: hidden;
  border: 9px solid #151917;
  border-radius: 42px;
  background: #151917;
  box-shadow: 0 34px 62px rgba(24, 33, 29, 0.22);
}

.phone::before,
.hero-phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 2;
  width: 38%;
  height: 18px;
  border-radius: 12px;
  background: #151917;
  transform: translateX(-50%);
}

.phone-back {
  top: 9%;
  left: 9%;
  width: 42%;
  transform: rotate(-5deg);
}

.phone-front {
  right: 9%;
  bottom: 7%;
  z-index: 2;
  width: 45%;
  transform: rotate(4deg);
}

.app-flow {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.app-flow li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 30px 0 33px;
  border-bottom: 1px solid var(--line);
}

.app-flow li > span {
  padding-top: 6px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.app-flow h3 {
  margin-bottom: 11px;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.app-flow p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.mini-program-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 52px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-program-note span {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.mini-program-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.download-section {
  width: min(1500px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(620px, 1.18fr);
  gap: 8%;
  align-items: center;
  margin: 24px auto;
  padding: 110px max(40px, calc((100vw - 1280px) / 2));
  overflow: hidden;
  border-radius: var(--radius-large);
  color: var(--white);
  background: var(--green-dark);
}

.download-copy h2 {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--white);
  font-size: clamp(58px, 5.7vw, 88px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.07em;
}

.download-copy > p:not(.section-label) {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.85;
}

.download-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-trust span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.download-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.download-card {
  min-height: 490px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px 14px 34px 34px;
}

.download-card-android {
  color: var(--black);
  background: var(--mint);
}

.download-card-ios {
  background: rgba(255, 255, 255, 0.06);
}

.download-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 54px;
}

.download-card-top img {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.16);
}

.platform-status {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 700;
}

.platform-status-live {
  border-color: rgba(24, 33, 29, 0.18);
  color: var(--green-dark);
}

.download-card > p {
  margin-bottom: 11px;
  color: currentColor;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.66;
}

.download-card h3 {
  margin-bottom: 18px;
  color: currentColor;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.download-card > span:not(.download-coming) {
  color: currentColor;
  font-size: 12px;
  line-height: 1.75;
  opacity: 0.64;
}

.download-button,
.download-coming {
  width: 100%;
  margin-top: auto;
}

.download-button {
  margin-bottom: 16px;
  color: var(--white);
  background: var(--black);
}

.download-button:hover,
.download-button:focus-visible {
  color: var(--black);
  background: var(--acid);
}

.download-coming {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
}

.download-card small {
  color: currentColor;
  font-size: 9px;
  opacity: 0.54;
}

.software-section {
  width: min(1500px, calc(100vw - 32px));
  margin: 24px auto;
  padding: 140px max(32px, calc((100vw - 1280px) / 2));
  overflow: hidden;
  border-radius: var(--radius-large);
  color: var(--white);
  background: var(--black);
}

.agent-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.58fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 76px;
}

.agent-heading h2 {
  max-width: 840px;
  margin: 0;
  color: var(--white);
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.075em;
}

.agent-summary {
  max-width: 450px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.9;
}

.agent-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 9%;
  align-items: start;
}

.agent-chat {
  min-height: 580px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  color: var(--ink);
  background: var(--warm);
  border-radius: 38px 18px 38px 38px;
}

.agent-chat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.agent-chat-top > span {
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.agent-chat-top small {
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.agent-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 34px;
}

.agent-context span,
.agent-chat-footer span {
  padding: 8px 11px;
  border-radius: var(--radius-pill);
  color: var(--green);
  background: #dce9d2;
  font-size: 9px;
  font-weight: 700;
}

.chat-message {
  max-width: 86%;
  font-size: 14px;
  line-height: 1.8;
}

.chat-message-user {
  align-self: flex-end;
  margin-bottom: 16px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 22px 22px 7px 22px;
}

.chat-message-agent {
  padding: 20px 22px;
  color: #435049;
  background: var(--white);
  border-radius: 9px 24px 24px 24px;
  box-shadow: 0 16px 34px rgba(24, 33, 29, 0.08);
}

.chat-message-agent strong {
  display: block;
  margin-bottom: 9px;
  color: var(--black);
  font-size: 17px;
  font-weight: 600;
}

.agent-chat-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.agent-chat-footer span {
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
}

.agent-capabilities {
  border-top: 1px solid var(--line-light);
}

.agent-capabilities article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  padding: 25px 0 28px;
  border-bottom: 1px solid var(--line-light);
}

.agent-capabilities article > span {
  padding-top: 4px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
}

.agent-capabilities h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.agent-capabilities p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.8;
}

.software-heading {
  display: grid;
  grid-template-columns: minmax(200px, 0.35fr) minmax(600px, 1fr);
  gap: 70px;
  align-items: start;
  margin-bottom: 96px;
}

.section-label-light {
  color: var(--acid);
}

.software-heading h2 {
  margin-bottom: 0;
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.075em;
}

.software-lines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.software-lines article {
  min-height: 315px;
  padding: 28px 26px 32px 0;
}

.software-lines article + article {
  padding-left: 26px;
  border-left: 1px solid var(--line-light);
}

.software-lines article > span {
  color: var(--acid);
  font-size: 9px;
}

.software-lines h3 {
  margin: 74px 0 18px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.software-lines p {
  max-width: 240px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.8;
}

.garden-section {
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(390px, 0.92fr);
  gap: 9%;
  align-items: center;
  padding: 150px 0;
}

.garden-photos {
  position: relative;
  min-height: 800px;
}

.garden-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.garden-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.garden-photo:hover img {
  transform: scale(1.025);
}

.garden-photo-main {
  top: 0;
  left: 0;
  width: 73%;
  height: 79%;
  border-radius: 52px 20px 52px 52px;
}

.garden-photo-side {
  right: 0;
  bottom: 0;
  width: 55%;
  height: 47%;
  border: 12px solid var(--paper);
  border-radius: 34px 34px 14px 34px;
}

.garden-copy h2 {
  margin-bottom: 34px;
}

.garden-copy > p:not(.section-label) {
  max-width: 520px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.garden-list {
  padding: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.garden-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

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

.garden-list strong {
  font-weight: 600;
}

.pod-section {
  width: min(1500px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(580px, 1.18fr);
  min-height: 920px;
  margin: 24px auto;
  overflow: hidden;
  border-radius: var(--radius-large);
  color: var(--white);
  background: var(--green-dark);
}

.pod-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px max(48px, calc((100vw - 1280px) / 2));
  border-right: 1px solid var(--line-light);
}

.pod-copy h2 {
  margin-bottom: 34px;
  color: var(--white);
}

.pod-copy > p:not(.section-label):not(.pod-note) {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.9;
}

.pod-progress {
  max-width: 530px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 32px 0 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: 11px;
}

.pod-progress span {
  color: rgba(255, 255, 255, 0.46);
}

.pod-progress strong {
  color: var(--acid);
  font-weight: 600;
}

.pod-note {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  line-height: 1.7;
}

.pod-visual {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  background: #ebe8df;
}

.pod-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.board-inset {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(310px, 42%);
  padding: 16px;
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.board-inset img {
  width: 100%;
  height: 110px;
  display: block;
  object-fit: contain;
}

.board-inset span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.experience-section {
  width: min(1500px, calc(100vw - 32px));
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 24px auto;
  padding: 100px 24px;
  overflow: hidden;
  border-radius: var(--radius-large);
  color: var(--white);
  text-align: center;
  background: var(--green);
}

.experience-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 34px;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.experience-section h2 {
  max-width: 980px;
  margin-bottom: 30px;
  color: var(--white);
}

.experience-section > p:not(.section-label) {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.85;
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  width: var(--page);
  min-height: 154px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  margin-inline: auto;
}

.site-footer > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 13px 22px;
  color: var(--muted);
  font-size: 9px;
}

.footer-meta a {
  color: var(--ink);
  font-weight: 700;
}

.account-dialog[hidden] {
  display: none;
}

.account-dialog {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.dialog-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(11, 18, 15, 0.72);
  backdrop-filter: blur(7px);
}

.dialog-card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 42px;
  border-radius: var(--radius-medium);
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
}

.dialog-card > img {
  width: 58px;
  height: 58px;
  margin-bottom: 25px;
  border-radius: 15px;
}

.dialog-card > p {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.dialog-card h2 {
  margin-bottom: 17px;
  color: var(--black);
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.dialog-card > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.dialog-keyword {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 27px 0;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-keyword small {
  color: var(--muted);
  font-size: 9px;
}

.dialog-keyword strong {
  font-size: 20px;
  letter-spacing: 0.1em;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  color: var(--white);
  background: var(--black);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.1s;
}

.hero-phone.reveal {
  transform: translateY(18px) rotate(4deg);
}

.hero-phone.reveal.is-visible {
  transform: rotate(4deg);
}

.hero-sensor.reveal {
  transform: translateY(18px) rotate(-4deg);
}

.hero-sensor.reveal.is-visible {
  transform: rotate(-4deg);
}

.sensor-lab-product.reveal {
  transform: translate(-50%, calc(-50% + 18px));
}

.sensor-lab-product.reveal.is-visible {
  transform: translate(-50%, -50%);
}

.phone-back.reveal {
  transform: translateY(18px) rotate(-5deg);
}

.phone-back.reveal.is-visible {
  transform: rotate(-5deg);
}

.phone-front.reveal {
  transform: translateY(18px) rotate(4deg);
}

.phone-front.reveal.is-visible {
  transform: rotate(4deg);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  :root {
    --page: min(100vw - 40px, 900px);
  }

  .desktop-nav,
  .text-action {
    display: none;
  }

  .topbar {
    right: auto;
    left: 0;
    width: 100%;
    padding-inline: 20px;
  }

  .menu-button {
    width: 42px;
    height: 40px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span {
    width: 17px;
    height: 1px;
    display: block;
    background: var(--black);
    transition: transform 0.2s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding: 100px 24px 50px;
    border-radius: 0 0 32px 32px;
    color: var(--white);
    background: var(--green-dark);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.04em;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .menu-open .topbar {
    color: var(--white);
    background: var(--green-dark);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .menu-open .brand small {
    color: rgba(255, 255, 255, 0.55);
  }

  .menu-open .menu-button {
    border-color: rgba(255, 255, 255, 0.24);
  }

  .menu-open .menu-button span {
    background: var(--white);
  }

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

  .hero-copy {
    min-height: 780px;
    padding: 160px max(20px, calc((100vw - 900px) / 2)) 70px;
    border-right: 0;
  }

  .hero-product {
    min-height: 820px;
    margin: 0 20px 20px;
    border-radius: 40px 40px 40px 76px;
  }

  .hero-sensor {
    left: 34%;
  }

  .proof-strip {
    padding-inline: 0;
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .section-intro .section-label {
    grid-column: auto;
  }

  .sensor-lab-product {
    width: 320px;
  }

  .sensor-point {
    width: 190px;
  }

  .app-product {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .download-section {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .download-copy {
    max-width: 720px;
  }

  .agent-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .agent-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .phone-pair {
    min-height: 850px;
  }

  .app-flow {
    max-width: 680px;
  }

  .software-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .software-lines article:nth-child(3) {
    border-left: 0;
  }

  .software-lines article:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .garden-section {
    grid-template-columns: 1fr;
    gap: 85px;
  }

  .garden-photos {
    min-height: 720px;
  }

  .garden-copy {
    max-width: 700px;
  }

  .pod-section {
    grid-template-columns: 1fr;
  }

  .pod-copy {
    min-height: 760px;
    padding-inline: max(20px, calc((100vw - 900px) / 2));
    border-right: 0;
  }

  .pod-visual {
    min-height: 900px;
  }

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

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --page: calc(100vw - 40px);
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 20px;
  }

  .topbar {
    right: auto;
    left: 0;
    width: 100%;
    height: 64px;
    padding-inline: 20px;
    background: rgba(251, 251, 247, 0.96);
  }

  .brand img {
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .menu-button {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .mobile-nav {
    justify-content: flex-start;
    gap: 0;
    padding: 88px 20px 28px;
    overflow-y: auto;
    border-radius: 0;
    font-size: 22px;
    line-height: 1.25;
  }

  .mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .button {
    min-height: 50px;
    padding-inline: 18px;
    border-radius: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 0;
    padding-top: 64px;
  }

  .hero-copy {
    min-height: 0;
    padding: 82px 20px 42px;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 17px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.06em;
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-meta {
    gap: 8px 20px;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 10px;
  }

  .hero-product {
    min-height: 520px;
    margin: 0 16px 16px;
    border-radius: 20px;
  }

  .product-caption {
    top: 18px;
    left: 18px;
  }

  .hero-phone {
    top: 14%;
    right: 7%;
    width: 39%;
    border-width: 5px;
    border-radius: 22px;
    box-shadow: 0 22px 45px rgba(19, 44, 34, 0.2);
  }

  .hero-sensor {
    bottom: 0;
    left: 13%;
    width: 45%;
  }

  .measure-label {
    min-width: 92px;
    padding: 9px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
  }

  .measure-label-soil {
    top: 13%;
    left: 4%;
  }

  .measure-label-temp {
    right: 4%;
    bottom: 8%;
  }

  .hero-product-name {
    display: none;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 36px;
    padding-inline: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background: transparent;
  }

  .proof-strip > div {
    min-height: 88px;
    padding: 18px 0;
  }

  .proof-strip > div:nth-child(even) {
    padding-left: 18px;
    border-left-color: var(--line);
  }

  .proof-strip > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-strip > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .proof-strip strong {
    margin-bottom: 6px;
    font-size: 19px;
  }

  .proof-strip span {
    color: var(--muted);
    font-size: 10px;
  }

  .detector-section,
  .app-section,
  .garden-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .download-section {
    width: 100%;
    gap: 36px;
    margin: 0;
    padding: 72px 20px;
    border-radius: 0;
  }

  .download-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .download-copy > p:not(.section-label) {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.72;
  }

  .download-trust {
    gap: 8px 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .download-trust span {
    padding: 0;
    border: 0;
    border-radius: 0;
    font-size: 10px;
  }

  .download-platforms {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .download-card {
    min-height: 0;
    padding: 22px;
    border-radius: 16px;
  }

  .download-card-top {
    margin-bottom: 28px;
  }

  .download-card-top img {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    box-shadow: none;
  }

  .platform-status {
    padding: 6px 9px;
    border-radius: 6px;
  }

  .download-card h3 {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .download-card > span:not(.download-coming) {
    font-size: 14px;
    line-height: 1.65;
  }

  .download-button,
  .download-coming {
    margin-top: 28px;
  }

  .download-card-ios {
    padding-top: 24px;
    background: transparent;
  }

  .section-intro {
    gap: 18px;
    margin-bottom: 36px;
  }

  .section-intro h2,
  .app-heading h2,
  .agent-heading h2,
  .garden-copy h2,
  .pod-copy h2,
  .experience-section h2 {
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .section-summary {
    font-size: 14px;
    line-height: 1.72;
  }

  .sensor-lab {
    min-height: auto;
    padding: 38px 18px 12px;
    border-radius: 18px;
  }

  .sensor-lab-product {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 410px;
    margin-bottom: 20px;
    transform: none;
  }

  .sensor-lab-product.reveal {
    transform: translateY(18px);
  }

  .sensor-lab-product.reveal.is-visible {
    transform: none;
  }

  .sensor-lab-product img {
    width: 186px;
    max-height: 390px;
  }

  .lab-ring-one {
    width: 270px;
    height: 270px;
  }

  .lab-ring-two {
    width: 380px;
    height: 380px;
  }

  .sensor-point {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 26px 94px 1fr;
    gap: 8px;
    align-items: baseline;
    padding: 15px 0;
  }

  .sensor-point span,
  .sensor-point strong {
    margin: 0;
  }

  .sensor-point strong {
    font-size: 13px;
  }

  .product-explainer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 42px;
  }

  .product-explainer h3 {
    font-size: 34px;
    line-height: 1.12;
  }

  .explainer-copy > p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.72;
  }

  .scene-section {
    width: calc(100vw - 32px);
    min-height: 520px;
    border-radius: 18px;
  }

  .scene-section > img {
    object-position: 62% center;
  }

  .scene-copy {
    right: 20px;
    bottom: 32px;
    left: 20px;
  }

  .scene-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .app-heading {
    margin-bottom: 36px;
  }

  .phone-pair {
    min-height: 500px;
    border-radius: 18px;
  }

  .phone-pair-note {
    top: 18px;
    left: 18px;
  }

  .phone {
    border-width: 5px;
    border-radius: 22px;
    box-shadow: 0 22px 42px rgba(24, 33, 29, 0.2);
  }

  .phone-back {
    top: 8%;
    left: 5%;
    width: 47%;
  }

  .phone-front {
    right: 5%;
    bottom: 7%;
    width: 49%;
  }

  .app-product {
    gap: 42px;
  }

  .mini-program-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
  }

  .agent-heading {
    margin-bottom: 34px;
  }

  .agent-layout {
    gap: 34px;
  }

  .agent-chat {
    min-height: 0;
    padding: 20px;
    border-radius: 16px;
  }

  .agent-chat-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .chat-message {
    max-width: 94%;
    font-size: 13px;
  }

  .chat-message-user {
    border-radius: 14px 14px 4px 14px;
  }

  .chat-message-agent {
    border-radius: 4px 14px 14px 14px;
    box-shadow: none;
  }

  .agent-context span,
  .agent-chat-footer span {
    padding: 7px 9px;
    border-radius: 6px;
  }

  .agent-capabilities article {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding: 22px 0 24px;
  }

  .agent-capabilities h3 {
    font-size: 19px;
  }

  .app-flow li {
    grid-template-columns: 35px 1fr;
    padding: 21px 0;
  }

  .app-flow h3 {
    font-size: 20px;
  }

  .software-section {
    width: 100%;
    margin: 0;
    padding: 72px 20px;
    border-radius: 0;
  }

  .software-heading {
    margin-bottom: 38px;
  }

  .software-heading h2 {
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .software-lines {
    grid-template-columns: 1fr;
  }

  .software-lines article {
    min-height: 0;
    padding: 20px 0 22px;
  }

  .software-lines article + article,
  .software-lines article:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .software-lines h3 {
    margin: 20px 0 10px;
  }

  .garden-photos {
    min-height: 430px;
  }

  .garden-photo-main {
    width: 85%;
    height: 78%;
    border-radius: 18px;
  }

  .garden-photo-side {
    width: 58%;
    height: 41%;
    border-width: 8px;
    border-radius: 14px;
  }

  .garden-section {
    gap: 40px;
  }

  .garden-copy h2 {
    margin-bottom: 24px;
  }

  .garden-copy > p:not(.section-label) {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.72;
  }

  .pod-copy {
    min-height: auto;
    padding: 72px 20px;
  }

  .pod-section,
  .experience-section {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .experience-actions {
    width: 100%;
    flex-direction: column;
  }

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

  .pod-progress {
    align-items: flex-start;
    flex-direction: column;
  }

  .pod-visual {
    min-height: 520px;
  }

  .pod-image {
    object-position: center;
  }

  .board-inset {
    right: 16px;
    bottom: 16px;
    width: 52%;
    border-radius: 12px;
  }

  .experience-section {
    min-height: 500px;
    padding: 72px 20px;
    text-align: left;
    align-items: flex-start;
  }

  .experience-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    border-radius: 14px;
    box-shadow: none;
  }

  .experience-section > p:not(.section-label) {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.72;
  }

  .experience-actions {
    align-items: stretch;
  }

  .site-footer {
    width: calc(100vw - 40px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 38px 0 44px;
  }

  .footer-meta {
    justify-content: flex-start;
  }

  .dialog-card {
    padding: 30px 22px;
    border-radius: 16px;
  }

  .dialog-card h2 {
    font-size: 34px;
  }

  .reveal {
    transform: translateY(10px);
    transition-duration: 0.45s;
  }

  .reveal-delay {
    transition-delay: 0s;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
