:root {
  color-scheme: light;
  --cream: #fffaf2;
  --paper: #f8efe3;
  --surface: #ffffff;
  --ink: #202521;
  --muted: #6f746e;
  --line: rgba(42, 48, 42, 0.14);
  --sage: #6d8068;
  --sage-dark: #3c513f;
  --terra: #c86645;
  --terra-dark: #9d4b32;
  --gold: #e2ae63;
  --charcoal: #1f2a24;
  --shadow: 0 22px 70px rgba(47, 38, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fffdf7;
}

.brand,
.nav-links,
.hero-actions,
.device-top,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 850;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0 44%, transparent 45%),
    var(--terra);
  box-shadow: inset 0 -7px 0 rgba(32, 37, 33, 0.18);
}

.nav-links {
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 760;
}

.header-action {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  font-weight: 780;
  color: #fffdf7;
  background: rgba(32, 37, 33, 0.18);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  color: #fffdf7;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(27, 32, 28, 0.84), rgba(27, 32, 28, 0.48) 43%, rgba(27, 32, 28, 0.18) 72%),
    linear-gradient(180deg, rgba(27, 32, 28, 0.48), rgba(27, 32, 28, 0.12) 42%, rgba(27, 32, 28, 0.34));
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 48px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--terra);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd49b;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 690px;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 870;
}

h2 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 860;
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-link,
.secondary-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 850;
}

.primary-link {
  background: var(--terra);
  color: #fffaf4;
  box-shadow: 0 16px 36px rgba(157, 75, 50, 0.22);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #fffdf7;
  background: rgba(255, 255, 255, 0.1);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px clamp(18px, 4vw, 46px);
  background: var(--cream);
}

.trust-strip strong {
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(72px, 10vw, 126px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p,
.split-copy p,
.console-grid p,
.step-card p,
.cta-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin: 18px auto 0;
}

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

.step-card,
.console-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.step-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
}

.step-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #efe3d2;
  color: var(--terra-dark);
  font-weight: 900;
}

.step-card p,
.console-grid p {
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
  background: var(--paper);
}

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

.split-copy > p {
  margin: 22px 0 0;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #3f473f;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, transparent 47%, #fff 48% 58%, transparent 59%),
    var(--sage);
}

.device-preview {
  display: grid;
  justify-items: center;
}

.device-frame {
  width: min(100%, 430px);
  border: 10px solid #1f2521;
  border-radius: 30px;
  background: #101914;
  box-shadow: 0 32px 90px rgba(35, 39, 32, 0.26);
  overflow: hidden;
}

.device-top {
  justify-content: space-between;
  padding: 18px 20px;
  color: #f6f4ea;
  font-weight: 850;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #86db9b;
  box-shadow: 0 0 0 6px rgba(134, 219, 155, 0.18);
}

.device-body {
  min-height: 490px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 22px;
  padding: 22px;
  background: #f9f3e8;
  color: var(--ink);
  text-align: center;
}

.pill {
  border: 1px solid rgba(109, 128, 104, 0.34);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--sage-dark);
  background: #eff5ed;
  font-weight: 850;
}

.device-body button {
  width: min(100%, 310px);
  min-height: 110px;
  border: 0;
  border-radius: 8px;
  background: var(--terra);
  color: #fffaf4;
  font: inherit;
  font-size: 34px;
  font-weight: 900;
}

.device-body p {
  margin: 0;
  color: var(--muted);
}

.mini-upload {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  text-align: left;
}

.mini-upload span {
  min-width: 0;
  overflow: hidden;
  color: #3f473f;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-upload strong {
  color: var(--terra-dark);
}

.mini-upload div {
  grid-column: 1 / -1;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #eadfcc;
}

.mini-upload i {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: var(--sage);
}

.console-section {
  background: var(--charcoal);
  color: #fffdf7;
}

.console-section .eyebrow {
  color: #f0c785;
}

.console-section .section-heading p,
.console-grid p {
  color: rgba(255, 253, 247, 0.72);
}

.narrow {
  max-width: 760px;
}

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

.console-grid article {
  padding: 26px;
  background: rgba(255, 253, 247, 0.07);
  border-color: rgba(255, 253, 247, 0.14);
  box-shadow: none;
}

.console-grid h3 {
  margin-bottom: 14px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fff7eb;
}

.cta-section div {
  max-width: 760px;
}

.cta-section .primary-link {
  flex: 0 0 auto;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--cream);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .trust-strip,
  .step-grid,
  .console-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .split-copy {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 90svh;
    align-items: end;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(24, 28, 25, 0.2), rgba(24, 28, 25, 0.8) 52%, rgba(24, 28, 25, 0.92)),
      linear-gradient(90deg, rgba(24, 28, 25, 0.44), rgba(24, 28, 25, 0.08));
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 104px 18px 54px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .section {
    padding: 66px 18px;
  }

  .trust-strip div {
    min-height: auto;
    padding: 22px 18px;
  }

  .device-frame {
    border-width: 7px;
    border-radius: 24px;
  }

  .device-body {
    min-height: 420px;
  }

  .device-body button {
    min-height: 92px;
    font-size: 28px;
  }

  .cta-section,
  .site-footer {
    display: grid;
  }

  .cta-section .primary-link {
    width: 100%;
  }
}
