:root {
  color-scheme: dark;
  --bg: #07080c;
  --surface: #131720;
  --surface-2: #1b2230;
  --text: #f7f8fb;
  --muted: #aeb7c8;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #ed1b24;
  --accent-dark: #b90f17;
  --green: #36d399;
  --cyan: #55c6de;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  min-width: 320px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  align-items: center;
  background: rgba(7, 8, 12, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 70px;
  justify-content: space-between;
  padding: 0 max(22px, calc((100% - 1180px) / 2));
  position: relative;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.04rem;
  font-weight: 800;
  gap: 10px;
}

.brand img {
  border-radius: 7px;
}

.header-action,
.primary-action {
  align-items: center;
  background: var(--accent);
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  transition: background 160ms ease, transform 160ms ease;
}

.header-action:hover,
.primary-action:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero {
  align-items: center;
  display: flex;
  min-height: min(690px, calc(100svh - 112px));
  overflow: hidden;
  padding: 70px max(24px, calc((100% - 1180px) / 2));
  position: relative;
}

.hero-visual,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-visual {
  background: #0d1017;
  overflow: hidden;
}

.hero-shot {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
  position: absolute;
  width: 310px;
}

.hero-shot-home {
  right: 25%;
  top: 52px;
  transform: rotate(-3deg);
}

.hero-shot-catalog {
  right: 5%;
  top: 118px;
  transform: rotate(3deg);
}

.hero-shade {
  background: rgba(4, 5, 8, 0.61);
}

.hero-copy {
  max-width: 670px;
  position: relative;
  z-index: 2;
}

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  font-size: 4.9rem;
  line-height: 0.98;
  margin-bottom: 24px;
}

.hero-lead {
  color: #e5e9f1;
  font-size: 1.28rem;
  line-height: 1.56;
  max-width: 640px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.text-action {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 750;
  padding: 9px 0;
}

.hero-note {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 22px;
}

.process,
.product,
.promise,
.final-cta,
footer {
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
}

.process {
  padding-bottom: 100px;
  padding-top: 100px;
}

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

h2 {
  font-size: 2.55rem;
  line-height: 1.13;
}

.process-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.process-grid li {
  min-height: 245px;
  padding: 34px 38px 38px 0;
}

.process-grid li + li {
  border-left: 1px solid var(--line);
  padding-left: 38px;
}

.step-number {
  color: var(--accent);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 44px;
}

.process h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.process li p,
.product-copy > p,
.promise > p,
.final-cta > p {
  color: var(--muted);
  line-height: 1.7;
}

.product {
  align-items: center;
  background: var(--surface);
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  padding-bottom: 100px;
  padding-top: 100px;
}

.product-copy h2 {
  margin-bottom: 24px;
}

.feature-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin-top: 34px;
}

.feature-list li {
  border-top: 1px solid var(--line);
  font-weight: 720;
  padding: 15px 0 15px 24px;
  position: relative;
}

.feature-list li::before {
  color: var(--green);
  content: "✓";
  left: 0;
  position: absolute;
}

.product-gallery {
  align-items: flex-start;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-gallery figure {
  min-width: 0;
}

.product-gallery figure:nth-child(2) {
  margin-top: 54px;
}

.product-gallery img {
  aspect-ratio: 375 / 844;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.product-gallery figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 12px;
}

.promise {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  padding-bottom: 100px;
  padding-top: 100px;
}

.promise h2 {
  max-width: 580px;
}

.promise > p {
  border-left: 3px solid var(--cyan);
  padding-left: 24px;
}

.final-cta {
  background: #10151d;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: 100px;
  padding-top: 100px;
  text-align: center;
}

.final-cta h2 {
  margin: 0 auto 18px;
  max-width: 720px;
}

.final-cta > p {
  margin: 0 auto 30px;
  max-width: 570px;
}

footer {
  padding-bottom: 36px;
  padding-top: 48px;
}

.footer-main {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-main nav a {
  color: var(--muted);
  font-size: 0.86rem;
}

.attribution {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  margin-top: 38px;
  padding-top: 28px;
}

.attribution img {
  height: 42px;
  width: 42px;
}

.attribution p,
.copyright {
  color: #7f899b;
  font-size: 0.72rem;
  line-height: 1.55;
}

.attribution p {
  max-width: 700px;
}

.copyright {
  margin-top: 18px;
}

@media (max-width: 820px) {
  .hero {
    align-items: end;
    min-height: calc(100svh - 112px);
    padding-bottom: 56px;
    padding-top: 210px;
  }

  .hero-shot {
    opacity: 0.72;
    width: 235px;
  }

  .hero-shot-home {
    right: 31%;
    top: 24px;
  }

  .hero-shot-catalog {
    right: -7%;
    top: 68px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

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

  .process-grid li {
    min-height: 0;
    padding: 28px 0;
  }

  .process-grid li + li {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .step-number {
    margin-bottom: 24px;
  }

  .product {
    gap: 48px;
  }

  .promise {
    gap: 36px;
  }
}

@media (max-width: 520px) {
  .site-header {
    height: 64px;
    padding: 0 16px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand img {
    height: 32px;
    width: 32px;
  }

  .header-action {
    font-size: 0.8rem;
    padding: 0 13px;
  }

  .hero {
    min-height: calc(100svh - 104px);
    padding: 220px 20px 46px;
  }

  .hero-shot {
    width: 190px;
  }

  .hero-shot-home {
    right: 38%;
    top: 20px;
  }

  .hero-shot-catalog {
    right: -12%;
    top: 48px;
  }

  .hero-shade {
    background: rgba(4, 5, 8, 0.68);
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
  }

  .text-action {
    align-self: center;
  }

  .process,
  .product,
  .promise,
  .final-cta,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .process,
  .product,
  .promise,
  .final-cta {
    padding-bottom: 76px;
    padding-top: 76px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .product-gallery {
    gap: 12px;
  }

  .product-gallery figure:nth-child(2) {
    margin-top: 34px;
  }

  .product-gallery figcaption {
    font-size: 0.7rem;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .footer-main nav {
    gap: 18px;
  }

  .attribution {
    align-items: flex-start;
  }
}

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

  .header-action,
  .primary-action {
    transition: none;
  }
}
