/* HomesteadWatch public landing page v0.1
   Static, dependency-free, no external fonts, no JS, no analytics. */

:root {
  color-scheme: dark;
  --bg: #081018;
  --bg-deep: #050b11;
  --surface: #0d1721;
  --surface-2: #111d28;
  --surface-3: #162431;
  --line: rgba(180, 197, 210, 0.16);
  --line-strong: rgba(218, 157, 87, 0.34);
  --text: #f1f0eb;
  --muted: #aeb8c1;
  --muted-2: #7e8c98;
  --copper: #d69a59;
  --copper-bright: #eab06e;
  --copper-deep: #9a612d;
  --blue: #5d86bd;
  --blue-deep: #1c3553;
  --green: #78b887;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 18px;
  --shell: min(1440px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 18%, rgba(214, 154, 89, 0.08), transparent 25rem),
    radial-gradient(circle at 84% 24%, rgba(74, 103, 135, 0.13), transparent 32rem),
    linear-gradient(180deg, #0a131d 0%, var(--bg) 38%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(6, 13, 20, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  letter-spacing: -0.02em;
}

.brand > span > span,
.mini-brand > span > span {
  color: var(--copper-bright);
}

.brand-mark {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
}

.nav-links a {
  color: #c8d0d7;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--copper-bright);
}

.lantern {
  justify-self: end;
  width: 38px;
  height: 44px;
  border: 1px solid rgba(214, 154, 89, 0.28);
  border-radius: 10px 10px 14px 14px;
  position: relative;
  box-shadow: inset 0 0 18px rgba(214, 154, 89, 0.05);
}

.lantern::before,
.lantern::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.lantern::before {
  top: 5px;
  width: 16px;
  height: 5px;
  border: 1px solid rgba(214, 154, 89, 0.5);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.lantern::after {
  bottom: 7px;
  width: 22px;
  height: 2px;
  background: rgba(214, 154, 89, 0.45);
}

.lantern-glow {
  position: absolute;
  inset: 13px 11px 10px;
  border-radius: 8px 8px 11px 11px;
  background: radial-gradient(circle, #ffd28f 0%, #d98533 35%, rgba(211, 115, 37, 0.12) 75%);
  box-shadow: 0 0 24px rgba(231, 159, 77, 0.42);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background:
    linear-gradient(180deg, transparent, rgba(6, 12, 18, 0.82)),
    repeating-linear-gradient(
      166deg,
      transparent 0 34px,
      rgba(160, 181, 195, 0.025) 35px 36px
    );
  pointer-events: none;
}

.hero-haze {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background:
    radial-gradient(ellipse at 10% 92%, rgba(158, 108, 59, 0.16), transparent 30%),
    radial-gradient(ellipse at 80% 88%, rgba(51, 84, 111, 0.19), transparent 32%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
  padding: 72px 0 68px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1,
.privacy-copy h2,
.support-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 6.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 span {
  display: inline-block;
  margin-top: 8px;
  color: var(--copper-bright);
}

.hero-lede {
  max-width: 650px;
  margin: 32px 0 0;
  color: #c0cad2;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.button-primary {
  color: #fff8ed;
  background: linear-gradient(180deg, #bf7d3c, #925825);
  border-color: #d49a5f;
  box-shadow: 0 9px 28px rgba(151, 88, 37, 0.22), inset 0 1px rgba(255, 255, 255, 0.14);
}

.button-secondary {
  color: var(--copper-bright);
  background: rgba(8, 15, 22, 0.78);
  border-color: rgba(214, 154, 89, 0.66);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(214, 154, 89, 0.09);
}

.button-disabled {
  cursor: default;
}

.microcopy {
  margin: 16px 0 0;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.product-window {
  width: 100%;
  max-width: 760px;
  justify-self: end;
  background: linear-gradient(180deg, rgba(16, 27, 38, 0.98), rgba(7, 14, 21, 0.99));
  border: 1px solid rgba(176, 196, 208, 0.24);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-bar {
  height: 44px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 0 16px;
  background: linear-gradient(180deg, rgba(23, 34, 45, 0.95), rgba(13, 22, 31, 0.95));
  border-bottom: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.76rem;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #d77061; }
.window-dots span:nth-child(2) { background: #d9a84d; }
.window-dots span:nth-child(3) { background: #70b77c; }

.window-address {
  text-align: center;
}

.window-menu {
  text-align: right;
  letter-spacing: 0.12em;
}

.app-frame {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 430px;
}

.app-sidebar {
  background: #09131d;
  border-right: 1px solid var(--line);
  padding: 20px 14px;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  white-space: nowrap;
}

.mini-brand svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-nav-item {
  margin: 5px 0;
  padding: 9px 10px;
  border-radius: 7px;
  color: #98a8b5;
  font-size: 0.76rem;
}

.app-nav-item.active {
  color: #e9f0f7;
  background: linear-gradient(90deg, rgba(46, 82, 126, 0.9), rgba(34, 64, 101, 0.76));
  box-shadow: inset 0 0 0 1px rgba(111, 154, 207, 0.18);
}

.app-content {
  padding: 20px 22px;
  min-width: 0;
}

.app-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.live-badge {
  margin-left: 8px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
}

.live-badge i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(120, 184, 135, 0.5);
}

.quality-pill,
.today-pill,
.live-pill {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 5px 9px;
  color: #bdc7d0;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
}

.demo-camera {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(187, 205, 217, 0.14);
  background: #162431;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.4);
}

.sky {
  position: absolute;
  inset: 0 0 38%;
  background: linear-gradient(180deg, #415362 0%, #64727d 58%, #9a7658 100%);
}

.hill {
  position: absolute;
  bottom: 48%;
  width: 70%;
  height: 60%;
  background: #273845;
  clip-path: polygon(0 100%, 22% 63%, 35% 75%, 53% 34%, 72% 70%, 100% 48%, 100% 100%);
}

.hill-a { left: -12%; opacity: 0.88; }
.hill-b { right: -8%; transform: scaleX(-1); background: #344753; opacity: 0.82; }

.drive {
  position: absolute;
  left: 7%;
  right: 4%;
  bottom: -25%;
  height: 65%;
  background: linear-gradient(180deg, #677078 0%, #3d464e 65%, #293039 100%);
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.tree {
  position: absolute;
  bottom: 39%;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 78px solid #15252d;
  filter: drop-shadow(0 9px 6px rgba(0, 0, 0, 0.25));
}

.tree::after {
  content: "";
  position: absolute;
  left: -17px;
  top: 28px;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-bottom: 58px solid #1a2c33;
}

.tree-1 { left: 9%; transform: scale(1.1); }
.tree-2 { left: 20%; transform: scale(0.85); }
.tree-3 { right: 7%; transform: scale(1.2); }

.house {
  position: absolute;
  left: 22%;
  bottom: 41%;
  width: 92px;
  height: 60px;
}

.house .roof {
  position: absolute;
  inset: -32px -8px auto;
  height: 42px;
  background: #1e2429;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.house .wall {
  position: absolute;
  inset: 0;
  background: #4d4137;
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.window {
  position: absolute;
  top: 18px;
  width: 15px;
  height: 18px;
  background: #e7a851;
  box-shadow: 0 0 17px rgba(237, 163, 72, 0.85);
}

.window-a { left: 19px; }
.window-b { right: 19px; }

.fence {
  position: absolute;
  left: 3%;
  right: 5%;
  bottom: 43%;
  height: 20px;
  border-top: 4px solid #4b3d32;
  border-bottom: 4px solid #4b3d32;
  transform: perspective(180px) rotateX(4deg);
}

.fence::before,
.fence::after {
  content: "";
  position: absolute;
  top: -12px;
  width: 5px;
  height: 42px;
  background: #4b3d32;
}

.fence::before { left: 17%; }
.fence::after { right: 22%; }

.lantern-post {
  position: absolute;
  right: 19%;
  bottom: 41%;
  width: 5px;
  height: 66px;
  background: #27231f;
}

.lantern-post::before {
  content: "";
  position: absolute;
  left: -9px;
  top: -9px;
  width: 22px;
  height: 25px;
  border: 2px solid #4a3b2b;
  border-radius: 5px;
  background: radial-gradient(circle, #ffd693 0 18%, #d18133 42%, rgba(209, 129, 51, 0.16) 72%);
  box-shadow: 0 0 18px rgba(237, 167, 79, 0.6);
}

.car {
  position: absolute;
  right: 18%;
  bottom: 22%;
  width: 118px;
  height: 36px;
  border-radius: 26px 34px 10px 12px;
  background: linear-gradient(180deg, #344250, #1c2731);
  box-shadow: 0 7px 11px rgba(0, 0, 0, 0.35);
}

.car::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -15px;
  width: 67px;
  height: 22px;
  border-radius: 38px 38px 4px 4px;
  background: #2d3a47;
  clip-path: polygon(16% 100%, 32% 0, 77% 0, 100% 100%);
}

.demo-label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 4px 7px;
  border-radius: 5px;
  background: rgba(3, 7, 11, 0.68);
  color: rgba(226, 234, 239, 0.67);
  font-size: 0.63rem;
  letter-spacing: 0.04em;
}

.timeline-head {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.72rem;
}

.timeline-head strong {
  justify-self: center;
  color: #edf0f2;
  font-weight: 600;
}

.timeline {
  margin-top: 12px;
}

.timeline-track {
  position: relative;
  height: 20px;
  border-radius: 5px;
  background: #14212c;
  border: 1px solid rgba(194, 210, 221, 0.1);
  overflow: hidden;
}

.segment {
  position: absolute;
  top: 6px;
  height: 7px;
  border-radius: 2px;
}

.segment.blue { background: #517fbd; }
.segment.amber { background: #c47d37; }
.s1 { left: 14%; width: 11%; }
.s2 { left: 27%; width: 9%; }
.s3 { left: 43%; width: 10%; }
.s4 { left: 63%; width: 7%; }
.s5 { left: 77%; width: 13%; }

.timeline-now {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 57%;
  width: 1px;
  background: #f7f8f8;
  box-shadow: 0 0 7px rgba(255, 255, 255, 0.4);
}

.timeline-times,
.timeline-key {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: #6f808e;
  font-size: 0.6rem;
}

.timeline-key {
  justify-content: flex-start;
  gap: 16px;
}

.key-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
}

.amber-dot { background: var(--copper); }
.blue-dot { background: var(--blue); }

.feature-section {
  padding: 30px 0 18px;
  background: linear-gradient(180deg, rgba(10, 18, 26, 0.72), rgba(7, 13, 20, 0.78));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 148px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(20, 33, 45, 0.9), rgba(12, 22, 31, 0.92));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.015);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--copper-bright);
  background: radial-gradient(circle at 50% 38%, rgba(214, 154, 89, 0.2), rgba(214, 154, 89, 0.05));
  border: 1px solid rgba(214, 154, 89, 0.24);
  font-size: 1.55rem;
}

.feature-card h2 {
  margin: 1px 0 7px;
  font-size: 1rem;
  font-weight: 650;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.privacy-section {
  padding: 18px 0 54px;
}

.privacy-panel {
  position: relative;
  min-height: 150px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 26px;
  align-items: center;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, rgba(15, 24, 33, 0.98) 0 55%, rgba(14, 27, 38, 0.9) 76%, rgba(17, 35, 44, 0.86) 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.02);
  padding: 26px 28px;
}

.privacy-shield svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: #edc18b;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(214, 154, 89, 0.18));
}

.privacy-copy {
  position: relative;
  z-index: 2;
}

.privacy-copy h2 {
  margin: 0 0 7px;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.privacy-copy p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.homestead-art {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  overflow: hidden;
  opacity: 0.95;
}

.homestead-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0f1821 0%, rgba(15, 24, 33, 0.45) 32%, transparent 58%);
}

.moon {
  position: absolute;
  right: 20%;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(207, 220, 227, 0.27);
  box-shadow: 0 0 32px rgba(207, 220, 227, 0.08);
}

.ridge {
  position: absolute;
  left: -10%;
  right: -5%;
  bottom: 0;
  clip-path: polygon(0 100%, 0 62%, 15% 42%, 27% 65%, 45% 24%, 57% 56%, 72% 36%, 86% 58%, 100% 40%, 100% 100%);
}

.ridge-back {
  height: 92%;
  background: #182a38;
  opacity: 0.65;
}

.ridge-front {
  height: 68%;
  background: #11222e;
}

.cottage {
  position: absolute;
  right: 14%;
  bottom: 22px;
  width: 122px;
  height: 64px;
  z-index: 1;
}

.cottage-wall {
  position: absolute;
  inset: 0;
  background: #41362c;
  border: 1px solid rgba(0, 0, 0, 0.35);
}

.cottage-roof {
  position: absolute;
  left: -14px;
  right: -14px;
  top: -45px;
  height: 52px;
  background: #182127;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.cottage-window {
  position: absolute;
  top: 19px;
  width: 18px;
  height: 20px;
  background: #efad59;
  box-shadow: 0 0 22px rgba(239, 173, 89, 0.72);
}

.cw1 { left: 27px; }
.cw2 { right: 27px; }

.chimney {
  position: absolute;
  right: 18px;
  top: -37px;
  width: 11px;
  height: 28px;
  background: #25292b;
}

.art-fence {
  position: absolute;
  left: 7%;
  right: 5%;
  bottom: 18px;
  height: 20px;
  z-index: 1;
  border-top: 3px solid rgba(114, 83, 53, 0.8);
  border-bottom: 3px solid rgba(114, 83, 53, 0.8);
}

.support-section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 0%, rgba(44, 72, 94, 0.12), transparent 30rem),
    rgba(7, 13, 20, 0.52);
}

.support-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.support-section h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.04;
}

.support-section > .shell > div:first-child > p:last-child {
  max-width: 680px;
  color: var(--muted);
}

.support-card {
  padding: 24px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16, 28, 38, 0.9), rgba(10, 19, 27, 0.92));
}

.support-card h3 {
  margin: 0 0 9px;
  font-size: 1rem;
}

.support-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.muted-card {
  opacity: 0.84;
}

.text-link {
  color: var(--copper-bright);
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.disabled-link {
  color: var(--muted-2);
}

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

.footer-grid {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.footer-grid a {
  color: var(--copper);
  text-decoration: none;
}

.footer-grid span:last-child {
  justify-self: end;
  color: #a8794d;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .product-window {
    justify-self: stretch;
    max-width: none;
  }

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

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

  .support-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 30px, 720px);
  }

  .site-header {
    position: static;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    gap: 40px;
    padding: 52px 0;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

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

  .app-sidebar {
    display: none;
  }

  .demo-camera {
    height: 210px;
  }

  .privacy-panel {
    grid-template-columns: 62px 1fr;
    padding: 24px;
  }

  .privacy-shield svg {
    width: 56px;
    height: 56px;
  }

  .homestead-art {
    opacity: 0.32;
    width: 58%;
  }

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

  .support-grid > div:first-child {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px 0;
    text-align: center;
  }

  .footer-grid span:last-child {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .feature-card {
    min-height: 0;
  }

  .product-window {
    border-radius: 13px;
  }

  .app-content {
    padding: 14px;
  }

  .demo-camera {
    height: 180px;
  }

  .car {
    transform: scale(0.78);
    transform-origin: right bottom;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .privacy-shield {
    display: none;
  }

  .homestead-art {
    width: 78%;
  }
}

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