:root {
  color-scheme: light;
  --ink: #17191b;
  --muted: #5d6662;
  --line: #dfe3df;
  --paper: #f6f7f4;
  --white: #ffffff;
  --graphite: #242729;
  --teal: #1f6f68;
  --teal-dark: #154b48;
  --lime: #c7ec6a;
  --shadow: 0 20px 70px rgba(24, 28, 31, 0.12);
  --content-max: 1240px;
  --page-gutter: clamp(20px, 4vw, 56px);
  --content-pad: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  --section-y: clamp(72px, 8vw, 104px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

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

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

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px var(--content-pad);
  background: rgba(246, 247, 244, 0.86);
  border-bottom: 1px solid rgba(31, 35, 34, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.hero-actions,
.thumb-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
  font-size: 1.05rem;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 6px solid var(--graphite);
  border-right-color: var(--lime);
  border-radius: 50%;
}

.site-nav {
  gap: clamp(16px, 2.2vw, 26px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a,
.nav-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 720;
}

.nav-cta {
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
}

.nav-cta:hover,
.button.secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: 72px var(--content-pad) 84px;
  overflow: hidden;
  background-color: #eef0ec;
  background-image: url("assets/packaging-hero.jpg?v=48");
  background-position: right 2vw center;
  background-repeat: no-repeat;
  background-size: min(960px, 66vw) auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 247, 244, 0.54);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 5.35rem;
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.7rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: #303633;
  font-size: 1.22rem;
}

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

.price-note {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
}

.old-price {
  color: #7e8884;
  margin-left: 6px;
  text-decoration: line-through;
}

.order-facts .old-price,
.price-note .old-price,
.spec-grid .old-price {
  color: #7e8884;
  display: inline;
  text-transform: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  cursor: pointer;
}

.button.primary {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: var(--white);
}

.button.primary:hover {
  background: var(--teal);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--graphite);
  color: var(--white);
}

.signal-strip div {
  min-height: 116px;
  padding: 24px 40px;
  background: #202426;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  margin-bottom: 6px;
  font-size: 1.7rem;
  line-height: 1.05;
}

.signal-strip span {
  color: #cbd2ce;
}

.section {
  padding: var(--section-y) var(--content-pad);
  scroll-margin-top: 92px;
}

.product-section,
.team-section,
.specs-section,
.reserve-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(36px, 5vw, 58px);
  align-items: center;
}

.section-copy,
.section-heading,
.team-copy,
.specs-copy,
.reserve-copy {
  max-width: 720px;
}

.section-copy p,
.section-heading p:not(.eyebrow),
.team-copy p,
.reserve-copy p,
.specs-copy p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
}

.feature-list div {
  padding-left: 20px;
  border-left: 3px solid var(--teal);
}

.feature-list dt {
  margin-bottom: 4px;
  font-weight: 800;
}

.feature-list dd {
  margin: 0;
  color: var(--muted);
}

.gallery {
  min-width: 0;
}

.gallery-stage {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-row {
  gap: 10px;
  margin-top: 12px;
}

.thumb {
  width: 74px;
  height: 74px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

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

.thumb.active {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(31, 111, 104, 0.16);
}

.workflow-section,
.connect-section,
.compare-section,
.benchmark-video-section,
.faq-section {
  background: var(--white);
}

.campaign-section {
  background: #edf1ee;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.workflow-grid article {
  min-height: 204px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.step-number {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--teal);
  font-weight: 840;
}

.workflow-grid p,
.faq-grid p,
.campaign-facts p {
  color: var(--muted);
}

.connect-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(22px, 3vw, 32px);
  align-items: stretch;
  margin-top: 36px;
}

.connect-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.connect-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.connect-steps {
  display: grid;
  gap: 14px;
}

.connect-steps article {
  min-height: 144px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.connect-steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-weight: 840;
}

.connect-steps p {
  margin: 0;
  color: var(--muted);
}

.comparison-table {
  margin-top: 36px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(24, 28, 31, 0.06);
}

.benchmark-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.benchmark-summary article {
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.benchmark-summary span,
.benchmark-summary strong {
  display: block;
}

.benchmark-summary span {
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
}

.benchmark-summary strong {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1;
}

.benchmark-summary p {
  margin: 0;
  color: var(--muted);
}

table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  background: var(--white);
}

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

thead th {
  color: var(--teal-dark);
  background: #eef6f3;
  font-size: 0.92rem;
  text-transform: uppercase;
}

tbody th {
  width: 20%;
  font-size: 1rem;
}

tbody td {
  color: var(--muted);
}

.featured-row th,
.featured-row td {
  background: #f1f8f4;
}

.featured-row th {
  color: var(--teal-dark);
}

.featured-row td[data-label="Duet AI average"],
.featured-row td[data-label="RTX 3090 average"] {
  color: var(--ink);
  font-weight: 840;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.team-section {
  background: var(--paper);
}

.team-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.team-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.youtube-slot {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  background: #111416;
}

.youtube-slot iframe,
.youtube-load,
.youtube-load img {
  display: block;
  width: 100%;
  height: 100%;
}

.youtube-slot iframe {
  border: 0;
}

.youtube-load {
  position: relative;
  padding: 0;
  border: 0;
  background: #111416;
  cursor: pointer;
}

.youtube-load img {
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 180ms ease, transform 180ms ease;
}

.youtube-load:hover img {
  opacity: 0.94;
  transform: scale(1.015);
}

.play-indicator {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 70px;
  height: 50px;
  border-radius: 8px;
  background: #e7221d;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.play-indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--white);
  transform: translate(-38%, -50%);
}

.video-card > div:not(.youtube-slot) {
  padding: 18px 20px 20px;
}

.video-card > div:not(.youtube-slot) span,
.video-card > div:not(.youtube-slot) strong {
  display: block;
}

.video-card > div:not(.youtube-slot) span {
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
}

.video-card > div:not(.youtube-slot) strong {
  font-size: 1.12rem;
  line-height: 1.25;
}

.video-card p {
  margin: 8px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.specs-section {
  background: #edf1ee;
}

.specs-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.specs-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.spec-grid div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(23, 25, 27, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.spec-grid span,
.spec-grid strong {
  display: block;
}

.spec-grid span {
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-grid strong {
  font-size: 1.05rem;
  line-height: 1.3;
}

.reserve-section {
  padding: var(--section-y) var(--content-pad);
  background: var(--graphite);
  color: var(--white);
  scroll-margin-top: 92px;
}

.reserve-section .eyebrow {
  color: var(--lime);
}

.reserve-copy p {
  color: #d7ddd9;
}

.order-facts {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.order-facts div {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.order-facts span,
.order-facts strong {
  display: block;
}

.order-facts span {
  margin-bottom: 4px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.order-facts strong {
  color: var(--white);
  line-height: 1.3;
}

.reserve-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #2e3334;
}

.reserve-form label {
  display: grid;
  gap: 8px;
  color: #edf1ee;
  font-weight: 720;
}

.reserve-form input,
.reserve-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #1f2324;
}

.reserve-form input:focus,
.reserve-form select:focus,
.button:focus-visible,
.thumb:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(199, 236, 106, 0.7);
  outline-offset: 3px;
}

.reserve-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--lime);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

summary {
  cursor: pointer;
  padding: 22px;
  font-weight: 800;
}

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

.campaign-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.campaign-facts article {
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(23, 25, 27, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.campaign-facts span,
.campaign-facts strong {
  display: block;
}

.campaign-facts span {
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
}

.campaign-facts strong {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.campaign-facts p {
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  padding: 34px var(--content-pad);
  color: #cbd2ce;
  background: #17191b;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 6px;
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 22px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    min-height: 720px;
    align-items: flex-start;
    padding: 56px 22px 320px;
    background-position: center bottom;
    background-size: 680px auto;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.15rem;
  }

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

  .signal-strip div,
  .section,
  .reserve-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section,
  .reserve-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .product-section,
  .team-section,
  .connect-layout,
  .specs-section,
  .reserve-section {
    grid-template-columns: 1fr;
  }

  .connect-media {
    grid-template-columns: 1fr 1fr;
  }

  .connect-media img {
    min-height: 260px;
  }

  .workflow-grid,
  .benchmark-summary,
  .video-grid,
  .campaign-facts,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid article,
  .benchmark-summary article,
  .campaign-facts article {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 0;
  }

  .site-header {
    position: static;
    gap: 10px 14px;
    padding: 12px 20px;
  }

  .section,
  .reserve-section {
    scroll-margin-top: 0;
  }

  .brand {
    width: auto;
    flex: 1 1 auto;
  }

  .nav-cta {
    width: auto;
    flex: 0 0 auto;
    padding: 8px 11px;
    font-size: 0.9rem;
    text-align: center;
  }

  .site-nav {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 18px;
    padding: 2px 0 0;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: 660px;
    padding-top: 48px;
    padding-bottom: 280px;
    background-position: center bottom 8px;
    background-size: 540px auto;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

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

  .price-note {
    width: 100%;
  }

  .section,
  .reserve-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .signal-strip div {
    min-height: 96px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .workflow-grid,
  .benchmark-summary,
  .video-grid,
  .campaign-facts,
  .faq-grid,
  .spec-grid,
  .connect-steps,
  .order-facts {
    gap: 12px;
  }

  .workflow-grid article,
  .benchmark-summary article,
  .connect-steps article,
  .campaign-facts article,
  summary {
    padding: 18px;
  }

  details p {
    padding: 0 18px 18px;
  }

  .youtube-slot {
    min-height: 190px;
  }

  .play-indicator {
    width: 60px;
    height: 44px;
  }

  .signal-strip,
  .spec-grid,
  .connect-media,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .connect-media img {
    min-height: 0;
  }

  .comparison-table {
    overflow: visible;
  }

  table {
    min-width: 0;
  }

  thead {
    display: none;
  }

  tbody,
  tr,
  tbody th,
  td {
    display: block;
    width: 100%;
  }

  tbody tr {
    border-bottom: 1px solid var(--line);
  }

  tbody tr:last-child {
    border-bottom: 0;
  }

  tbody th {
    padding: 20px 18px 8px;
    border-bottom: 0;
    color: var(--teal-dark);
  }

  td {
    padding: 12px 18px 16px;
    border-bottom: 0;
  }

  td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 820;
    text-transform: uppercase;
  }

  .thumb {
    width: 64px;
    height: 64px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
