:root {
  color-scheme: light;
  --orange: #f97316;
  --orange-deep: #ea580c;
  --orange-dark: #c2410c;
  --ink: #111827;
  --muted: #6b7280;
  --page: #fff7ed;
  --card: #ffffff;
  --line: rgba(17, 24, 39, 0.08);
  --shadow: 0 18px 48px -24px rgba(194, 65, 12, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--orange-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.shot-img {
  width: 100%;
  height: auto;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255, 247, 237, 0.88);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.site-nav a:not(.btn) {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:not(.btn):hover {
  color: var(--orange-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--orange-deep);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 100%);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(234, 88, 12, 0.8);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-deep) 100%);
  box-shadow: 0 12px 28px -10px rgba(194, 65, 12, 0.85);
}

.btn__icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  display: block;
}

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.hero {
  padding: 3rem 0 2.75rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(251, 191, 36, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 0% 100%, rgba(194, 65, 12, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2.25rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero__lead {
  max-width: 34rem;
  color: #374151;
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__note {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__visual {
  position: relative;
  width: 100%;
}

.hero__shot {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111;
}

.hero__shot--video {
  width: 100%;
}

.hero__shot--video .promo-video-wrap {
  aspect-ratio: 16 / 9;
  background: #111;
}

.hero__shot--video .promo-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #111;
}

.hero__shot--video .promo-video--embed {
  border: 0;
}

.hero__video-note {
  margin-top: 0.65rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 3.25rem 0;
}

.section--compact {
  padding: 2.5rem 0;
}

.section--alt {
  background: #fff;
  border-block: 1px solid var(--line);
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section__head--wide {
  max-width: none;
}

.section__head--center {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.section__head--center p {
  margin-inline: auto;
}

.section__head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.section__head__title--single {
  white-space: nowrap;
}

.section__head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

.feature-card {
  padding: 1.25rem;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px -24px rgba(17, 24, 39, 0.25);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.showcase {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 32px -24px rgba(17, 24, 39, 0.28);
}

.showcase figcaption,
.carousel__slide figcaption {
  padding: 0.9rem 1.15rem;
  font-size: 0.95rem;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.carousel {
  display: grid;
  gap: 1rem;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 32px -24px rgba(17, 24, 39, 0.28);
}

.carousel__track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.carousel__btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--orange-deep);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px -10px rgba(17, 24, 39, 0.35);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.carousel__btn svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  flex-shrink: 0;
}

.carousel__btn:hover {
  border-color: rgba(234, 88, 12, 0.35);
  color: #fff;
  background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 100%);
  box-shadow: 0 8px 20px -12px rgba(234, 88, 12, 0.75);
}

.carousel__btn:focus-visible {
  outline: 2px solid var(--orange-deep);
  outline-offset: 2px;
}

.carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel__dot.is-active {
  width: 1.35rem;
  background: var(--orange-deep);
}

.steps {
  display: grid;
  gap: 0.85rem;
  max-width: 42rem;
}

.steps--grid {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.steps li {
  list-style: none;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
}

.steps--grid li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.steps--grid {
  counter-reset: step;
}

.steps strong {
  color: var(--orange-deep);
}

.cta-band {
  padding: 2.5rem 0 3.5rem;
}

.cta-band__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-deep) 45%, var(--orange) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band__card h2 {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.cta-band__card p {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.35rem;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
}

.footer-partner {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--muted);
}

.footer-partner:hover {
  text-decoration: none;
  color: var(--orange-deep);
}

.footer-partner__logo {
  height: 0.95rem;
  width: auto;
  display: block;
}

.footer-partner__logo--chrome {
  height: 1rem;
}

.footer-partner__name {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.legal-page {
  padding: 2rem 0 3rem;
}

.legal-page .container {
  max-width: 42rem;
}

.legal-page h1 {
  font-size: 1.85rem;
  margin-bottom: 0.35rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
}

.legal-page .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-page li {
  margin: 0.4rem 0;
}

@media (max-width: 900px) {
  .container {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .hero {
    padding: 2rem 0 1.75rem;
  }

  .hero__grid,
  .feature-grid,
  .steps--grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero__visual {
    order: -1;
  }

  .hero__video-note {
    margin-bottom: 0.25rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero__lead {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section--compact {
    padding: 2rem 0;
  }

  .section {
    padding: 2.25rem 0;
  }

  .section__head {
    margin-bottom: 1.25rem;
  }

  .section__head__title--single {
    white-space: normal;
  }

  .cta-band__card {
    padding: 1.25rem 1.15rem;
  }

  .cta-band__card .btn {
    width: 100%;
  }

  .site-nav a:not(.btn) {
    display: none;
  }

  .site-nav .btn {
    font-size: 0.82rem;
    padding: 0.55rem 0.85rem;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand__icon {
    width: 32px;
    height: 32px;
  }

  .carousel__btn {
    width: 2.75rem;
    height: 2.75rem;
  }

  .showcase figcaption,
  .carousel__slide figcaption {
    font-size: 0.88rem;
    padding: 0.75rem 0.9rem;
  }
}
