:root {
  --navy-950: #06172c;
  --navy-900: #09274a;
  --navy-800: #0f3b63;
  --red-700: #8b1c1f;
  --gold-500: #d2b12b;
  --sand-100: #f7f1e6;
  --ink-900: #14253a;
  --ink-700: #46576c;
  --white: #ffffff;
  --shadow-xl: 0 28px 60px rgba(6, 23, 44, 0.18);
  --shadow-lg: 0 18px 36px rgba(6, 23, 44, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(210, 177, 43, 0.24), transparent 24%),
    radial-gradient(circle at top right, rgba(139, 28, 31, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf7f0 0%, #f4ecdf 42%, #f7f3ec 100%);
}

img,
video {
  display: block;
  width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 12px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--ink-700);
  font-size: 1.02rem;
  line-height: 1.8;
}

.eyebrow,
.brand-kicker,
.mini-label,
.price-label,
.footer-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-800);
  font-weight: 800;
}

.eyebrow::before,
.footer-title::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 240, 0.84);
  border-bottom: 1px solid rgba(9, 39, 74, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img {
  width: 168px;
  max-width: 38vw;
}

.brand strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--ink-700);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red-700), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 16px;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--red-700), #aa2126);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(139, 28, 31, 0.25);
}

.header-cta {
  padding: 14px 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.button {
  min-height: 54px;
  padding: 0 28px;
  font-weight: 800;
  border: 1px solid transparent;
}

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

.button-secondary {
  background: rgba(255, 255, 255, 0.68);
  color: var(--navy-900);
  border-color: rgba(9, 39, 74, 0.14);
  box-shadow: inset 0 0 0 1px rgba(9, 39, 74, 0.04);
}

.button-block {
  width: 100%;
}

.lead-hp {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

.hero-grid,
.intro-grid,
.technology-grid,
.video-grid,
.contact-grid {
  display: grid;
  gap: 42px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-copy h1 {
  margin: 16px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.25rem, 7vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 680px;
  margin: 0;
  color: var(--ink-700);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 26px;
}

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

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-700);
}

.hero-points li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--red-700));
  flex: none;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 23, 44, 0.05), rgba(6, 23, 44, 0.56)),
    linear-gradient(125deg, rgba(210, 177, 43, 0.1), transparent 45%);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 1;
  width: min(280px, calc(100% - 40px));
  padding: 20px 22px;
  border-radius: 22px;
  color: var(--white);
  background: rgba(6, 23, 44, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-lg);
}

.floating-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.5rem;
}

.floating-card p {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.floating-card-top {
  top: 24px;
  left: 24px;
}

.floating-card-bottom {
  right: 24px;
  bottom: 24px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.trust-strip > div,
.intro-card,
.download-panel,
.contact-form-card,
.video-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(9, 39, 74, 0.08);
}

.trust-strip > div {
  padding: 24px;
}

.trust-strip span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 8px;
}

.trust-strip strong {
  font-size: 1.15rem;
}

.intro-grid,
.technology-grid,
.video-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intro-card {
  padding: 32px;
}

.intro-card p {
  margin-top: 0;
  color: var(--ink-700);
  line-height: 1.8;
}

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

.intro-metrics article {
  padding: 18px 14px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(9, 39, 74, 0.95), rgba(6, 23, 44, 0.9));
  color: var(--white);
}

.intro-metrics strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.intro-metrics span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.product-grid,
.feature-grid,
.price-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(9, 39, 74, 0.08);
}

.product-card img {
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.card-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(210, 177, 43, 0.16);
  color: var(--navy-900);
  font-weight: 800;
}

.product-content h3,
.feature-card h3,
.download-panel h3,
.contact-form-card h3 {
  margin: 16px 0 10px;
  font-size: 1.45rem;
}

.product-content p,
.feature-card p,
.contact-note {
  color: var(--ink-700);
  line-height: 1.8;
}

.product-content ul {
  padding-left: 18px;
  margin: auto 0 0;
  color: var(--ink-700);
  display: grid;
  gap: 10px;
}

.technology-visual img,
.gallery-item img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.feature-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(9, 39, 74, 0.08);
}

.price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 42px 0 26px;
}

.price-card {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(6, 23, 44, 0.98), rgba(9, 39, 74, 0.92));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.price-card strong {
  display: block;
  margin: 12px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.price-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 32px;
}

.download-panel h3 {
  max-width: 440px;
}

.download-panel h3,
.download-panel .eyebrow {
  margin-bottom: 0;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gallery-grid {
  margin-top: 42px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-highlight {
  grid-column: span 2;
}

.video-card {
  padding: 18px;
}

.video-card video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  background: var(--navy-950);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.contact-list article {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(9, 39, 74, 0.08);
  box-shadow: var(--shadow-lg);
}

.contact-list span,
.contact-list strong,
.contact-list a {
  display: block;
}

.contact-list span {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 8px;
}

.contact-list strong,
.contact-list a {
  font-size: 1.25rem;
  font-weight: 800;
}

.contact-form-card {
  padding: 30px;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(9, 39, 74, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink-900);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid rgba(15, 59, 99, 0.22);
  border-color: var(--navy-800);
}

.site-footer {
  padding: 56px 0 28px;
  background:
    linear-gradient(160deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 28px;
}

.footer-grid > div {
  display: grid;
  gap: 12px;
}

.footer-logo {
  width: 210px;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

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

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

@media (max-width: 1080px) {
  .hero-grid,
  .intro-grid,
  .technology-grid,
  .video-grid,
  .contact-grid,
  .product-grid,
  .price-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    min-width: 240px;
    padding: 16px;
    gap: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-xl);
  }

  .nav-wrap {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .hero-section {
    padding-top: 32px;
  }

  .hero-grid,
  .intro-grid,
  .technology-grid,
  .video-grid,
  .contact-grid,
  .product-grid,
  .feature-grid,
  .price-grid,
  .footer-grid,
  .trust-strip,
  .intro-metrics {
    grid-template-columns: 1fr;
  }

  .brand div {
    display: none;
  }

  .brand img {
    width: 142px;
    max-width: none;
  }

  .header-cta {
    display: none;
  }

  .hero-visual {
    min-height: 480px;
  }

  .floating-card {
    width: calc(100% - 28px);
    left: 14px;
    right: 14px;
  }

  .floating-card-top {
    top: 14px;
  }

  .floating-card-bottom {
    bottom: 14px;
  }

  .download-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-actions {
    width: 100%;
  }

  .download-actions .button {
    width: 100%;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
  }

  .gallery-item-large,
  .gallery-item-highlight {
    grid-column: span 1;
    grid-row: span 1;
  }
}
