:root {
  color-scheme: light;
  --ink: #161a1d;
  --muted: #5d6874;
  --line: #d7dde2;
  --paper: #f7f8f7;
  --panel: #ffffff;
  --green: #2d6a4f;
  --blue: #264f73;
  --coral: #bc5b4d;
  --gold: #b78125;
  --shadow: 0 18px 60px rgba(22, 26, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(247, 248, 247, 0.92);
  border-bottom: 1px solid rgba(215, 221, 226, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: clamp(620px, calc(100svh - 72px), 820px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(40px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-copy,
.section-heading p,
.company-details p,
.contact-section p,
.policy-hero p,
.policy-content p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 32px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
}

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

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.device-shell {
  width: min(100%, 360px);
  aspect-ratio: 0.72;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(188, 91, 77, 0.16)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.device-bar {
  width: 42%;
  height: 8px;
  margin: 0 auto 34px;
  background: rgba(22, 26, 29, 0.2);
  border-radius: 999px;
}

.preview-row {
  height: 14px;
  margin-bottom: 14px;
  background: rgba(38, 79, 115, 0.2);
  border-radius: 999px;
}

.preview-row.strong {
  width: 72%;
  height: 36px;
  background: var(--green);
  border-radius: 8px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.preview-grid span {
  aspect-ratio: 1;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(22, 26, 29, 0.08);
}

.preview-grid span:nth-child(2) {
  background: rgba(188, 91, 77, 0.2);
}

.preview-grid span:nth-child(3) {
  background: rgba(183, 129, 37, 0.22);
}

.preview-grid span:nth-child(4) {
  background: rgba(38, 79, 115, 0.17);
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

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

.product-card {
  min-height: 286px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-card p {
  color: var(--muted);
}

.product-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-weight: 780;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.product-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #fff;
  font-weight: 850;
}

.product-icon.scoop {
  background: var(--green);
}

.product-icon.no-contact {
  background: var(--coral);
}

.product-icon.four-fourteen {
  background: var(--blue);
  font-size: 0.9rem;
}

.product-icon.this-that {
  background: var(--gold);
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-details dl {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.company-details div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 730;
}

dd {
  margin: 0;
  font-weight: 650;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(22, 26, 29, 0.08);
  font-style: normal;
}

.contact-card a {
  color: var(--green);
  font-weight: 780;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: #fff;
}

.policy-page {
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.policy-hero,
.policy-content {
  max-width: 860px;
}

.policy-hero {
  margin-bottom: 40px;
}

.policy-hero h1 {
  margin-bottom: 14px;
}

.policy-content {
  padding: 34px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-content h2 {
  margin: 34px 0 10px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.policy-content address {
  margin-top: 26px;
  color: var(--muted);
  font-style: normal;
}

@media (max-width: 980px) {
  .hero,
  .band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    justify-content: flex-start;
  }

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

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .hero {
    padding-top: 44px;
  }

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

  .company-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .policy-content {
    padding: 22px;
  }
}
