:root {
  color-scheme: light;
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-soft: #f7f9f5;
  --text: #1b2126;
  --muted: #67706b;
  --line: #dfe5dd;
  --accent: #19412e;
  --secondary: #416b43;
  --accent-strong: #19412e;
  --accent-soft: #eef3eb;
  --sage: #919e7f;
  --amber: #919e7f;
  --danger: #a7382f;
  --shadow: 0 10px 34px rgba(27, 33, 38, 0.07);
  --pico-primary: #19412e;
  --pico-primary-hover: #416b43;
  --pico-primary-background: #19412e;
  --pico-primary-border: #19412e;
  --pico-primary-focus: rgba(25, 65, 46, 0.25);
  --pico-font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--pico-font-family);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  line-height: 1.45;
}

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

button {
  cursor: pointer;
}

.app-shell {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) 0 max(86px, env(safe-area-inset-bottom));
}

.app-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.app-logo {
  display: block;
  width: min(310px, 76vw);
  height: auto;
  margin-bottom: 16px;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  color: var(--text);
  font-weight: 700;
}

h1 {
  max-width: 520px;
  font-size: 36px;
  line-height: 1.18;
}

h2 {
  font-size: 22px;
  line-height: 1.2;
}

.price-pill {
  flex: 0 0 auto;
  min-width: 116px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.price-pill span,
.price-pill strong,
.price-pill small {
  display: block;
}

.price-pill span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.price-pill strong {
  color: var(--accent);
  font-size: 18px;
  font-weight: 800;
}

.price-pill small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.15;
}

.progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.progress-item {
  min-width: 0;
  min-height: 58px;
  padding: 13px 10px;
  border-radius: 8px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.progress-item span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 50%;
  background: #e5e9df;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.progress-item.active {
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.progress-item.active span {
  background: var(--accent);
  color: #fff;
}

.photo-panel,
.sheet,
.result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 24px rgba(27, 33, 38, 0.06);
}

.photo-panel {
  overflow: hidden;
}

.canvas-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: #dfe5db;
}

canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.empty-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  background:
    linear-gradient(rgba(25, 65, 46, 0.36), rgba(25, 65, 46, 0.5)),
    url("/assets/photo-placeholder.webp") center / cover no-repeat;
}

.empty-state strong,
.empty-state span {
  display: block;
}

.empty-state strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 22px;
}

.empty-state span {
  max-width: 320px;
  line-height: 1.35;
}

.tool-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--panel-soft);
}

.action-button,
.icon-button {
  width: 100%;
  min-height: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  display: grid;
  place-items: center;
  padding: 12px 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.action-button input {
  display: none;
}

.primary-action,
.icon-button.active {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: #fff;
}

.slider-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 14px;
  background: var(--panel-soft);
}

.slider-row input {
  width: 100%;
}

input[type="range"] {
  height: 28px;
  accent-color: var(--accent);
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--sage));
}

input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  margin-top: -9px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(25, 65, 46, 0.28);
}

.sheet {
  display: grid;
  gap: 22px;
  margin-top: 14px;
  padding: 16px;
}

.section-block {
  display: grid;
  gap: 10px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.section-title span {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.card-grid {
  display: grid;
  gap: 10px;
}

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

.choice-card {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  color: var(--text);
  padding: 14px;
  text-align: left;
}

.choice-card strong,
.choice-card span {
  display: block;
}

.choice-card strong {
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.2;
}

.choice-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.choice-card.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.style-picker {
  position: relative;
}

.style-card-grid {
  display: none;
}

.style-trigger,
.style-option {
  width: 100%;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: end;
  padding: 0;
  text-align: left;
  min-width: 0;
}

.style-trigger {
  background: var(--accent);
}

.style-trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
}

.style-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  max-height: min(520px, 62vh);
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(27, 33, 38, 0.16);
}

.style-option {
  min-height: 104px;
  background: var(--accent);
}

.style-option:hover,
.style-option.selected {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 2px #fff;
}

.style-preview {
  position: absolute;
  inset: 0;
  display: block;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef3eb 0 45%, #d7dfce 45%);
}

.style-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 28, 19, 0.82), rgba(11, 28, 19, 0.34));
}

.style-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-preview i {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: var(--secondary);
}

.style-preview i:nth-child(1) {
  left: 12px;
  bottom: 12px;
  width: 28px;
  height: 28px;
}

.style-preview i:nth-child(2) {
  left: 42px;
  bottom: 18px;
  width: 42px;
  height: 14px;
}

.style-preview i:nth-child(3) {
  right: 12px;
  top: 12px;
  width: 24px;
  height: 40px;
}

.style-modern {
  background: linear-gradient(135deg, #f4f6f1 0 38%, #cad5c5 38% 42%, #19412e 42% 45%, #e9eee5 45%);
}

.style-conifer i {
  border-radius: 4px 4px 999px 999px;
  background: #19412e;
}

.style-natural {
  background: radial-gradient(circle at 20% 70%, #416b43 0 18%, transparent 19%), radial-gradient(circle at 66% 44%, #919e7f 0 22%, transparent 23%), #eef3eb;
}

.style-japan {
  background: radial-gradient(circle at 25% 52%, #d7d0c2 0 18%, transparent 19%), linear-gradient(130deg, #eef3eb 0 62%, #919e7f 62%);
}

.style-english {
  background: radial-gradient(circle at 18% 62%, #416b43 0 16%, transparent 17%), radial-gradient(circle at 44% 46%, #919e7f 0 20%, transparent 21%), radial-gradient(circle at 72% 60%, #19412e 0 18%, transparent 19%), #f7f9f5;
}

.style-premium {
  background: linear-gradient(135deg, #19412e, #416b43 58%, #919e7f);
}

.style-budget {
  background: repeating-linear-gradient(135deg, #eef3eb 0 12px, #dfe8d9 12px 24px);
}

.style-lowcare {
  background: linear-gradient(145deg, #eef3eb 0 48%, #919e7f 48% 54%, #f7f9f5 54%);
}

.style-copy {
  position: relative;
  z-index: 1;
  display: block;
  padding: 18px 46px 18px 18px;
  min-width: 0;
}

.style-copy strong,
.style-copy small {
  display: block;
}

.style-copy strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.style-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.style-card {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  padding: 0;
  text-align: left;
  min-width: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.option-sections {
  display: grid;
  gap: 14px;
}

.option-block {
  display: grid;
  gap: 8px;
}

.compact-title h2 {
  font-size: 18px;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-pill,
.option-pill:hover,
.option-pill:focus,
.option-pill:active {
  width: auto;
  min-height: 42px;
  margin: 0;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.option-pill:hover {
  border-color: rgba(25, 65, 46, 0.36);
  background: var(--accent-soft);
}

.option-pill.selected,
.option-pill.selected:hover,
.option-pill.selected:focus {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.style-card:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 65, 46, 0.32);
  box-shadow: 0 14px 32px rgba(27, 33, 38, 0.1);
}

.style-card.selected {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 2px #fff, 0 14px 32px rgba(27, 33, 38, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 15px;
}

select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  min-height: 52px;
  padding: 13px 14px;
  font-size: 16px;
}

textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.35;
}

.prompt-field {
  color: var(--muted);
}

.submit-button {
  position: sticky;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 5;
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(25, 65, 46, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.submit-button,
.submit-button:hover,
.submit-button:focus,
.submit-button:active,
.submit-button:visited,
.nav-cta,
.nav-cta:hover,
.nav-cta:focus,
.nav-cta:active,
.nav-cta:visited,
.primary-action,
.primary-action:hover,
.primary-action:focus,
.icon-button.active,
.icon-button.active:hover,
.icon-button.active:focus {
  color: #fff;
}

.submit-button:disabled {
  opacity: 0.55;
  cursor: default;
}

.status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.result {
  display: block;
  margin-top: 14px;
  padding: 16px;
}

.app-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 0 6px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.app-footer img {
  width: 180px;
  height: auto;
}

.app-footer strong,
.app-footer span {
  display: block;
}

.app-footer strong {
  color: var(--text);
  font-size: 15px;
}

.app-footer span {
  max-width: 620px;
  font-size: 13px;
}

.app-footer a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.result-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.result-card img {
  display: block;
  width: 100%;
}

.result-card a {
  display: block;
  padding: 10px 12px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.hidden {
  display: none;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 54px;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.brand-mark,
.nav-cta,
.secondary-link,
.link-button {
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.brand-mark img {
  display: block;
  width: 310px;
  max-width: 62vw;
  height: auto;
}

.nav-cta {
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  display: inline-grid;
  place-items: center;
}

@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover,
  .submit-button:hover,
  .primary-action:hover,
  .icon-button.active:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #123826, #4f7d4f 58%, #6f8f63);
    box-shadow: 0 18px 40px rgba(25, 65, 46, 0.24);
    filter: saturate(1.08);
  }

  .nav-cta:active,
  .submit-button:active,
  .primary-action:active,
  .icon-button.active:active {
    transform: translateY(0);
    box-shadow: 0 9px 22px rgba(25, 65, 46, 0.18);
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  gap: 42px;
  align-items: center;
  min-height: 580px;
  isolation: isolate;
  margin-bottom: -1px;
}

.hero::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  top: -18px;
  bottom: -54px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0 18%, rgba(255, 255, 255, 0.36) 48%, rgba(255, 255, 255, 0.5)),
    url("/assets/hero-soft-bg.webp") center bottom / cover no-repeat;
  opacity: 0.9;
  filter: saturate(0.92);
  z-index: -1;
}

.hero-copy p {
  max-width: 580px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
  margin-top: 22px;
}

.hero-copy,
.hero-video {
  z-index: 1;
}

.hero-copy h1 {
  max-width: 700px;
  font-size: 58px;
  line-height: 1.04;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.link-button {
  display: inline-grid;
  place-items: center;
  width: auto;
  min-width: 178px;
  padding: 0 18px;
}

.secondary-link {
  color: var(--accent-strong);
  font-weight: 700;
}

.hero-video {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: calc((1180px - 100vw) / 2);
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 780px);
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 8px;
  background: #f5f8f3;
  box-shadow: 0 24px 62px rgba(27, 33, 38, 0.13);
  z-index: 1;
}

.hero-video::before {
  display: none;
}

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

.preview-yard {
  position: relative;
  width: 100%;
  height: 360px;
  background: linear-gradient(#d8e4e8 0 28%, #ebe4d9 28% 42%, #b7c3a4 42%);
}

.preview-house {
  position: absolute;
  left: 10%;
  top: 18%;
  width: 42%;
  height: 28%;
  border-radius: 8px 8px 3px 3px;
  background: #f2efe6;
  box-shadow: inset 0 42px #8f7b65;
}

.preview-bed {
  position: absolute;
  right: 8%;
  bottom: 10%;
  width: 66%;
  height: 24%;
  border-radius: 50% 8px 8px 50%;
  background: linear-gradient(90deg, var(--accent), var(--secondary) 45%, var(--sage));
}

.preview-path {
  position: absolute;
  left: 18%;
  bottom: 0;
  width: 18%;
  height: 48%;
  transform: skewX(-12deg);
  background: #d9d0bf;
}

.site-section {
  margin-top: 58px;
}

.site-section > h2 {
  font-size: 38px;
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 18px;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-section {
  padding: 64px 0 72px;
  background: var(--accent);
  color: #fff;
}

.process-section h2 {
  color: #fff;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

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

.feature-card {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 65, 46, 0.32);
  box-shadow: 0 20px 48px rgba(27, 33, 38, 0.13);
}

.illustrated-card {
  min-height: 330px;
  border-color: rgba(255, 255, 255, 0.18);
  background: #fff;
}

.illustrated-card img,
.price-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.34 / 1;
  margin-bottom: 16px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--panel-soft);
}

.feature-card strong,
.feature-card span {
  display: block;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.feature-card strong {
  margin-bottom: 7px;
  font-size: 19px;
  font-weight: 700;
}

.feature-card span,
.notice p {
  color: var(--muted);
  line-height: 1.4;
}

.accent-card {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.accent-card .card-icon {
  background: var(--accent);
  color: #fff;
}

.price-card {
  min-height: 300px;
}

.price-card .card-icon {
  float: right;
  margin: 0 0 8px 10px;
}

.price-card strong {
  font-size: 24px;
}

.price-card span {
  font-size: 18px;
  font-weight: 700;
}

.notice {
  max-width: 760px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f8faf7;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0;
}

.footer-inner img {
  width: 170px;
  height: auto;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner span {
  color: var(--muted);
}

.footer-inner a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.planting-panel {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.planting-panel h3 {
  margin: 0;
}

.planting-panel ul {
  margin: 0;
  padding-left: 18px;
}

.planting-panel li {
  margin: 4px 0;
}

@media (min-width: 980px) {
  .app-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
    gap: 18px;
    align-items: start;
    padding-top: 28px;
  }

  .app-header,
  .progress,
  .result,
  .app-footer {
    grid-column: 1 / -1;
  }

  .app-header {
    align-items: center;
    margin-bottom: 2px;
  }

  .photo-panel {
    position: sticky;
    top: 18px;
  }

  .sheet {
    margin-top: 0;
  }

  .canvas-wrap {
    aspect-ratio: 16 / 10;
  }

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

  .style-picker {
    display: none;
  }

  .style-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .app-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .app-header {
    align-items: flex-start;
    gap: 10px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 22px;
  }

  .app-logo {
    width: min(280px, 78vw);
  }

  .progress-item {
    padding: 9px 5px;
    font-size: 12px;
  }

  .progress-item span {
    display: none;
  }

  .tool-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .action-button,
  .icon-button {
    min-height: 50px;
    height: 50px;
    padding: 10px 8px;
    font-size: 15px;
  }

  .packages,
  .styles,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 70px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 16px;
    margin-top: 16px;
  }

  .hero-video,
  .video-frame,
  .video-frame video,
  .video-frame img {
    min-height: 280px;
    height: 280px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .site-section > h2 {
    font-size: 26px;
  }

  .process-section {
    padding: 42px 0 50px;
  }

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

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