@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&display=swap");

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg: #11161d;
  --surface: #171e27;
  --surface-2: #1d2631;
  --text: #f8fafc;
  --muted: #b7c2d0;
  --faint: #7d8998;
  --border: rgba(148, 163, 184, 0.18);
  --accent: #0f766e;
  --accent-hover: #115e59;
  --accent-bright: #6ee7d5;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(17, 22, 29, 0.78);
  backdrop-filter: blur(18px);
}

.nav-inner,
.hero-content,
.audience-inner,
.feature-section,
.how-section,
.coverage-grid,
.cta-section,
.footer-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 30px -18px rgba(15, 118, 110, 0.55);
}

.brand-mark.small {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 12px;
}

.brand-title,
.brand-subtitle {
  display: block;
}

.brand-title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: white;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0.85rem 1.55rem;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 22px 50px -30px rgba(42, 178, 162, 0.6);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary,
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost {
  background: rgba(2, 6, 23, 0.12);
}

.btn-small {
  min-height: 40px;
  padding: 0.62rem 1.1rem;
  font-size: 0.84rem;
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: #0b1017;
}

.hero-media,
.hero-overlay,
.hero-grid,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.08) brightness(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.66) 0%, rgba(3, 7, 18, 0.5) 34%, rgba(3, 7, 18, 0.16) 62%, rgba(3, 7, 18, 0.38) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.22) 0%, rgba(2, 6, 23, 0.02) 22%, rgba(2, 6, 23, 0.34) 100%);
}

.hero-grid {
  opacity: 0.05;
  background-image:
    linear-gradient(#2ab2a2 1px, transparent 1px),
    linear-gradient(90deg, #2ab2a2 1px, transparent 1px);
  background-size: 88px 88px;
}

.hero-glow {
  pointer-events: none;
}

.hero-glow-one {
  width: 18rem;
  height: 18rem;
  left: 7%;
  top: 18%;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.16);
  filter: blur(120px);
}

.hero-glow-two {
  width: 22rem;
  height: 22rem;
  right: 9%;
  bottom: 10%;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.08);
  filter: blur(140px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.hero-content h1 {
  max-width: 880px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.25rem, 8.2vw, 7.2rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.01em;
}

.hero-content h1 span {
  color: var(--accent-bright);
}

.hero-content p {
  max-width: 690px;
  margin: 1.5rem 0 0;
  color: rgba(226, 232, 240, 0.9);
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 520;
  line-height: 1.72;
}

.hero-actions,
.cta-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.audience-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(23, 30, 39, 0.94), rgba(17, 22, 29, 0.96));
}

.audience-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.audience-inner h2,
.section-header h2,
.coverage-grid h2,
.cta-card h2,
.modal-card h2,
.drawer-panel h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.audience-inner h2,
.coverage-grid h2,
.cta-card h2 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}

.audience-inner p,
.coverage-grid p,
.cta-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.trust-badges .badge {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  padding: 0.35rem 0.85rem;
  color: var(--accent-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.38rem 0.72rem;
  color: var(--accent-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.feature-section,
.how-section,
.cta-section {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.feature-section-alt {
  max-width: none;
  width: 100%;
  background: linear-gradient(180deg, rgba(24, 28, 36, 0.92), rgba(19, 22, 29, 0.94));
}

.feature-section-alt > * {
  width: min(100%, 1280px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.compact {
  margin-bottom: 2rem;
}

.section-header h2 {
  max-width: 760px;
  margin-top: 1.1rem;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.section-header p {
  max-width: 720px;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.feature-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 3.5rem;
  align-items: start;
}

.feature-grid.reverse {
  grid-template-columns: 0.84fr 1.16fr;
}

.product-shot {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 32px 64px -44px rgba(2, 6, 23, 0.86);
}

.product-shot.flat {
  min-height: 360px;
}

.product-shot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) saturate(0.96) contrast(1.01);
}

.metric-card {
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  width: min(42%, 280px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.92rem;
  background: linear-gradient(180deg, rgba(20, 25, 34, 0.68), rgba(12, 16, 23, 0.82));
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.metric-card span,
.metric-card small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
}

.metric-card span {
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 0.35rem;
  color: #bfeae3;
  font-size: 2rem;
  line-height: 1;
}

.metric-card.danger strong {
  color: #efc5d8;
}

.metric-card.success strong {
  color: #c7eed5;
}

.metric-card small {
  margin-top: 0.25rem;
}

.feature-rail {
  display: grid;
  gap: 1rem;
}

.feature-rail article,
.how-grid article {
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1.35rem;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
}

.feature-rail article span,
.how-grid article span {
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.feature-rail h3,
.how-grid h3 {
  margin: 0.45rem 0 0;
  font-size: 1rem;
}

.feature-rail p,
.how-grid p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.feature-illustration {
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
  border-radius: 1.1rem;
  background: rgba(2, 6, 23, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.2);
}

.how-illustration {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  background: rgba(2, 6, 23, 0.2);
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
}

.how-section {
  background: linear-gradient(180deg, rgba(17, 22, 29, 0.98), rgba(13, 17, 23, 1));
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.how-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.coverage-section {
  background: linear-gradient(180deg, rgba(24, 28, 36, 0.92), rgba(19, 22, 29, 0.94));
  padding: 6.5rem 0;
}

.coverage-grid {
  align-items: center;
}

.cta-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2.25rem;
  background: linear-gradient(180deg, rgba(23, 30, 39, 0.88), rgba(17, 22, 29, 0.94));
  padding: 3rem;
  box-shadow: 0 32px 70px -40px rgba(2, 6, 23, 0.8);
}

.cta-card h2 {
  max-width: 820px;
  margin-top: 1.2rem;
}

.cta-card p {
  max-width: 720px;
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer a {
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
}

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

.login-modal,
.contact-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.login-modal[aria-hidden="false"],
.contact-drawer[aria-hidden="false"] {
  pointer-events: auto;
}

.modal-backdrop,
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0);
  backdrop-filter: blur(0);
  transition: background-color 0.24s ease, backdrop-filter 0.24s ease;
}

.login-modal[aria-hidden="false"] .modal-backdrop,
.contact-drawer[aria-hidden="false"] .drawer-backdrop {
  background: rgba(3, 7, 18, 0.56);
  backdrop-filter: blur(8px);
}

.modal-card,
.drawer-panel {
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(238, 242, 255, 0.94));
  color: #0f172a;
  box-shadow: 0 34px 90px -34px rgba(15, 23, 42, 0.55);
}

.modal-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(calc(100% - 2rem), 520px);
  border-radius: 1.1rem;
  padding: 2rem;
  transform: translate(-50%, -48%) scale(0.98);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.login-modal[aria-hidden="false"] .modal-card {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 460px);
  overflow-y: auto;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.contact-drawer[aria-hidden="false"] .drawer-panel {
  transform: translateX(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  background: white;
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1;
}

.modal-card .section-kicker,
.drawer-panel .section-kicker {
  border-color: rgba(15, 118, 110, 0.18);
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent);
}

.modal-card h2,
.drawer-panel h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 6vw, 3.1rem);
}

.modal-card p,
.drawer-panel p {
  color: #475569;
  line-height: 1.65;
}

.drawer-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.5rem;
}

.drawer-form label {
  display: grid;
  gap: 0.45rem;
  color: #334155;
  font-size: 0.86rem;
  font-weight: 800;
}

.drawer-form input,
.drawer-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  background: white;
  color: #0f172a;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 520;
}

.drawer-form input {
  height: 42px;
  padding: 0 0.8rem;
}

.drawer-form textarea {
  min-height: 128px;
  resize: vertical;
  padding: 0.8rem;
}

.drawer-form input:focus,
.drawer-form textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.16);
  border-color: var(--accent);
}

.form-note {
  margin: 0;
  color: #64748b;
  font-size: 0.78rem;
}

.form-note a {
  color: var(--accent);
  font-weight: 850;
}

@media (max-width: 980px) {
  .nav-links a {
    display: none;
  }

  .audience-inner,
  .feature-grid,
  .feature-grid.reverse,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .nav-inner,
  .hero-content,
  .audience-inner,
  .feature-section,
  .how-section,
  .coverage-grid,
  .cta-section,
  .footer-inner,
  .feature-section-alt > * {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nav-inner {
    height: 68px;
  }

  .brand-subtitle,
  .nav-links .btn-secondary {
    display: none;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-actions,
  .cta-actions,
  .modal-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .product-shot,
  .product-shot.flat {
    min-height: 300px;
  }

  .metric-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -5rem 1rem 1rem;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    border-radius: 1.4rem;
    padding: 1.4rem;
  }

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