:root {
  --bg: #050608;
  --bg-2: #0a0c10;
  --panel: #11141a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f7fa;
  --muted: #a0a8b3;
  --accent: #ff5a00;
  --accent-2: #ff7a2b;
  --success: #39d98a;
  --error: #ff7386;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 90, 0, 0.08), transparent 20%),
    linear-gradient(180deg, #050608 0%, #07090c 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  backdrop-filter: blur(16px);
  background: rgba(5, 6, 8, 0.72);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-wordmark {
  width: 150px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-nav a {
  color: #dfe4ea;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay,
.cta-bg,
.cta-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img,
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 35%, rgba(0, 0, 0, 0.52) 65%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 0;
}

.hero-inner {
  max-width: 1240px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(8, 10, 14, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  text-align: center;
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-logo-mark {
  width: 100px;
  object-fit: contain;
}

.hero-logo-full {
  width: 1200px;
  object-fit: contain;

  display: block;
  margin: 0 auto;
}
.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.copy-panel h2,
.cta-content h2,
.text-card h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.9;
  margin-top: 16px;
  text-align: center;
}

.hero h1 .accent,
.text-card h2 span {
  color: var(--accent);
}

.hero-copy {
  max-width: 600px;
  margin: 16px auto 0;
  text-align: center;
  color: #e8ebef;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-box {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.feature-box span {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.feature-box strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #edf1f5;
}

.notify-panel {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.notify-text h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.notify-text p {
  margin: 8px 0 0;
  color: var(--muted);
}

.notify-form {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
}

.notify-form input {
  min-height: 60px;
  padding: 0 18px;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
}

.notify-form input::placeholder {
  color: #8892a0;
}

.notify-form button {
  min-width: 170px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #180900;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.notify-form button:hover {
  filter: brightness(1.06);
}

.notify-form button:active {
  transform: scale(0.985);
}

.notify-form button:disabled {
  opacity: 0.75;
  cursor: wait;
}

.form-message {
  min-height: 28px;
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--error);
}

.brand-strip,
.alt-section,
.cta-section,
.site-footer {
  position: relative;
}

.brand-strip,
.section,
.alt-section,
.cta-section {
  padding: 82px 0;
}

.brand-strip-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
}

.strip-card,
.product-card,
.copy-panel,
.visual-panel,
.gallery-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.text-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-card h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.95;
}

.text-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.image-card img,
.product-card img,
.visual-panel img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.section-heading h2,
.copy-panel h2,
.cta-content h2 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 0.95;
}

.section-heading p,
.copy-panel p,
.cta-content p {
  color: var(--muted);
  line-height: 1.8;
}

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

.product-card {
  min-height: 420px;
  position: relative;
}

.product-card--large {
  grid-column: span 3;
}

.product-card__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(7, 9, 13, 0.72);
  backdrop-filter: blur(8px);
}

.product-card__content h3,
.benefit h3,
.site-footer h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.03em;
}

.product-card__content h3 {
  font-size: 1.8rem;
}

.product-card__content p {
  margin: 8px 0 0;
  color: #d6dce5;
  line-height: 1.6;
  font-size: 0.96rem;
}

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

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.copy-panel {
  padding: 32px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.benefit span {
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}

.benefit p {
  margin: 4px 0 0;
}

.visual-panel {
  min-height: 620px;
}

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

.gallery-item {
  min-height: 280px;
}

.gallery-item--wide {
  grid-column: span 3;
  min-height: 460px;
}

.cta-section {
  overflow: hidden;
}

.cta-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.8)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.82));
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}

.notify-form--bottom {
  max-width: 640px;
  margin: 28px auto 0;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: #06080b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-logo {
  width: 180px;
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-socials a:hover,
.footer-grid a:hover {
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .hero-features,
  .product-grid,
  .brand-strip-grid,
  .two-col,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card--large,
  .gallery-item--wide {
    grid-column: span 2;
  }

  .visual-panel {
    min-height: 460px;
  }
}

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

  .site-nav {
    display: none;
  }

  .hero-inner,
  .copy-panel,
  .text-card {
    padding: 22px;
  }

  .hero-features,
  .product-grid,
  .brand-strip-grid,
  .two-col,
  .gallery-grid,
  .footer-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .product-card--large,
  .gallery-item--wide {
    grid-column: span 1;
  }

  .notify-form {
    grid-template-columns: 1fr;
  }

  .notify-form button {
    min-height: 58px;
  }

  .hero-logo-full {
    width: 220px;
  }

  .product-card,
  .visual-panel,
  .gallery-item,
  .gallery-item--wide {
    min-height: auto;
  }
}