:root {
  color-scheme: light;
  --ink: #15110e;
  --muted: #665f58;
  --line: #ded7cf;
  --panel: #fffaf4;
  --paper: #f7efe5;
  --accent: #e8681b;
  --accent-dark: #9b370f;
  --green: #2d7d57;
  --blue: #2e6b8c;
  --shadow: 0 24px 70px rgba(42, 31, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(232, 104, 27, 0.14), transparent 34rem),
    linear-gradient(180deg, #fffaf4 0%, #f5eadf 56%, #fffaf4 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 14px max(20px, calc((100% - 1280px) / 2));
  border-bottom: 1px solid rgba(222, 215, 207, 0.72);
  background: rgba(255, 250, 244, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(104, 52, 18, 0.22);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 620;
}

nav a {
  border-radius: 8px;
  padding: 8px 12px;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  outline: none;
}

.nav-cta {
  color: var(--accent-dark);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(460px, 0.88fr) minmax(520px, 1.12fr);
  gap: 54px;
  align-items: center;
  width: min(1280px, calc(100% - 40px));
  min-height: 0;
  margin: 0 auto;
  padding: 44px 0 58px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 13.8ch;
  margin: 0;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 35rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 16px;
  font-weight: 760;
}

.button.primary {
  background: var(--ink);
  color: #fffaf4;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.availability {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-shot {
  margin: 0;
}

.product-shot img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 24px 66px rgba(42, 31, 22, 0.2);
}

.product-shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-band div {
  min-width: 0;
  padding: 22px;
  background: rgba(255, 250, 244, 0.82);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 84px;
}

.section-heading {
  max-width: 720px;
}

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

.feature-grid article {
  min-width: 0;
  min-height: 218px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 250, 244, 0.78);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  margin-bottom: 46px;
  border-radius: 999px;
  background: #f2ded0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 780;
}

.feature-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.install-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 0;
}

.install-steps {
  max-width: 720px;
  margin: 28px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.install-steps li + li {
  margin-top: 8px;
}

.command-box {
  position: relative;
  max-width: 840px;
  margin: 18px 0 0;
}

.command-box pre {
  margin: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 54px 16px 16px;
  background: #15110e;
  color: #fffaf4;
  font-size: 0.95rem;
}

.copy-command {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 250, 244, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.1);
  color: #fffaf4;
  cursor: pointer;
}

.copy-command span,
.copy-command span::before {
  display: block;
  width: 13px;
  height: 13px;
  border: 1.6px solid currentColor;
  border-radius: 2px;
}

.copy-command span {
  position: relative;
}

.copy-command span::before {
  position: absolute;
  top: -5px;
  right: -5px;
  content: "";
  background: #15110e;
}

.copy-command:hover,
.copy-command:focus-visible,
.copy-command.copied {
  background: rgba(255, 250, 244, 0.2);
  outline: none;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.install-note {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
}

.privacy-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 34px;
  border-radius: 8px;
  padding: 34px;
  background: var(--ink);
  color: #fffaf4;
}

.privacy-section .eyebrow {
  color: #ffb06e;
}

.privacy-section p:last-child {
  align-self: end;
  margin: 0;
  color: #e8d7c8;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  h1 {
    max-width: 12ch;
  }

  .trust-band,
  .feature-grid,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    padding: 14px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .trust-band,
  .install-section,
  .section,
  .privacy-section,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 26px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.15rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 8px;
  }

  .button {
    flex: 1 1 150px;
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .availability,
  .product-shot figcaption {
    display: none;
  }

  .install-section {
    padding-top: 56px;
  }

  .command-box pre {
    font-size: 0.82rem;
  }

  .privacy-section {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}
