:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5f716d;
  --paper: #fbfcf8;
  --white: #ffffff;
  --line: rgba(216, 226, 220, 0.86);
  --green: #158168;
  --teal: #1d6f7b;
  --gold: #e7ad31;
  --coral: #c96350;
  --soft-green: #dff3ec;
  --soft-gold: #fff2c8;
  --soft-blue: #e4eff8;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a,
button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.construction-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px clamp(16px, 4vw, 52px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 16, 15, 0.72), rgba(10, 16, 15, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 950;
}

.brand strong,
.brand span {
  display: block;
  line-height: 1.1;
}

.brand span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.nav-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 20, 18, 0.86), rgba(12, 20, 18, 0.58) 48%, rgba(12, 20, 18, 0.16)),
    url("./assets/leaky-sink-sample.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 22vh;
  background: linear-gradient(180deg, rgba(251, 252, 248, 0), var(--paper));
}

.trust .hero {
  background:
    linear-gradient(90deg, rgba(23, 33, 31, 0.9), rgba(29, 111, 123, 0.66) 48%, rgba(23, 33, 31, 0.18)),
    url("./assets/leaky-sink-sample.png");
  background-size: cover;
  background-position: center;
}

.demo .hero {
  background:
    linear-gradient(90deg, rgba(88, 57, 18, 0.82), rgba(23, 33, 31, 0.62) 48%, rgba(23, 33, 31, 0.16)),
    url("./assets/diy-project-workbench-hero.png");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 116px 0 clamp(66px, 12vh, 120px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #9be3cb;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo .eyebrow {
  color: #ffd983;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 8vw, 7.7rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.construction-copy {
  max-width: 690px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.52;
}

.signup {
  display: grid;
  grid-template-columns: minmax(220px, 360px) auto;
  gap: 10px;
  max-width: 560px;
}

.signup input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.signup button,
.button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.trust .signup button,
.trust .button {
  background: var(--teal);
}

.demo .signup button,
.demo .button {
  background: var(--gold);
  color: var(--ink);
}

.note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.preview-row {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100vw - 32px));
  margin: -48px auto 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-card {
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.preview-card span {
  display: block;
  color: var(--green);
  font-size: 1.9rem;
  font-weight: 950;
  line-height: 1;
}

.trust .preview-card span {
  color: var(--teal);
}

.demo .preview-card span {
  color: #a26f0d;
}

.preview-card strong {
  display: block;
  margin: 11px 0 5px;
}

.preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.section {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.section h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.roadmap article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.roadmap b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--soft-green);
  color: var(--green);
  font-size: 1.2rem;
}

.roadmap article:nth-child(2) b {
  background: var(--soft-gold);
  color: #8b6416;
}

.roadmap article:nth-child(3) b {
  background: var(--soft-blue);
  color: var(--teal);
}

.roadmap h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.roadmap p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.option-index {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(223, 243, 236, 0.82), rgba(251, 252, 248, 0) 330px),
    var(--paper);
}

.index-shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.index-shell h1 {
  max-width: 12ch;
  margin: 0 0 18px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.index-shell > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.55;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.option-card {
  display: grid;
  overflow: hidden;
  min-height: 350px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
}

.option-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.option-card div {
  display: grid;
  padding: 18px;
}

.option-card h2 {
  margin-bottom: 10px;
  font-size: 1.34rem;
}

.option-card p {
  color: var(--muted);
  line-height: 1.5;
}

.option-card span {
  align-self: end;
  color: var(--green);
  font-weight: 900;
}

.footer {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 26px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .preview-row,
  .roadmap,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 84vh;
  }
}

@media (max-width: 560px) {
  .construction-nav {
    padding: 12px;
  }

  .brand span,
  .nav-link {
    display: none;
  }

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

  .index-shell h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

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

  .signup button,
  .button {
    width: 100%;
  }
}
