/* ============================================================
   ROIX MEDIA — Global Design System
   ============================================================ */

/* ── Fonts: Satoshi (headings) + Inter (body) ─────────────── */
/* Satoshi — Fontshare CDN (no substitution) */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,800,700,500,400&display=swap');
/* Inter — Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,400&display=swap');
/* Material Symbols */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Brand Colours */
  --clr-bg:               #0B0612;
  --clr-surface:          #120A1F;
  --clr-card:             #1A1030;
  --clr-primary:          #A78BFA;
  --clr-primary-light:    #C4B5FD;
  --clr-text:             #FFFFFF;
  --clr-muted:            #C6BCD8;
  /* Tailwind-derived surface stack */
  --clr-surface-low:      #1d1a21;
  --clr-surface-container:#211e25;
  --clr-surface-high:     #2b2930;
  --clr-surface-highest:  #36343b;
  --clr-surface-lowest:   #0f0d14;
  /* Typography — EXACT FONTS, NO SUBSTITUTION */
  --ff-heading: 'Satoshi', sans-serif;   /* Headings: Satoshi Bold */
  --ff-base:    'Inter', sans-serif;     /* Body: Inter */
  /* Motion */
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-premium:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-base);     /* Inter — body text */
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga' 1, 'kern' 1;
}

/* ── Keyboard Focus Outline ── */
:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 4px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.25);
}

/* ── Accessibility Skip Link ── */
.skip-link {
  position: fixed;
  top: -100px;
  left: 24px;
  background: var(--clr-primary);
  color: #1A1030;
  padding: 12px 24px;
  z-index: 99999;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: top 0.25s var(--ease-out-quint);
  box-shadow: 0 12px 32px rgba(167, 139, 250, 0.35);
}
.skip-link:focus-visible {
  top: 24px;
  outline: 3px solid var(--clr-primary-light);
  outline-offset: 4px;
}

/* ── Heading Font Assignment (Satoshi Bold) ───────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Ensure buttons, nav, labels also use correct family */
.btn                  { font-family: var(--ff-base); }
.nav__link            { font-family: var(--ff-base); }
.nav__mobile-link     { font-family: var(--ff-base); }
.badge                { font-family: var(--ff-base); }
.footer__link         { font-family: var(--ff-base); }
.form-label           { font-family: var(--ff-base); }
.text-label           { font-family: var(--ff-base); }

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, textarea, select { font-family: inherit; }

::selection {
  background: var(--clr-primary);
  color: #1A1030;
}

/* ── Typography Scale (Satoshi headings / Inter body) ────── */

/* DISPLAY — Hero headings — Satoshi Bold */
.text-display-lg {
  font-family: var(--ff-heading);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
}
/* DISPLAY MD — Page hero headings — Satoshi Bold */
.text-display-md {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
/* HEADLINE — Section headings — Satoshi Bold */
.text-headline {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
}
/* TITLE — Card headings — Satoshi Medium */
.text-title {
  font-family: var(--ff-heading);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.015em;
}
/* BODY LG — Lead paragraphs — Inter Regular */
.text-body-lg {
  font-family: var(--ff-base);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}
/* BODY — Standard text — Inter Regular */
.text-body {
  font-family: var(--ff-base);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
/* LABEL — Caps labels — Inter SemiBold */
.text-label {
  font-family: var(--ff-base);
  font-size: 13px;
  line-height: 1.43;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5.5vw, 80px);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 10, 31, 0.6);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s var(--ease-premium);
}
.nav.scrolled {
  background: rgba(11, 6, 18, 0.85);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  /* Preserve natural aspect ratio of uploaded logo PNG */
  display: block;
}

.nav__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-primary-light);
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease-premium);
  position: relative;
  padding-bottom: 3px;
}
/* Underline slides in from left on hover */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-light));
  border-radius: 2px;
  transition: width 0.35s var(--ease-out-quint);
}
.nav__link:hover,
.nav__link.active {
  color: var(--clr-primary-light);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}
.nav__cta {
  background: var(--clr-primary);
  color: #1A1030;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: 999px;
  transition:
    transform   0.4s var(--ease-out-quint),
    box-shadow  0.4s var(--ease-out-quint);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.3),
    0 0 0px rgba(167,139,250,0);
}
.nav__cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 4px 14px rgba(0,0,0,0.2),
    0 0  22px rgba(167,139,250,0.45);
}
.nav__cta:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.15s;
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--clr-primary-light);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-quint);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(18, 10, 31, 0.98);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 16px 24px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out-quint), padding 0.4s;
}
.nav__mobile-menu.open {
  max-height: 400px;
  display: flex;
}
.nav__mobile-link {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-muted);
  transition: color 0.2s, background 0.2s;
  border-radius: 8px;
  margin-inline: 12px;
}
.nav__mobile-link:hover,
.nav__mobile-link.active {
  color: var(--clr-primary-light);
  background: rgba(167, 139, 250, 0.08);
}
.nav__mobile-cta {
  margin: 12px 24px 0;
  text-align: center;
  padding: 12px;
  background: var(--clr-primary);
  color: #1A1030;
  font-weight: 700;
  border-radius: 999px;
  font-size: 15px;
}

/* Mobile menu logo header */
.nav__mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}
.nav__mobile-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.nav__mobile-logo span {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-primary-light);
  letter-spacing: -0.01em;
}

/* ── Glass Card — Hover Lift + Border Glow (0.45s) ──────────── */
.glass-card {
  background: rgba(26, 16, 48, 0.5);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(196, 181, 253, 0.18);
  /* 0.45s — card feels premium, not sluggish */
  transition:
    border-color  0.45s var(--ease-out-quint),
    box-shadow    0.45s var(--ease-out-quint),
    transform     0.45s var(--ease-out-quint),
    background    0.45s var(--ease-out-quint);
  perspective: 1000px;   /* enables 3D tilt from JS */
  transform-style: preserve-3d;
}
.glass-card:hover {
  border-color: rgba(167, 139, 250, 0.28);
  border-top-color: rgba(196, 181, 253, 0.35);
  box-shadow:
    0  8px 32px -8px  rgba(0,0,0,0.45),
    0  0   24px  0px  rgba(167,139,250,0.06),
    inset 0 0 20px    rgba(167,139,250,0.03);
}

/* Lift variant — translateY on hover */
.glass-card--lift {
  cursor: default;
}
.glass-card--lift:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 48px -12px rgba(0,0,0,0.55),
    0  0   32px  0px  rgba(167,139,250,0.10),
    inset 0 0   24px  rgba(167,139,250,0.04);
  border-color: rgba(167, 139, 250, 0.35);
  border-top-color: rgba(196, 181, 253, 0.45);
}

/* Dynamic mouse-spotlight for glass cards */
.glass-card[data-spotlight="true"] {
  position: relative;
  overflow: hidden;
}

/* ── Orchid Glow ──────────────────────────────────────────── */
.orchid-glow {
  position: absolute;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  animation: glowPulse 8s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.12); }
}

/* ── Cursor Glow ──────────────────────────────────────────── */
#cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.3s;
}

/* ── Scroll Reveal — Fade In + Slide Up ────────────────────── */
/*
  Three directions: default (up), --right, --left, --scale
  Duration: 0.5s  |  Easing: var(--ease-out-quint)
  DO NOT increase duration beyond 0.6s (premium SaaS rule)
*/
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  0.5s var(--ease-out-quint),
    transform 0.5s var(--ease-out-quint);
  will-change: opacity, transform;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from right */
.reveal--right {
  transform: translateX(28px);
  opacity: 0;
}
.reveal--right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from left */
.reveal--left {
  transform: translateX(-28px);
  opacity: 0;
}
.reveal--left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Scale fade (for badges, chips, icons) */
.reveal--scale {
  transform: scale(0.94) translateY(12px);
  opacity: 0;
}
.reveal--scale.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Stagger utility delays (JS also sets these dynamically) */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ── Float — Hero visual only (subtle) ──────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.float-slow   { animation: float 7s ease-in-out infinite; }
.float-medium { animation: float 5s ease-in-out infinite; }
.float-fast   { animation: float 3.5s ease-in-out infinite; }

/* ── Shimmer Effect ───────────────────────────────────────── */
@keyframes shimmer {
  0%   { left: -100%; }
  20%  { left: 150%; }
  100% { left: 150%; }
}
.shimmer-parent { position: relative; overflow: hidden; }
.shimmer-parent::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-25deg);
  animation: shimmer 4.5s infinite;
}

/* ── Button Variants — Hover Glow (0.4s) ──────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-base);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 14px 32px;
  transition: all 0.25s var(--ease-premium);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--clr-primary);
  color: #1A1030;
  box-shadow: 0 0 0 rgba(167, 139, 250, 0);
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 32px rgba(167, 139, 250, 0.45);
}
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--clr-text);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(167, 139, 250, 0.4);
  transform: scale(1.03);
}
.btn-outline:active { transform: scale(0.97); }

/* ── Badge / Chip ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.22);
  color: var(--clr-primary-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge .material-symbols-outlined { font-size: 16px; }

/* ── Stat Numbers ─────────────────────────────────────────── */
.stat-number {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--clr-primary-light);
  line-height: 1;
}

/* ── Section Utilities ────────────────────────────────────── */
.section-gap { padding-block: clamp(80px, 10vw, 160px); }
.section-gap-sm { padding-block: clamp(48px, 6vw, 96px); }

/* ── Divider Lines ────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(167,139,250,0.3), transparent);
}

/* ── Icon Boxes — Hover micro-animation (0.4s) ────────────── */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(167, 139, 250, 0.10);
  border: 1px solid rgba(167, 139, 250, 0.12);
  color: var(--clr-primary-light);
  flex-shrink: 0;
  transition:
    background   0.4s var(--ease-out-quint),
    border-color 0.4s var(--ease-out-quint),
    transform    0.4s var(--ease-out-quint),
    box-shadow   0.4s var(--ease-out-quint);
}
.glass-card:hover .icon-box,
.icon-box:hover {
  background: rgba(167, 139, 250, 0.18);
  border-color: rgba(167, 139, 250, 0.3);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 0 14px rgba(167, 139, 250, 0.25);
}
.icon-box--lg {
  width: 64px; height: 64px;
  border-radius: 18px;
}
.icon-box .material-symbols-outlined {
  font-size: 24px;
  transition: transform 0.4s var(--ease-out-quint);
}
.icon-box--lg .material-symbols-outlined { font-size: 32px; }

/* ── Material Icons Global ────────────────────────────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
  line-height: 1;
  vertical-align: middle;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--clr-surface-lowest);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: clamp(60px, 8vw, 120px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer__logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-primary-light);
}
.footer__desc {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.7;
}
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__link {
  font-size: 14px;
  color: var(--clr-muted);
  transition: color 0.2s;
  text-decoration: none;
}
.footer__link:hover { color: var(--clr-primary-light); }
.footer__bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 12px;
  color: rgba(184, 176, 200, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--clr-muted);
  transition: all 0.2s;
}
.footer__social-link:hover {
  color: var(--clr-primary-light);
  border-color: rgba(167,139,250,0.4);
  background: rgba(167,139,250,0.08);
}

/* ── Input Focus Styles ───────────────────────────────────── */
.form-field {
  width: 100%;
  background: rgba(26, 16, 48, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--clr-text);
  font-family: var(--ff-base);
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.form-field::placeholder { color: rgba(184,176,200,0.5); }
.form-field:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.15);
}

/* ── Progress / Step Connector ────────────────────────────── */
.step-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 1px;
  background: linear-gradient(to right, rgba(167,139,250,0.4), rgba(167,139,250,0.1));
}

/* ── Page Hero Shared ─────────────────────────────────────── */
.page-hero {
  padding-top: clamp(120px, 14vw, 180px);
  padding-bottom: clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}

/* ── Gradient text ────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Newsletter Input ─────────────────────────────────────── */
.newsletter-wrap {
  position: relative;
  display: flex;
}
.newsletter-wrap input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 12px 52px 12px 20px;
  color: var(--clr-text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s;
}
.newsletter-wrap input:focus {
  border-color: var(--clr-primary);
}
.newsletter-wrap button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  background: var(--clr-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #1A1030;
  font-size: 18px;
  transition: all 0.2s;
}
.newsletter-wrap button:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM — ROIX MEDIA
   Breakpoints: 1920 | 1440 | 1024 | 768 | 480 | 375 | 320
   ══════════════════════════════════════════════════════════════ */

/* ── 1920px — Ultra-wide / 4K monitors ────────────────────── */
@media (min-width: 1920px) {
  .container {
    max-width: 1680px;
    padding-inline: 80px;
  }
  .section-gap    { padding-block: 180px; }
  .section-gap-sm { padding-block: 100px; }
}

/* ── 1440px — Large desktop ───────────────────────────────── */
@media (min-width: 1440px) and (max-width: 1919px) {
  .container { max-width: 1360px; }
}

/* ── 1024px — Tablet landscape / small desktop ────────────── */
@media (max-width: 1024px) {
  .container { padding-inline: clamp(20px, 4vw, 48px); }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Nav */
  .nav__inner { padding-block: 16px; }
}

/* ── 768px — Tablet portrait ──────────────────────────────── */
@media (max-width: 768px) {
  /* Container */
  .container { padding-inline: 24px; }

  /* Nav — show hamburger, hide desktop links */
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding-block: 14px; }
  .nav__logo img { height: 36px; }

  /* Mobile menu improvements */
  .nav__mobile-menu {
    max-height: none;
    padding-block: 0 20px;
  }
  .nav__mobile-logo { padding: 16px 20px 14px; }
  .nav__mobile-link { padding: 13px 20px; margin-inline: 8px; font-size: 15px; }
  .nav__mobile-cta  { margin: 10px 20px 0; font-size: 14px; }

  /* Section spacing */
  .section-gap    { padding-block: clamp(56px, 8vw, 80px); }
  .section-gap-sm { padding-block: clamp(36px, 5vw, 56px); }

  /* Footer */
  .footer { padding-block: clamp(48px, 8vw, 80px); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer__bottom .footer__social { justify-content: center; }

  /* Buttons */
  .btn { padding: 13px 26px; font-size: 13px; }

  /* Page hero */
  .page-hero {
    padding-top: clamp(100px, 14vw, 140px);
    padding-bottom: clamp(40px, 6vw, 80px);
  }
}

/* ── 480px — Large mobile ─────────────────────────────────── */
@media (max-width: 480px) {
  /* Container */
  .container { padding-inline: 16px; }

  /* Section spacing */
  .section-gap    { padding-block: 48px; }
  .section-gap-sm { padding-block: 32px; }

  /* Footer: collapse to 1 column */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding-block: 48px; }
  .footer__bottom { margin-top: 40px; }

  /* Buttons — full width on tiny screens */
  .btn { padding: 14px 20px; width: 100%; justify-content: center; }

  /* Badges */
  .badge { font-size: 11px; padding: 5px 12px; }

  /* Stats */
  .stat-number { font-size: 36px; }

  /* Page hero */
  .page-hero {
    padding-top: 96px;
    padding-bottom: 40px;
  }

  /* Mobile logo */
  .nav__mobile-logo img { height: 32px; }
  .nav__mobile-logo span { font-size: 15px; }
}

/* ── 375px — iPhone standard ──────────────────────────────── */
@media (max-width: 375px) {
  /* Container */
  .container { padding-inline: 14px; }

  /* Nav logo */
  .nav__logo img { height: 32px; }
  .nav__logo-text { font-size: 16px; }

  /* Typography scale down */
  .text-display-lg { font-size: 32px; line-height: 1.1; }
  .text-display-md { font-size: 26px; line-height: 1.15; }
  .text-headline   { font-size: 22px; line-height: 1.2; }
  .text-title      { font-size: 18px; }
  .text-body-lg    { font-size: 16px; }

  /* Section spacing */
  .section-gap    { padding-block: 40px; }
  .section-gap-sm { padding-block: 28px; }

  /* Buttons */
  .btn { padding: 13px 18px; font-size: 13px; gap: 6px; }

  /* Form fields */
  .form-field { padding: 12px 14px; font-size: 14px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding-block: 40px; }
  .footer__logo-text { font-size: 16px; }
  .footer__bottom { margin-top: 32px; }
}

/* ── 320px — Smallest supported viewport ─────────────────── */
@media (max-width: 320px) {
  .container { padding-inline: 12px; }

  .text-display-lg { font-size: 28px; }
  .text-display-md { font-size: 24px; }
  .text-headline   { font-size: 20px; }

  .section-gap    { padding-block: 36px; }
  .section-gap-sm { padding-block: 24px; }

  .nav__logo-text { display: none; }   /* logo only at 320 */
  .nav__inner { padding-block: 12px; }

  .btn { padding: 12px 16px; font-size: 12px; }

  .footer { padding-block: 36px; }
}

/* ── Touch device — disable hover effects ─────────────────── */
@media (hover: none) {
  .glass-card:hover        { transform: none; box-shadow: none; }
  .glass-card--lift:hover  { transform: none; }
  .btn-primary:hover       { transform: none; }
  .btn-outline:hover       { transform: none; }
  .nav__cta:hover          { transform: none; }
  .step:hover .step__num   { transform: none; }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .orchid-glow { animation: none; }
  .float-slow, .float-medium, .float-fast { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Responsive Layout Audits & Helper Classes ─────────────────── */

/* Responsive Creator Hero Grid (Creator Services) */
.creator-hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}

/* Responsive Process Two-Column Grid (Business Growth) */
.process-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Responsive Vision Logo Card (About) */
.vision-logo-card {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,16,48,0.8) 0%, rgba(167,139,250,0.1) 50%, rgba(11,6,18,0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
}

/* Responsive Vision Statement Card (About) */
.vision-statement-card {
  border-radius: 28px;
  padding: 56px;
}

/* Breakpoint overrides */
@media (max-width: 1024px) {
  .process-two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 960px) {
  .creator-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .vision-logo-card {
    padding: 24px;
    gap: 16px;
  }
  .vision-statement-card {
    padding: 28px 24px;
    border-radius: 20px;
  }
}

