:root {
  --bg: #f4f4f1;
  --surface: #ffffff;
  --surface-soft: #ecece8;
  --surface-dark: #151515;
  --text: #111111;
  --muted: #626262;
  --line: rgba(17, 17, 17, 0.1);
  --line-strong: rgba(17, 17, 17, 0.16);
  --accent: #c5522b;
  --accent-dark: #973716;
  --white: #ffffff;
  --container: 1180px;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-lg: 0 26px 60px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 14px 28px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(17, 17, 17, 0.035), transparent 24%),
    linear-gradient(180deg, #fcfcfa 0%, var(--bg) 56%, #ecece8 100%);
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 252, 250, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}

.header-row {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 152px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(151, 55, 22, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.button-secondary-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 700;
}

.hero {
  padding: 54px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 560px);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
}

.eyebrow-dark {
  color: #ff9c79;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1,
h2 {
  font-family: "Outfit", sans-serif;
}

h1 {
  max-width: 620px;
  font-size: clamp(2.8rem, 4.8vw, 4.7rem);
  line-height: 0.98;
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.02;
}

h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.42rem;
  line-height: 1.14;
}

.hero-text,
.section-head p,
.solution-card p,
.product-body p,
.benefit-card p,
.closing-panel p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.hero-stats div,
.solution-card,
.product-card,
.benefit-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.hero-stats div {
  padding: 18px;
}

.hero-stats strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-visual {
  display: grid;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-card {
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.hero-card-wide {
  grid-column: span 2;
}

.hero-card-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
}

.screen-screen {
  overflow: hidden;
  border-radius: 26px;
  background: #0f0f0f;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f0f0f;
}

.hero-screen {
  aspect-ratio: 16 / 10;
  padding: 12px;
}

.trust-bar {
  padding: 10px 0 22px;
}

.trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.trust-row p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.trust-row div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.92rem;
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

.section-dark {
  background: linear-gradient(145deg, #121212 0%, #1a1a1a 100%);
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

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

.solution-card,
.benefit-card {
  padding: 22px;
}

.benefit-card {
  min-height: 210px;
}

.benefit-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
}

.benefit-card p {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.section-reviews {
  overflow: hidden;
}

.reviews-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}

.summary-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.summary-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
}

.summary-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.reviews-wall {
  display: grid;
  gap: 18px;
}

.reviews-carousel {
  display: grid;
}

.reviews-viewport {
  overflow: hidden;
  padding-bottom: 8px;
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reviews-marquee 125s linear infinite;
  will-change: transform;
}

.reviews-viewport:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  width: 300px;
  min-height: 220px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  align-content: start;
}

.review-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
}

.review-head img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
}

.review-head h3 {
  font-size: 1.02rem;
}

.review-stars {
  margin-top: 4px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
}

.review-text {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card.is-short .review-text {
  -webkit-line-clamp: unset;
}

.review-more {
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
}

.review-dialog {
  width: min(720px, calc(100% - 24px));
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
}

.review-dialog::backdrop {
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(6px);
}

.review-dialog-card {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.review-dialog-close {
  margin-left: auto;
  display: block;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.review-dialog-body {
  margin-top: 18px;
}

.review-dialog-body .review-head {
  grid-template-columns: 72px 1fr;
}

.review-dialog-body .review-head img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}

.review-dialog-body p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

@keyframes reviews-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

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

.webtv-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 340px;
  gap: 22px;
  align-items: stretch;
}

.webtv-highlight,
.webtv-mini-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.webtv-highlight {
  padding: 30px;
}

.webtv-highlight h3 {
  max-width: 620px;
  font-size: 2rem;
}

.webtv-highlight p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

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

.webtv-points div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.04);
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}

.webtv-side {
  display: grid;
  gap: 16px;
}

.webtv-mini-card {
  padding: 22px;
}

.webtv-mini-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
}

.webtv-mini-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

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

.pricing-card,
.faq-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.pricing-card strong,
.faq-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
}

.pricing-card .price {
  display: block;
  margin-top: 14px;
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.pricing-card p,
.faq-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.video-embed {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 16 / 9;
}

.video-embed video,
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.product-card {
  overflow: hidden;
}

.product-media {
  padding: 18px 18px 0;
}

.product-screen {
  min-height: 220px;
  padding: 12px;
}

.product-body {
  padding: 22px 22px 24px;
}

.product-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-body p {
  margin: 12px 0 0;
}

@media (max-width: 1360px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.closing-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.closing-panel p:last-of-type {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 28px 0 46px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(180px, 1fr));
  gap: 26px;
  align-items: start;
}

.footer-brand-block p,
.footer-column a,
.footer-column span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column strong {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  color: var(--text);
}

.footer-column a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .section-head,
  .solution-grid,
  .benefits-grid,
  .reviews-summary,
  .webtv-grid,
  .pricing-grid,
  .faq-grid,
  .products-grid,
  .closing-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .closing-panel {
    display: grid;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-row {
    grid-template-columns: auto auto auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open a {
    padding: 12px 10px;
    border-radius: 12px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-visual,
  .hero-stats,
  .hero-mosaic,
  .webtv-points {
    grid-template-columns: 1fr;
  }

  .hero-card-wide {
    grid-column: span 1;
  }

  .trust-row {
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .hero-actions,
  .closing-actions,
  .side-screens {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .product-screen,
  .hero-screen {
    min-height: auto;
  }

  .review-card {
    width: 264px;
  }

}
