:root {
  --ink: #151515;
  --muted: #5d626b;
  --line: #dfe2e7;
  --orange: #ff7a00;
  --orange-dark: #b94d00;
  --green: #16845b;
  --surface: #ffffff;
  --soft: #f3f4f7;
  --warm: #fff4e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header,
.content,
.site-footer {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.footer-links a,
.related a,
.breadcrumbs a {
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover,
.related a:hover,
.breadcrumbs a:hover {
  color: var(--orange-dark);
}

.hero {
  position: relative;
  min-height: clamp(620px, 78svh, 760px);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 62%;
  background: rgba(247, 248, 250, 0.94);
}

.hero-visual {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-inner {
  width: min(100% - 40px, 1120px);
  min-height: inherit;
  margin: 0 auto;
  padding: 74px 0 86px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(610px, 58%);
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(50px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.direct-answer {
  max-width: 620px;
  margin-bottom: 22px;
  color: #31343a;
  font-size: 20px;
}

.pill-row,
.cta-row,
.related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d8dadd;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #454950;
  font-size: 13px;
  font-weight: 750;
}

.cta-row {
  margin-top: 26px;
}

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

.button:hover {
  background: #ff8d25;
}

.button.secondary {
  border-color: #bfc3c9;
  background: rgba(255, 255, 255, 0.9);
}

.button.secondary:hover {
  border-color: var(--orange);
  background: var(--surface);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.section-label {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.copy p {
  margin-bottom: 16px;
  color: #30343a;
  font-size: 17px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 58px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: #25282d;
  font-weight: 720;
}

.steps {
  margin: 22px 0 0;
  padding-left: 24px;
}

.steps li {
  margin-bottom: 14px;
  padding-left: 6px;
  color: #30343a;
  font-size: 17px;
}

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

.shots-grid img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.qa-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.qa,
.callout {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.qa p,
.callout p {
  margin: 0;
  color: #353940;
}

.callout {
  border-color: #f0c99f;
  background: var(--warm);
}

.callout.limit {
  border-color: #b9ddcf;
  background: #effaf5;
}

.data-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--surface);
}

.data-table th,
.data-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--soft);
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.related {
  margin-top: 22px;
}

.related a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: #26292e;
  font-size: 14px;
  font-weight: 750;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 38px 0 44px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 900px) {
  .site-header,
  .content,
  .site-footer,
  .hero-inner {
    width: min(100% - 24px, 680px);
  }

  .site-header {
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 12px;
  }

  .hero {
    min-height: 690px;
  }

  .hero::before {
    width: 100%;
    background: rgba(247, 248, 250, 0.84);
  }

  .hero-visual {
    width: 100%;
    opacity: 0.34;
    object-position: center top;
  }

  .hero-inner {
    align-items: flex-start;
    padding: 58px 0 72px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 32px;
  }

  .section-grid,
  .qa-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .shots-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 2px 12px 18px 0;
    margin-right: -12px;
    -webkit-overflow-scrolling: touch;
  }

  .shots-grid img {
    flex: 0 0 min(78vw, 310px);
    width: min(78vw, 310px);
    scroll-snap-align: start;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 520px) {
  .direct-answer {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 50px 0;
  }
}

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