:root {
  /* Theme */
  --bg: #f7f8fb;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.7);
  --border: rgba(15, 23, 42, 0.12);

  /* Brand */
  --primary: #2563eb;
  --primary-ink: #0b2a69;
  --primary-soft: rgba(37, 99, 235, 0.12);

  /* Accents */
  --accent: #7c3aed;
  --accent-soft: rgba(124, 58, 237, 0.12);

  /* Layout */
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
  --shadow-sm: 0 8px 20px rgba(2, 6, 23, 0.08);
  --container: 1120px;

  /* Product cards */
  --product-showcase-height: clamp(420px, 50vw, 560px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(124, 58, 237, 0.14), transparent 55%),
    linear-gradient(180deg, #fbfcff, var(--bg) 40%, #ffffff);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transform: translateY(-200%);
  transition: transform 140ms ease;
  z-index: 50;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.muted {
  color: var(--muted);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(247, 248, 251, 0.7);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.site-header .header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 26px;
  width: auto;
  display: block;
}


.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.brand-name {
  font-weight: 650;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.85);
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.07);
  padding: 9px 9px; /* keep size stable with border */
}

.nav-cta {
  background: var(--primary-soft);
  color: var(--primary-ink);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle-lines {
  display: block;
  width: 18px;
  height: 2px;
  position: relative;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 999px;
  box-shadow:
    0 5px 0 rgba(15, 23, 42, 0.85),
    0 -5px 0 rgba(15, 23, 42, 0.85);
}

.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines {
  background: rgba(15, 23, 42, 0.85);
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 999px;
  transition: transform 160ms ease, top 160ms ease, opacity 160ms ease;
}

.nav-toggle-lines::before {
  top: -5px;
}

.nav-toggle-lines::after {
  top: 5px;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.75);
}

.eyebrow::before {
  content: none;
}

.lead {
  font-size: 1.08rem;
  color: rgba(15, 23, 42, 0.78);
  max-width: 60ch;
}

/* Hero */
.hero {
  padding-top: 48px;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/hero-video-poster.jpg");
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 34px;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(420px 260px at 15% 20%, rgba(56, 189, 248, 0.25), transparent 60%),
    radial-gradient(520px 320px at 85% 30%, rgba(168, 85, 247, 0.25), transparent 60%),
    radial-gradient(640px 280px at 60% 85%, rgba(16, 185, 129, 0.22), transparent 65%);
  opacity: 0.7;
}

.hero-banner::before,
.hero-banner::after {
  content: "";
  position: absolute;
  inset: -40% 0 0 0;
  background-image:
    radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.6), transparent 55%),
    radial-gradient(1px 1px at 120px 80px, rgba(255, 255, 255, 0.5), transparent 55%),
    radial-gradient(1px 1px at 220px 140px, rgba(255, 255, 255, 0.6), transparent 55%),
    radial-gradient(1px 1px at 320px 200px, rgba(255, 255, 255, 0.5), transparent 55%),
    radial-gradient(1px 1px at 420px 60px, rgba(255, 255, 255, 0.6), transparent 55%),
    radial-gradient(1px 1px at 520px 160px, rgba(255, 255, 255, 0.55), transparent 55%),
    radial-gradient(1px 1px at 620px 40px, rgba(255, 255, 255, 0.5), transparent 55%),
    radial-gradient(1px 1px at 720px 220px, rgba(255, 255, 255, 0.6), transparent 55%);
  background-size: 760px 280px;
  opacity: 0.6;
  animation: driftStars 40s linear infinite;
}

.hero-banner::after {
  inset: -30% 0 0 0;
  background-size: 520px 220px;
  opacity: 0.35;
  animation-duration: 65s;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.68);
  font-size: 0.9rem;
}

.hero-panel {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -20px -10px -20px -10px;
  background:
    radial-gradient(400px 240px at 60% 30%, rgba(37, 99, 235, 0.25), transparent 60%),
    radial-gradient(340px 240px at 20% 70%, rgba(124, 58, 237, 0.20), transparent 60%);
  filter: blur(10px);
  opacity: 0.9;
}

@keyframes driftStars {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(120px);
  }
}

.hero-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-body {
  padding: 26px 24px;
}

.hero-metrics {
  position: relative;
  display: grid;
  gap: 18px;
  --metric-label-w: clamp(84px, 28%, 132px);
  --metric-gap: 18px;
}

.hero-metrics::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: calc(var(--metric-label-w) + var(--metric-gap));
  width: 2px;
  border-radius: 999px;
  background: #7c3aed;
}

.metric {
  display: grid;
  grid-template-columns: var(--metric-label-w, clamp(84px, 28%, 132px)) 2px 1fr;
  align-items: center;
  column-gap: var(--metric-gap, 18px);
  padding: 6px 0;
}

.metric-label {
  grid-column: 1;
  text-align: right;
  color: rgba(15, 23, 42, 0.65);
  font-size: 0.92rem;
}

.metric-value {
  grid-column: 3;
  font-weight: 650;
  letter-spacing: -0.01em;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.25);
}

.cards-grid .card:nth-child(1) {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(91, 139, 255, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(246, 248, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.cards-grid .card:nth-child(2) {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(116, 165, 255, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(248, 250, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.cards-grid .card:nth-child(3) {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(149, 188, 255, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(250, 251, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.cards-grid .card:nth-child(4) {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(176, 205, 255, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(252, 253, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.card p {
  margin-top: 10px;
  color: rgba(15, 23, 42, 0.78);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 650;
  cursor: pointer;
  user-select: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.22);
}

.button.primary:hover {
  filter: brightness(1.02);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: rgba(15, 23, 42, 0.90);
  border-color: rgba(15, 23, 42, 0.16);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.button.tertiary {
  background: transparent;
  color: rgba(15, 23, 42, 0.86);
  border-color: rgba(15, 23, 42, 0.14);
}

.button.tertiary:hover {
  background: rgba(255, 255, 255, 0.65);
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.product-card--media {
  padding: 18px;
  gap: 16px;
}

.product-content {
  display: grid;
  gap: 12px;
  align-content: start;
}

.volary-liquid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.volary-wave {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(224, 242, 254, 0.85) 0%, transparent 70%);
  border-radius: 40%;
  animation: volary-drift 15s infinite linear;
}

.volary-wave--alt {
  animation: volary-drift 20s infinite linear reverse;
  opacity: 0.55;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.75) 0%, transparent 60%);
}

@keyframes volary-drift {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.volary-showcase {
  position: relative;
  width: 100%;
  height: var(--product-showcase-height);
  background:
    radial-gradient(120% 120% at 80% 20%, rgba(255, 255, 255, 0.22), transparent 55%),
    radial-gradient(140% 110% at 30% 10%, rgba(190, 210, 255, 0.25), transparent 48%),
    linear-gradient(135deg, #0a1e7a, #0b348e 48%, #0f4fb5);
  border-radius: 32px;
  display: flex;
  align-items: center;
  padding: clamp(22px, 4vw, 60px);
  overflow: hidden;
  box-shadow: none;
  border: 0;
}

.volary-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(140% 180% at -10% 50%, rgba(255, 255, 255, 0.38), transparent 45%),
    radial-gradient(140% 180% at 110% 50%, rgba(255, 255, 255, 0.32), transparent 45%);
  mix-blend-mode: screen;
}

.volary-showcase-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  gap: 28px;
  z-index: 2;
  height: 100%;
}

.volary-showcase-content {
  flex: 1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.volary-tagline {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #e0f2fe;
  margin-bottom: 12px;
  display: block;
}

.volary-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
}

.volary-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 340px;
  margin-bottom: 35px;
}

.volary-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #ffffff;
  color: #000080;
  border: 1px solid rgba(10, 30, 122, 0.55);
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-width: 180px;
}

.volary-cta-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 6px rgba(10, 30, 122, 0.12),
    0 0 20px rgba(224, 242, 254, 0.6);
  background: #e0f2fe;
}

.volary-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.volary-phone {
  width: 260px;
  height: 520px;
  background: #111;
  border-radius: 40px;
  border: 8px solid #222;
  position: relative;
  transform: rotateY(-20deg) rotateX(10deg);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
  overflow: hidden;
}

.volary-showcase:hover .volary-phone {
  transform: rotateY(-5deg) rotateX(5deg) scale(1.05);
}

.volary-screen {
  height: 100%;
  background: #f8fafc;
  margin: 5px;
  border-radius: 30px;
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.volary-screen--image {
  padding: 0;
  background: transparent;
}

.volary-screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.volary-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #112c87;
  color: #f8fafc;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 12px;
  gap: 10px;
}

.volary-progress {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.volary-settings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0c1f68;
  padding: 6px 10px;
  border-radius: 12px;
}

.volary-gear {
  font-size: 13px;
}

.volary-set {
  font-weight: 500;
  opacity: 0.75;
}

.volary-level {
  font-weight: 800;
}

.volary-caret {
  width: 14px;
  height: 14px;
  stroke: #f8fafc;
}

.volary-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0;
}

.volary-card {
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.volary-card--blue {
  background: #c9e8ff;
}

.volary-card--green {
  background: #d5f7d2;
}

.volary-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 12px;
  color: #0a1e7a;
}

.volary-card--green .volary-card__top {
  color: #b03023;
}

.volary-card__icon {
  font-size: 13px;
  opacity: 0.8;
}

.volary-card__muted {
  font-size: 11px;
  color: rgba(10, 30, 122, 0.7);
}

.volary-card--green .volary-card__muted {
  color: rgba(176, 48, 35, 0.8);
}

.volary-bottom-nav {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.volary-nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #0a1e7a;
  color: #f8fafc;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.volary-nav-pill {
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #0a1e7a;
  color: #0a1e7a;
  font-weight: 700;
  font-size: 12px;
  background: #f8fafc;
}

.product-heading {
  display: grid;
  gap: 6px;
}

.product-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-kicker::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: currentColor;
}

.product-kicker--volary {
  color: rgba(26, 35, 126, 0.95);
}

.product-kicker--contenium {
  color: rgba(212, 107, 43, 0.95);
}

.product-subtitle {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  font-size: 14px;
}

.product-announcement {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.56);
}

.product-announcement--contenium {
  color: rgba(212, 107, 43, 0.78);
}

.product-announcement--volary {
  color: rgba(15, 23, 42, 0.72);
}

@media (min-width: 880px) {
  .volary-showcase-inner {
    gap: 42px;
  }
}

@media (max-width: 720px) {
  .volary-showcase {
    height: auto;
  }

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

  .volary-description {
    max-width: none;
  }
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -60px -40px auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.18), transparent 62%);
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 0;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card.placeholder::before {
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.16), transparent 62%);
}

.product-card--volary::before {
  content: none;
}

.product-card--volary,
.product-card--contenium {
  border: 1px solid rgba(15, 23, 42, 0.16);
}

.product-card--contenium {
  background: #fff;
  border-radius: 12px;
  display: grid;
  gap: 12px;
  padding: 20px 18px;
}

.product-card--contenium::before {
  content: none;
}

.contenium-showcase {
  width: 100%;
  border-radius: inherit;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  position: relative;
  min-height: var(--product-showcase-height);
  border-radius: 32px;
}

.contenium-content {
  padding: clamp(26px, 3.6vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.contenium-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  color: rgba(28, 25, 23, 0.96);
}

.contenium-description {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(87, 83, 78, 0.95);
  margin: 0 0 26px;
  max-width: 44ch;
}

.contenium-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  color: rgba(212, 107, 43, 0.98);
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  width: fit-content;
  box-shadow: 0 10px 20px -5px rgba(212, 107, 43, 0.15);
  border: 1px solid rgba(212, 107, 43, 0.30);
  transition: transform 200ms ease, filter 200ms ease, box-shadow 200ms ease, background 200ms ease;
  white-space: nowrap;
  min-width: 180px;
}

.contenium-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 6px rgba(212, 107, 43, 0.16), 0 15px 30px -5px rgba(212, 107, 43, 0.20);
}

.contenium-mockup-section {
  background: linear-gradient(135deg, #fdfcf8 0%, #f7f3ed 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 40px);
  overflow: hidden;
}

.contenium-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(212, 107, 43, 1);
  filter: blur(120px);
  opacity: 0.12;
  border-radius: 50%;
  top: 22%;
  right: -12%;
  z-index: 0;
  pointer-events: none;
}

.contenium-mockup {
  width: 100%;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.contenium-ui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.contenium-ui-dots {
  display: flex;
  gap: 6px;
}

.contenium-ui-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
}

.contenium-ui-version {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.5;
}

.contenium-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(87, 83, 78, 0.9);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.contenium-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.contenium-media-item {
  aspect-ratio: 1;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: rgba(0, 0, 0, 0.06);
}

.contenium-media-item--1 {
  background-image: url("../assets/images/contenium-ref-1.jpg");
}

.contenium-media-item--2 {
  background-image: url("../assets/images/contenium-ref-2.jpg");
}

.contenium-media-item--3 {
  background-image: url("../assets/images/contenium-ref-3.jpg");
}

.contenium-media-item--4 {
  background-image: url("../assets/images/contenium-ref-4.jpg");
}

.contenium-timeline {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 18px;
}

.contenium-track {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
}

.contenium-handle {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  background: rgba(212, 107, 43, 0.98);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(212, 107, 43, 0.15);
}

.contenium-handle--a {
  width: 60%;
  left: 0;
}

.contenium-handle--b {
  width: 40%;
  left: 20%;
}

.contenium-handle--c {
  width: 30%;
  left: 55%;
}

.contenium-exports {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contenium-export-pill {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid rgba(212, 107, 43, 0.1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(28, 25, 23, 0.86);
}

@media (max-width: 900px) {
  .contenium-showcase {
    grid-template-columns: 1fr;
  }

  .contenium-content {
    text-align: left;
    align-items: flex-start;
  }

  .contenium-cta {
    margin-top: 0;
    width: 100%;
    max-width: 320px;
  }

  .contenium-description {
    max-width: none;
  }

  .contenium-mockup-section {
    padding: 18px 18px 46px;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contenium-mockup {
    transform: none;
    transition: none;
  }
}

.product-top {
  display: grid;
  gap: 6px;
}

.product-tag {
  color: rgba(15, 23, 42, 0.70);
}

.product-desc {
  color: rgba(15, 23, 42, 0.78);
  max-width: 62ch;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.25);
}

.step::before {
  content: none;
}

.step:nth-child(1) {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(91, 139, 255, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(246, 248, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.step:nth-child(2) {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(116, 165, 255, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(248, 250, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.step:nth-child(3) {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(149, 188, 255, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(250, 251, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.step:nth-child(4) {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(176, 205, 255, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(252, 253, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.step p {
  margin-top: 10px;
  color: rgba(15, 23, 42, 0.78);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.about-copy {
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.about-copy:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.25);
}

.about-copy p + p {
  margin-top: 12px;
}

.facts {
  margin: 0;
  padding: 18px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.facts:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.25);
}

.about-grid > *:nth-child(1) {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(91, 139, 255, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(246, 248, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.about-grid > *:nth-child(2) {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(116, 165, 255, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(248, 250, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.fact {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  align-items: baseline;
}

.fact dt {
  color: rgba(15, 23, 42, 0.62);
  font-weight: 600;
}

.fact dd {
  margin: 0;
  font-weight: 650;
}

/* Contact */
.contact {
  padding-bottom: 84px;
}

.contact-inner {
  background:
    radial-gradient(600px 240px at 15% 30%, rgba(37, 99, 235, 0.12), transparent 62%),
    radial-gradient(520px 240px at 85% 10%, rgba(124, 58, 237, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: calc(var(--radius) + 6px);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.contact-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(249, 115, 22, 0.2);
  border-color: rgba(249, 115, 22, 0.3);
}

.contact-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-meta {
  font-size: 0.96rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 14px;
  margin-top: 16px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  font-weight: 650;
  color: rgba(15, 23, 42, 0.86);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.required-dot {
  color: #c026d3;
  font-size: 0.9em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 12px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: #ffffff;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.form-hint {
  font-size: 0.95rem;
}

.form-status {
  min-height: 22px;
  font-weight: 650;
}

.form-status.success {
  color: #047857;
}

.form-status.error {
  color: #b91c1c;
}

.contact-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.25);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.contact-email-link {
  margin-top: 12px;
}

.contact-email-link a {
  font-weight: 600;
}

.contact-address-label {
  margin-top: 6px;
  margin-bottom: 10px;
}

.contact-address {
  margin-top: 6px;
  line-height: 1.8;
  font-style: normal;
}

.contact-form-standalone {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.contact-form-standalone .form-field {
  display: grid;
  gap: 8px;
}

.contact-form-standalone label {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.72);
}

.contact-form-standalone input,
.contact-form-standalone select,
.contact-form-standalone textarea {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--text);
}

.contact-form-standalone textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-standalone .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-email {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.82);
}

.contact-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 160ms ease, visibility 160ms ease;
  z-index: 60;
}

.contact-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  background: rgba(10, 12, 16, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.55);
  padding: 24px;
  color: #f8fafc;
  overflow: hidden;
}

.contact-modal__dialog.is-success .modal-content {
  opacity: 0;
  pointer-events: none;
}

.contact-modal__dialog.is-success .modal-success {
  opacity: 1;
  pointer-events: auto;
}

.modal-sheen {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 280px at 10% 10%, rgba(129, 140, 248, 0.18), transparent 60%),
    radial-gradient(500px 260px at 90% 15%, rgba(244, 114, 182, 0.18), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.modal-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.contact-modal .muted {
  color: rgba(148, 163, 184, 0.9);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  color: #e2e8f0;
  cursor: pointer;
}

.contact-modal .contact-form {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-modal .form-field {
  position: relative;
  display: grid;
  gap: 8px;
}

.contact-modal .form-field input,
.contact-modal .form-field textarea,
.contact-modal .form-field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 14px;
  padding: 16px;
  color: #f8fafc;
  font-size: 1rem;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.contact-modal .form-field select option {
  background: #1d4ed8;
  color: #ffffff;
}

.contact-modal .form-field select option:checked,
.contact-modal .form-field select option:hover {
  background: #2563eb;
  color: #ffffff;
}

.contact-modal .form-field textarea {
  min-height: 120px;
}

.contact-modal .form-field input:focus,
.contact-modal .form-field textarea:focus,
.contact-modal .form-field select:focus {
  outline: none;
  border-color: rgba(129, 140, 248, 0.6);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.18);
  background: rgba(129, 140, 248, 0.08);
}

.contact-modal .form-field.floating label {
  position: absolute;
  left: 16px;
  top: 16px;
  color: rgba(148, 163, 184, 0.9);
  pointer-events: none;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.contact-modal .form-field.floating input:focus ~ label,
.contact-modal .form-field.floating input:not(:placeholder-shown) ~ label,
.contact-modal .form-field.floating textarea:focus ~ label,
.contact-modal .form-field.floating textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a5b4fc;
  background: #0f141f;
  padding: 0 6px;
  border-radius: 999px;
}

.contact-modal .field-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.9);
}

.contact-modal .required-dot {
  color: #f472b6;
}

.contact-modal .form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.modal-submit {
  background: linear-gradient(135deg, #818cf8, #c084fc);
  border: none;
  box-shadow: 0 16px 30px rgba(129, 140, 248, 0.35);
}

.modal-submit:hover {
  filter: brightness(1.03);
}

.modal-submit.is-loading {
  opacity: 0.85;
}

.loading-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 999px;
  display: none;
  margin-right: 8px;
  animation: spin 0.8s linear infinite;
}

.modal-submit.is-loading .loading-spinner {
  display: inline-block;
}

.modal-submit.is-loading .btn-text {
  opacity: 0.75;
}

.modal-success {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 2;
  padding: 24px;
}

.checkmark-svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: #34d399;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
}

.contact-modal__dialog.is-success .checkmark-svg {
  animation: drawCheck 0.8s cubic-bezier(0.65, 0, 0.45, 1) forwards 0.2s;
}

.modal-secondary {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e2e8f0;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

/* Footer */
.site-footer {
  padding: 24px 0 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.footer-nav a {
  color: rgba(15, 23, 42, 0.76);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
}

.footer-nav a:hover {
  background: rgba(15, 23, 42, 0.06);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .brand-logo {
    height: 18px;
  }

  .container {
    padding: 0 14px;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 12px 12px;
  }

  body[data-nav-open="true"] .site-nav {
    display: flex;
  }

  body[data-nav-open="true"] .nav-toggle-lines::before {
    top: 5px;
    transform: rotate(45deg);
  }

  body[data-nav-open="true"] .nav-toggle-lines::after {
    top: 5px;
    transform: rotate(-45deg);
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

/* Accessibility: keep things calm for reduced motion users */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }

  .hero-video {
    display: none;
  }
}
