@charset "utf-8";

:root {
  --bg: #0a0d12;
  --bg-soft: #121720;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.09);
  --text: #edf2f7;
  --muted: #a6b1c2;
  --muted-soft: rgba(177, 188, 203, 0.78);
  --line: rgba(255,255,255,0.12);
  --accent: #3B82F6;
  --accent-2: #c084fc;
  --accent-orange: #F59E0B;
  --shadow: 0 18px 50px rgba(0,0,0,0.38);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(125, 211, 252, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(192, 132, 252, 0.09), transparent 24%),
    linear-gradient(180deg, #0a0d12 0%, #0d1118 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(10,13,18,0.68);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: block;
  transition: transform 0.2s ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  transform: rotate(-3deg) scale(1.05);
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.97rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #93c5fd);
  color: #09121b;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(125, 211, 252, 0.16);
}

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

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.hamburger:hover,
.hamburger:focus-visible {
  background: rgba(255,255,255,0.08);
}

.mobile-menu {
  display: none;
}

.nav-cta-mobile {
  display: none;
}

/* Hero */
.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-media,
.panel,
.signup-copy,
.form-card,
.statement-quote {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Eyebrow pills */
.eyebrow-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.18);
  color: #edf2f7;
  font-size: 0.9rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.06;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 800;
}

.headline-accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  color: rgba(237, 242, 247, 0.9);
  max-width: 44rem;
  margin-bottom: 14px;
}

.hero-text {
  color: var(--muted-soft);
  font-size: 1.02rem;
  font-weight: 400;
  max-width: 44rem;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #93c5fd);
  color: #09121b;
  box-shadow: 0 14px 30px rgba(125, 211, 252, 0.16);
}

.button-secondary {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.12);
  color: var(--text);
}

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

.hero-point {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.hero-point strong {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 700;
  color: rgba(237, 242, 247, 0.95);
  margin-bottom: 3px;
}

.hero-point span {
  color: var(--muted-soft);
  font-size: 0.92rem;
}

.hero-media {
  overflow: hidden;
  min-height: 100%;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  background: #0f141b;
}

.hero-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-link img {
  transition: transform 0.25s ease;
}

.hero-link:hover img,
.hero-link:focus-visible img {
  transform: scale(1.02);
}

.hero-link::after {
  content: "Click to enlarge";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10,13,18,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d7e0eb;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.hero-link:hover::after,
.hero-link:focus-visible::after {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: auto 20px 20px 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(10,13,18,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.hero-overlay strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.hero-overlay p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.95rem;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.18);
  font-size: 0.9rem;
  color: #bfe9ff;
  opacity: 0;
  transform: translateY(6px);
  animation: trustFade 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero-trust-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #7dd3fc;
  animation: trustPulse 2.8s ease-in-out infinite;
}

@keyframes trustFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trustPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* Sections */
.section {
  padding: 44px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

.section-head p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 1.02rem;
  font-weight: 400;
}

section {
  scroll-margin-top: 100px; /* adjust to match your nav height */
}

section,
.anchor-target {
  scroll-margin-top: 96px;
}

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

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

.panel {
  padding: 30px;
}

.signup-copy,
.form-card,
.statement-quote {
  padding: 30px;
}

.panel h3,
.form-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.28rem;
  font-weight: 700;
  color: rgba(237, 242, 247, 0.96);
  margin-bottom: 12px;
}

.panel p,
.form-card p,
.signup-copy p {
  margin: 0;
  color: var(--muted-soft);
  font-weight: 400;
}

.panel p:last-of-type {
  margin-bottom: 0;
}

.statement {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}

.statement-quote {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.11), rgba(192, 132, 252, 0.10));
  display: flex;
  align-items: center;
}

.statement-quote p {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hardware-media img,
.software-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.hardware-media img {
  background: #ffffff;
  padding: 12px;
}

/* Hero carousel */
.hero-carousel-section {
  padding-top: 10px;
}

.hero-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-carousel-section .section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.hero-carousel-section .section-head h2 {
  margin-bottom: 20px;
}

.hero-carousel-section .section-head p {
  margin: 0 0 20px;
  max-width: 760px;
  line-height: 1.7;
}

.carousel-track {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,13,18,0.6),
    rgba(10,13,18,0.0) 60%
  );
  pointer-events: none;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.carousel-button {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 23, 32, 0.92);
  color: #edf2f7;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-1px);
  background: #1f2937;
}

.carousel-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.18);
  font-size: 0.9rem;
  color: #bfe9ff;
}

.carousel-trust-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #7dd3fc;
}

.success-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: #22c55e;
  filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.4));
}

/* Links */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #7db4ff;
  transform: translateX(2px);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 220px;
  background: #111720;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow);
}

.gallery-card.tall {
  min-height: 460px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.03);
}

.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  position: relative;
}

.gallery-link::after {
  content: "Click to enlarge";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10,13,18,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d7e0eb;
  font-size: 0.78rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.gallery-card:hover .gallery-link::after,
.gallery-card:focus-within .gallery-link::after {
  opacity: 1;
}

.gallery-card .label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10,13,18,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.narrow {
  max-width: 920px;
}

.story-hero {
  text-align: center;
  margin-bottom: 8px;
}

.story-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-soft);
}

.story-intro + .story-intro {
  margin-top: 10px;
}

.story-origin,
.timeline,
.story-links {
  margin-top: 24px;
}

.story-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted-soft);
}

.story-list li + li {
  margin-top: 8px;
}

.story-video-wrap {
  position: relative;
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #121720;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-video-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.story-video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  cursor: pointer;
}

.story-bridge {
  color: var(--muted-soft);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.story-transition {
  margin-top: 24px;
  font-size: 1.05rem;
  color: rgba(237, 242, 247, 0.88);
  line-height: 1.7;
}

.story-details {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.story-details summary {
  cursor: pointer;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 16px;
}

.story-details h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.story-details p + p {
  margin-top: 14px;
}

.story-details-nested {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.25);
}

.story-image {
  width: 100%;
  max-width: 820px;
  display: block;
  margin: 18px auto 10px;
  border-radius: 14px;
}

.image-caption {
  font-size: 0.92rem;
  opacity: 0.78;
  text-align: center;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.18);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.12);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.timeline-item.is-visible::before {
  opacity: 1;
  transform: scale(1);
}

.timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline-meta {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 8px;
}

.timeline-copy h3 {
  margin-bottom: 10px;
}

.timeline-copy p {
  margin: 0;
}

.timeline-media img,
.post-card img {
  display: block;
  width: 100%;
  height: auto;
}

.post-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  background: #121720;
}

@media (min-width: 900px) {
  .timeline-item {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 24px;
  }

  .timeline-item:nth-child(even) .timeline-copy {
    order: 2;
  }

  .timeline-item:nth-child(even) .timeline-media {
    order: 1;
  }
}

/* Signup */
.signup-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}

.signup-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.signup-copy p {
  margin: 0 0 16px;
}

.signup-benefits {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.signup-benefits li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-size: 0.96rem;
  font-weight: 600;
}

input[type="email"] {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 0 16px;
  font-size: 1rem;
  outline: none;
}

input[type="email"]::placeholder {
  color: #96a4b5;
}

input[type="email"]:focus {
  border-color: rgba(125, 211, 252, 0.55);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.12);
}

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #8ddafc;
}

.fine-print {
  color: var(--muted-soft);
  font-size: 0.92rem;
  margin-top: 14px;
}

/* Footer */
.footer {
  padding: 40px 0 60px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted-soft);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer-links a {
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  color: var(--text);
}

/* Icons */
.title-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  flex: 0 0 20px;
  display: inline-block;
  vertical-align: middle;
  color: var(--accent);
}

.title-icon.orange {
  color: var(--accent-orange);
}

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

.key-facts-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-soft);
}

.key-facts-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--accent-orange);
  margin-top: 3px;
}

.logo-mark {
  background: #111821;
  border-radius: 14px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img {
  display: block;
  background: transparent;
}

/* Brevo fonts */
@font-face {
  font-display: block;
  font-family: Roboto;
  src: url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2) format("woff2"),
       url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff) format("woff");
}

@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 600;
  src: url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2) format("woff2"),
       url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff) format("woff");
}

@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 700;
  src: url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2) format("woff2"),
       url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff) format("woff");
}

/* Brevo dark-theme overrides */
#sib-container input:-ms-input-placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #3b82f6;
}

#sib-container input::placeholder,
#sib-container textarea::placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #3b82f6;
}

#sib-container a {
  text-decoration: underline;
  color: #2BB2FC;
}

#sib-container input,
#sib-container input[type="text"],
#sib-container input[type="email"],
#sib-container .input,
#sib-container .entry__field input {
  color: #09121b !important;
  -webkit-text-fill-color: #09121b !important;
  caret-color: #09121b !important;
}

#sib-container input::placeholder,
#sib-container .input::placeholder {
  color: #3b82f6 !important;
  -webkit-text-fill-color: #3b82f6 !important;
  opacity: 1 !important;
}

#sib-container .entry__label,
#sib-container .entry__specification,
#sib-container .sib-form-message-panel__inner-text {
  color: #edf2f7 !important;
}

#sib-container .entry__choice span,
#sib-container .entry__choice p {
  color: #b1bccb !important;
}

#sib-container .entry__field input {
  background: rgba(255,255,255,0.96) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 16px !important;
}

#sib-container .entry__field input:focus {
  border-color: rgba(125, 211, 252, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.12) !important;
}

#sib-container input:-webkit-autofill,
#sib-container input:-webkit-autofill:hover,
#sib-container input:-webkit-autofill:focus,
#sib-container input:-webkit-autofill:active {
  -webkit-text-fill-color: #09121b !important;
  caret-color: #09121b !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 9999s ease-in-out 0s;
}

/* Fade / reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-trust {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-trust-icon {
    animation: none;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 8, 12, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: min(92vw, 1400px);
  max-height: 92vh;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  background: #0f141b;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 23, 32, 0.96);
  color: #edf2f7;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: #1f2937;
}

.lightbox-caption {
  margin-top: 12px;
  text-align: center;
  color: #b1bccb;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .carousel-track,
  .carousel-slide img {
    min-height: 420px;
  }

  .hero-grid,
  .statement,
  .signup-wrap,
  .grid-3,
  .grid-2,
  .gallery {
    grid-template-columns: 1fr;
  }

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

  .hero-image {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .cta-button {
    font-size: 1rem;
    padding: 14px 22px;
  }

  .cta-button .desktop-text {
    display: none;
  }

  .cta-button .mobile-text {
    display: inline;
  }
	
  .section {
    padding: 30px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .nav-inner {
    min-height: 76px;
    gap: 12px;
  }
	
  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
	
  .brand {
    gap: 0;
  }

  .brand-text {
    display: none;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .nav-cta {
    padding: 12px 18px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile {
    display: inline;
  }

  .mobile-menu {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.25s ease;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(10,13,18,0.94);
    backdrop-filter: blur(16px);
  }

  .mobile-menu.is-open {
    grid-template-rows: 1fr;
  }

  .mobile-menu-inner {
    overflow: hidden;
  }

  .mobile-menu a {
    display: block;
    padding: 16px 32px;
    color: var(--muted);
    font-weight: 650;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color: var(--text);
    background: rgba(255,255,255,0.04);
  }
	
  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-media {
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .hero-support {
    order: 3;
  }

  .hero-facts {
    order: 4;
  }

  .hero-copy,
  .panel,
  .signup-copy,
  .form-card,
  .statement-quote {
    padding: 22px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 0;
    height: auto;
  }

  .hero-overlay {
    display: none;
  }

  .hero-carousel {
    gap: 8px;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    font-size: 1.7rem;
  }

  .carousel-track,
  .carousel-slide img {
    min-height: 300px;
  }

  .gallery-card.tall {
    min-height: 320px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }
	
  .story-hero h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .story-hero p {
    font-size: 1.05rem;
    line-height: 1.75;
  }
	
  .story-hero {
    padding-bottom: 3rem;
  }

  .story-intro,
  .story-section:first-of-type {
    margin-top: 2rem;
  }
}