/* ===== Design tokens ===== */
:root {
  --white: #FFFFFF;
  --deep: #001400;
  --forest: #233217;
  --green: #49B721;
  --lime: #DEF227;
  --ph-bg: #EEF1EA;
  --text: #001400;
  --muted: rgba(0, 20, 0, 0.62);
  --radius: 16px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --shadow-ph: 0 1px 2px rgba(0, 20, 0, 0.05), 0 6px 16px rgba(0, 20, 0, 0.07);
  --shadow-soft: 0 4px 24px rgba(0, 20, 0, 0.06);
  --shadow-lift: 0 12px 40px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.2);
  --container: 1120px;
  --header-h: 72px;
  --font: 'Plus Jakarta Sans', sans-serif;
}

/* ===== Reset / base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 40px, 680px);
  text-align: center;
}

/* ===== Typography ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.eyebrow-tick {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--deep);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--deep);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--deep);
}

.lede {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--muted);
  margin-top: 18px;
  max-width: 36em;
}

.feature-copy > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-forest {
  background: var(--forest);
  color: var(--white);
  padding: 12px 22px;
  font-size: 0.9rem;
}

.btn-forest:hover {
  background: var(--deep);
  box-shadow: 0 0 0 3px rgba(222, 242, 39, 0.35);
}

.btn-lime {
  background: var(--lime);
  color: var(--deep);
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  width: 100%;
}

.btn-lime:hover {
  box-shadow: 0 0 0 3px rgba(73, 183, 33, 0.25);
}

.btn-store {
  background: var(--forest);
  color: var(--white);
  padding: 10px 22px 10px 18px;
  gap: 12px;
  margin-top: 28px;
}

.btn-store:hover {
  background: var(--deep);
  box-shadow: 0 0 0 3px rgba(222, 242, 39, 0.35);
}

.btn-store-lime {
  background: var(--lime);
  color: var(--deep);
  margin-top: 28px;
}

.btn-store-lime:hover {
  background: #e8f84a;
  box-shadow: 0 0 0 3px rgba(222, 242, 39, 0.35);
}

.btn-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.btn-store-small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.85;
}

.btn-store-big {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.apple-icon { flex-shrink: 0; }

/* ===== Placeholder ===== */
.ph {
  background: var(--ph-bg);
  border: none;
  box-shadow: var(--shadow-ph);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.ph-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--deep);
  opacity: 0.4;
  text-align: center;
  padding: 12px;
  z-index: 1;
}

.ph-ba { aspect-ratio: 4 / 3.4; height: 100%; border-radius: 0; box-shadow: none; }
.ba-before .ph-ba { justify-content: flex-start; }
.ba-before .ph-ba .ph-label { padding-left: 24px; text-align: left; }
.ba-after .ph-ba { justify-content: flex-end; }
.ba-after .ph-ba .ph-label { padding-right: 24px; text-align: right; }
.ph-feature { aspect-ratio: 4 / 3.4; }
.ph-zone { aspect-ratio: 3 / 4; }
.ph-projects {
  aspect-ratio: 9 / 16;
  width: min(100%, 300px);
  border-radius: 22px;
}

.hero-ba-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.projects-media {
  width: min(100%, 300px);
  height: auto;
  aspect-ratio: 402 / 874;
  object-fit: contain;
  display: block;
  border-radius: 22px;
  box-shadow: var(--shadow-ph);
}

.feature-media {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-ph);
  display: block;
}

.measure-media {
  aspect-ratio: 1448 / 1086;
  object-fit: contain;
  height: auto;
}

/* ===== Feature icon (Material Symbols, filled) ===== */
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 28px;
  color: var(--green);
  border: none;
  background: none;
  width: auto;
  height: auto;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(0, 20, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 20, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  display: block;
  height: 40px;
  width: auto;
}

.site-footer .logo-img {
  height: 44px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--forest);
  transition: color 0.2s ease;
}

.nav a:not(.btn):hover { color: var(--green); }

.nav-cta { display: none; }
.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -18%;
  right: -8%;
  width: 52%;
  height: 88%;
  background: radial-gradient(ellipse at center, rgba(73, 183, 33, 0.11) 0%, rgba(222, 242, 39, 0.05) 42%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy .lede { max-width: 36em; }

.hero-visual {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

/* ===== Before / After slider ===== */
.ba-slider {
  --ba-pos: 52%;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-ph);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  outline: none;
}

.ba-slider.is-dragging {
  cursor: ew-resize;
}

.ba-slider:focus-visible {
  box-shadow: var(--shadow-ph), 0 0 0 3px rgba(73, 183, 33, 0.45);
}

.ba-layer {
  position: absolute;
  inset: 0;
}

.ba-before { z-index: 1; }

.ba-after {
  z-index: 2;
  left: var(--ba-pos);
  right: 0;
  width: auto;
  overflow: hidden;
}

.ba-after .hero-ba-image {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: var(--ba-full, 100%);
  max-width: none;
  height: 100%;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  z-index: 4;
  width: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 0 8px rgba(0, 20, 0, 0.18);
}

.ba-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 20, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ba-grip span {
  display: block;
  width: 2px;
  height: 14px;
  border-radius: 2px;
  background: var(--forest);
}

/* ===== Features intro ===== */
.features-intro {
  padding: 72px 0 40px;
}

.features-intro .lede {
  margin-inline: auto;
}

.features-intro .eyebrow {
  justify-content: center;
}

/* ===== Feature sections ===== */
.feature {
  padding: 72px 0;
}

.feature.tint {
  background: #FAFBF7;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px 48px;
  align-items: center;
}

.feature-grid-reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.feature-grid-reverse .feature-copy { order: 2; }
.feature-grid-reverse .feature-visual { order: 1; }

.feature-visual--capped {
  width: 100%;
  max-width: 480px;
  justify-self: end;
}

.feature-grid-reverse .feature-visual--capped {
  justify-self: start;
}

/* narrow visual (portrait phone-shaped asset) — give space back to the text column.
   Add .is-narrow-visual to any .feature-grid whose visual is a capped-width phone/screen shot. */
.feature-grid.is-narrow-visual {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.5fr);
}
.feature-grid-reverse.is-narrow-visual {
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
}

#growth .feature-grid.growth-stack {
  grid-template-columns: 1fr;
  gap: 22px;
}

#growth .feature-copy {
  max-width: 760px;
  margin-inline: auto;
}

#growth .feature-visual {
  display: flex;
  justify-content: center;
}

.feature-visual,
.feature-copy {
  min-width: 0;
}

.feature-visual:has(.ph-projects),
.feature-visual:has(.catalog-ui) {
  display: flex;
  justify-content: flex-start;
}

/* Feature 02 */
.zone-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.zone-media {
  width: 100%;
  height: auto;
  aspect-ratio: 402 / 598;
  border-radius: var(--radius-lg);
  object-fit: contain;
  display: block;
  box-shadow: var(--shadow-ph);
}

/* Feature 03 — catalog: 2-up vertical phone carousel, cyclic */
.catalog-ui {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.plant-carousel {
  --plant-gap: 14px;
  position: relative;
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(0, 20, 0, 0.06),
    0 12px 32px rgba(0, 20, 0, 0.14),
    0 3px 8px rgba(0, 20, 0, 0.06);
}

.plant-track {
  display: flex;
  gap: var(--plant-gap);
  will-change: transform;
}

.plant-card {
  flex: 0 0 100%;
  min-width: 0;
}

.ph-plant {
  width: 100%;
  aspect-ratio: 375 / 812;
  border-radius: 28px;
}

.plant-media {
  width: 100%;
  aspect-ratio: 375 / 812;
  border-radius: 28px;
  object-fit: cover;
  background: var(--white);
}

/* Feature 05 — growth: horizontal crossfade controlled by timeline */
.growth-ui {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.growth-stage {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 0 0 24px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

.growth-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.33, 0, 0.2, 1);
  will-change: opacity;
  pointer-events: none;
}

.growth-shot.is-active {
  opacity: 1;
  z-index: 1;
}

.growth-shot-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: var(--shadow-ph);
}

.growth-caption {
  width: 100%;
  max-width: 900px;
  margin-top: -10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-align: center;
  transition: opacity 0.45s ease;
}

/* ===== CTA ===== */
.cta {
  background: var(--deep);
  color: var(--white);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -12%;
  width: 45%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, rgba(222, 242, 39, 0.12) 0%, rgba(222, 242, 39, 0.04) 45%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 48px;
  align-items: center;
}

.cta-copy {
  padding-top: 0;
  padding-bottom: 0;
  max-width: 40em;
}

.cta-copy h2 { color: var(--white); }

.cta-copy p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 34em;
}

.cta-action {
  justify-self: end;
  align-self: center;
  flex-shrink: 0;
}

.cta-action .btn-store,
.cta-action .btn-store-lime {
  margin-top: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--forest);
  color: var(--white);
  padding: 52px 0 48px;
  border-top: none;
  position: relative;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--lime); }

.copyright {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Motion ===== */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual,
  .features-intro .narrow,
  .feature-copy,
  .feature-visual {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .hero-copy.is-in,
  .hero-visual.is-in,
  .features-intro .narrow.is-in,
  .feature-copy.is-in,
  .feature-visual.is-in {
    opacity: 1;
    transform: none;
  }

  .hero-visual.is-in { transition-delay: 0.1s; }
  .feature-visual.is-in { transition-delay: 0.08s; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .feature-grid-reverse,
  .feature-grid.is-narrow-visual,
  .feature-grid-reverse.is-narrow-visual {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-visual {
    max-width: 100%;
    justify-self: stretch;
  }

  .feature-visual--capped {
    max-width: 100%;
    justify-self: stretch;
  }

  .feature-grid-reverse .feature-copy,
  .feature-grid-reverse .feature-visual {
    order: unset;
  }

  .feature-visual:has(.ph-projects),
  .feature-visual:has(.catalog-ui),
  .feature-visual:has(.projects-media),
  .feature-visual:has(.growth-ui) {
    display: flex;
    justify-content: center;
  }

  .catalog-ui {
    align-items: center;
    width: 100%;
  }

  .plant-carousel {
    margin-inline: auto;
  }

  .ph-projects,
  .projects-media {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .growth-ui {
    align-items: center;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-action {
    justify-self: start;
  }

  .cta-action .btn-store,
  .cta-action .btn-store-lime {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .header-cta { display: none; }
  .nav { display: none; }
  .nav-toggle { display: flex; }

  .site-header.is-open .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px 28px;
    gap: 16px;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(0, 20, 0, 0.06);
  }

  .site-header.is-open .nav-cta {
    display: inline-flex;
    margin-top: 8px;
  }

  .hero { padding: 40px 0 56px; }
  .feature,
  .features-intro { padding: 56px 0; }
  .cta { padding: 64px 0; }

  .growth-stage {
    aspect-ratio: 16 / 10;
  }

  .zone-pair {
    gap: 10px;
  }

  .projects-media {
    box-shadow:
      0 0 0 1px rgba(0, 20, 0, 0.06),
      0 12px 32px rgba(0, 20, 0, 0.14),
      0 3px 8px rgba(0, 20, 0, 0.06);
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .plant-carousel {
    max-width: 280px;
  }

  .projects-media {
    width: min(100%, 240px);
  }
}

/* ===== Legal pages ===== */
.legal-main {
  padding: 48px 0 80px;
}

.legal-wrap {
  width: min(100% - 40px, 680px);
  margin-inline: auto;
}

.legal-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.legal-title {
  margin-top: 10px;
  font-size: clamp(2.15rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--deep);
}

.legal-updated {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  opacity: 0.6;
}

.legal-divider {
  margin: 22px 0 24px;
  border-top: 2px dashed rgba(222, 242, 39, 0.8);
}

.legal-toc-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep);
}

.legal-toc {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-toc a {
  color: var(--forest);
  font-size: 0.97rem;
  line-height: 1.45;
}

.legal-toc a:hover {
  color: var(--green);
}

.legal-body {
  margin-top: 34px;
  color: var(--deep);
}

.legal-body h2 {
  margin-top: 28px;
  font-size: clamp(1.25rem, 2.3vw, 1.5rem);
  letter-spacing: -0.015em;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  margin-top: 22px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--deep);
}

.legal-body p,
.legal-body li {
  margin-top: 12px;
  color: rgba(0, 20, 0, 0.74);
  font-size: 16px;
  line-height: 1.6;
}

.legal-body ul {
  list-style: disc;
  padding-left: 22px;
}

.legal-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(73, 183, 33, 0.08);
  color: var(--forest);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .legal-main {
    padding: 28px 0 56px;
  }

  .legal-wrap {
    width: min(100% - 28px, 680px);
  }
}

/* ===== Support page ===== */
.support-main {
  padding: 56px 0 88px;
  position: relative;
  overflow: hidden;
}

.support-main::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 48%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(73, 183, 33, 0.1) 0%, rgba(222, 242, 39, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.support-wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 560px);
  margin-inline: auto;
}

.support-title {
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--deep);
}

.support-lede {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
}

.support-form {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep);
}

.form-field .req {
  color: var(--green);
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--deep);
  background: var(--white);
  border: 1.5px solid rgba(0, 20, 0, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.form-field textarea {
  min-height: 140px;
  line-height: 1.5;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(0, 20, 0, 0.38);
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(0, 20, 0, 0.22);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(73, 183, 33, 0.18);
}

.support-submit {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
}

.support-success {
  text-align: center;
  padding: 24px 0 8px;
}

.support-success-icon {
  display: inline-flex;
  font-size: 48px;
  color: var(--green);
  margin-bottom: 16px;
}

.support-success .support-lede {
  margin-bottom: 28px;
}

.support-success .btn {
  display: inline-flex;
}

@media (max-width: 720px) {
  .support-main {
    padding: 36px 0 64px;
  }

  .support-wrap {
    width: min(100% - 32px, 560px);
  }

  .support-submit {
    width: 100%;
    justify-content: center;
  }
}
