:root {
  color-scheme: light;
  --ink: #101820;
  --ink-soft: #1f2a33;
  --signal: #ff8a1f;
  --signal-deep: #d65f00;
  --road: #e8edf0;
  --fog: #f7f8f7;
  --white: #ffffff;
  --grey: #65717a;
  --line: #d9e0e4;
  --shadow: 0 26px 70px rgba(16, 24, 32, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--fog);
  line-height: 1.55;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 1000;
  top: 12px;
  left: 12px;
  margin: 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(217, 224, 228, 0.85);
  background: rgba(247, 248, 247, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  width: min(220px, 100%);
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--ink);
}

.brand img {
  width: 100%;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
}

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

.nav-order,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.nav-order:hover,
.nav-order:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button-primary,
.nav-order {
  background: var(--signal);
  color: var(--ink);
}

.story-link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 900;
  text-underline-offset: 6px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  min-height: calc(100vh - 85px);
  background: var(--ink);
  color: var(--white);
}

.hero-image {
  order: 2;
  min-height: 620px;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel {
  display: grid;
  align-content: center;
  padding: clamp(44px, 8vw, 92px);
  background:
    linear-gradient(90deg, rgba(255, 138, 31, 0.16), transparent 45%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 94px);
}

.signal-label {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-size: clamp(3.3rem, 8vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.1rem, 5.2vw, 5rem);
  line-height: 0.94;
}

h3,
p {
  margin: 0;
}

.hero-copy {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

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

.caution {
  max-width: 560px;
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 5px solid var(--signal);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.decision-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.decision-bar div {
  padding: 28px clamp(20px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.decision-bar strong {
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.decision-bar span {
  display: block;
  margin-top: 6px;
  color: var(--grey);
}

.section-pad {
  padding: 92px clamp(18px, 5vw, 68px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 740px;
}

.section-heading p:not(.signal-label) {
  margin-top: 18px;
  color: var(--grey);
  font-size: 1.08rem;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brief-grid article,
.offer-card,
.quote-grid blockquote,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.06);
}

.brief-grid article {
  min-height: 280px;
  padding: 26px;
}

.brief-grid span {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--signal-deep);
  font-weight: 900;
}

.brief-grid h3,
.offer-card h3,
.quote-grid cite {
  font-size: 1.3rem;
}

.brief-grid p,
.device-copy p,
.moment-stack p,
.offer-card p,
.quote-grid p,
details p,
.closeout p,
.site-footer p {
  margin-top: 12px;
  color: var(--grey);
}

.device {
  background: var(--road);
}

.device-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.device-copy {
  padding: clamp(30px, 5vw, 58px);
}

.spec-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.spec-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--grey);
}

.spec-list span {
  color: var(--ink);
  font-weight: 900;
}

.device-shell > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.moments {
  background: var(--ink);
  color: var(--white);
}

.moments h2 {
  color: var(--white);
}

.moment-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) 1fr;
  gap: 28px;
  align-items: stretch;
}

.moment-layout > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.moment-stack {
  display: grid;
  gap: 18px;
}

.moment-stack article {
  display: grid;
  align-content: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.moment-stack p {
  color: rgba(255, 255, 255, 0.72);
}

.offer {
  background: var(--fog);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer-card {
  position: relative;
  min-height: 340px;
  padding: 28px;
  display: grid;
  align-content: space-between;
}

.offer-card-feature {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.offer-card-feature p:not(.package-label) {
  color: rgba(255, 255, 255, 0.72);
}

.package-label {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 138, 31, 0.13);
  color: var(--signal-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card-feature .package-label {
  background: var(--signal);
  color: var(--ink);
}

.proof {
  background: var(--white);
}

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

.quote-grid blockquote {
  margin: 0;
  padding: 24px;
}

.quote-grid p {
  color: var(--ink-soft);
}

.quote-grid cite {
  display: block;
  margin-top: 18px;
  color: var(--signal-deep);
  font-style: normal;
  font-weight: 900;
}

.small-note {
  margin-top: 18px;
  color: var(--grey);
  font-size: 0.92rem;
}

.questions {
  background: var(--road);
}

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

details {
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--signal-deep);
  font-size: 1.25rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 22px 20px;
}

.closeout {
  padding: clamp(18px, 4vw, 52px);
  background: var(--fog);
}

.closeout-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 42px;
  align-items: center;
  padding: clamp(30px, 5vw, 62px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.closeout h2,
.closeout p:not(.signal-label) {
  color: var(--white);
}

.closeout p:not(.signal-label) {
  opacity: 0.75;
}

.closeout img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  border-radius: var(--radius);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 580px) 1fr;
  gap: 36px;
  padding: 48px clamp(18px, 5vw, 68px) 104px;
  background: #070b0f;
  color: var(--white);
}

.site-footer img {
  width: 230px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--ink);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 12px;
}

.legal-links button {
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-links button:hover,
.legal-links button:focus-visible {
  color: var(--white);
}

.sticky-offer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

.sticky-offer a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border-radius: var(--radius);
  background: var(--signal);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.modal-overlay,
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.72);
}

.modal-overlay[hidden],
.exit-overlay[hidden] {
  display: none;
}

.legal-modal,
.exit-panel {
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.legal-modal {
  padding: 34px;
}

.legal-modal h2,
.exit-panel h2 {
  font-size: clamp(1.6rem, 4vw, 3.6rem);
}

.modal-body {
  margin-top: 18px;
  color: var(--grey);
}

.modal-body p + p {
  margin-top: 14px;
}

.modal-close,
.exit-close {
  float: right;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
}

.exit-panel {
  position: relative;
  padding: 30px;
}

.exit-panel img {
  width: 100%;
  aspect-ratio: 1.8;
  margin: 20px 0;
  border-radius: var(--radius);
  object-fit: cover;
}

.exit-panel .button {
  width: 100%;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .decision-bar,
  .brief-grid,
  .device-shell,
  .moment-layout,
  .offer-grid,
  .quote-grid,
  .faq-grid,
  .closeout-inner,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: 0;
    min-height: 360px;
    clip-path: none;
  }

  .hero-panel {
    order: 1;
  }

  .device-shell > img,
  .moment-layout > img {
    min-height: 320px;
  }

  .decision-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .legal-links {
    justify-content: flex-start;
  }

  .sticky-offer {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    width: 178px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 20vw, 5.1rem);
  }

  .hero-panel,
  .section-pad,
  .closeout {
    padding-inline: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .spec-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .legal-modal,
  .exit-panel {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
