@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --color-accent: #c9a227;
  --color-accent-hover: #b08f1f;
  --color-accent-soft: rgba(201, 162, 39, 0.15);
  --color-dark: #f1f5f9;
  --color-bg: #0c1017;
  --color-bg-alt: #141b27;
  --color-bg-card: #1a2332;
  --color-text: #f1f5f9;
  --color-text-muted: #cbd5e1;
  --color-text-subtle: #94a3b8;
  --color-border: #334155;
  --color-header-bg: #0c1017;
  --color-shadow: rgba(0, 0, 0, 0.35);
  --color-shadow-lg: rgba(0, 0, 0, 0.5);
  --hero-overlay-start: rgba(5, 8, 15, 0.88);
  --hero-overlay-mid: rgba(5, 8, 15, 0.65);
  --hero-overlay-end: rgba(5, 8, 15, 0.82);
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Freedom theme colors */
  --theme-tech: #00e676;
  --theme-tech-bright: #39ff14;
  --theme-tech-soft: rgba(0, 230, 118, 0.15);
  --theme-tech-glow: rgba(57, 255, 20, 0.35);
  --theme-finance: #f59e0b;
  --theme-finance-bright: #fb923c;
  --theme-finance-soft: rgba(245, 158, 11, 0.15);
  --theme-finance-glow: rgba(251, 146, 60, 0.35);
  --theme-territorial: #00b8ff;
  --theme-territorial-bright: #00d4ff;
  --theme-territorial-soft: rgba(0, 212, 255, 0.14);
  --theme-territorial-glow: rgba(0, 212, 255, 0.5);
  --theme-territorial-neon: rgba(0, 234, 255, 0.85);
  --theme-human: #ef4444;
  --theme-human-bright: #f87171;
  --theme-human-soft: rgba(239, 68, 68, 0.15);
  --theme-human-glow: rgba(248, 113, 113, 0.35);
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  color-scheme: dark;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
}

.font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ── Layout ── */

.site-header {
  background-color: var(--color-header-bg);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px var(--color-shadow);
}

.site-header-bar {
  border-color: var(--color-border);
}

.site-footer {
  background-color: #0f1419;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
}

/* ── Typography helpers ── */

.text-heading { color: var(--color-text); }
.text-body { color: var(--color-text-muted); }
.text-subtle { color: var(--color-text-subtle); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--label-color, var(--color-accent));
}

.section-label--tech { color: var(--theme-tech); --label-color: var(--theme-tech); }
.section-label--finance { color: var(--theme-finance); --label-color: var(--theme-finance); }
.section-label--territorial { color: var(--theme-territorial); --label-color: var(--theme-territorial); }
.section-label--human { color: var(--theme-human); --label-color: var(--theme-human); }

.text-theme-tech { color: var(--theme-tech-bright); }
.text-theme-finance { color: var(--theme-finance-bright); }
.text-theme-territorial { color: var(--theme-territorial-bright); }
.text-theme-human { color: var(--theme-human-bright); }

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.15;
}

/* ── Buttons ── */

.btn-primary {
  display: inline-block;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 0.625rem;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.4);
}

.btn-primary--tech {
  background-color: var(--theme-tech);
  color: #0a0f0d;
}

.btn-primary--tech:hover {
  background-color: var(--theme-tech-bright);
  box-shadow: 0 8px 28px var(--theme-tech-glow);
}

.btn-primary--territorial {
  background-color: var(--theme-territorial);
  color: #fff;
}

.btn-primary--territorial:hover {
  background-color: var(--theme-territorial-bright);
  box-shadow: 0 8px 28px var(--theme-territorial-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-weight: 500;
  transition: color 0.2s ease, gap 0.2s ease;
}

.btn-ghost:hover {
  color: var(--color-accent);
  gap: 0.75rem;
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease,
              transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-secondary:hover {
  color: var(--color-accent);
  border-color: rgba(201, 162, 39, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.2);
}

.btn-secondary.is-copied {
  color: var(--theme-tech-bright);
  border-color: rgba(0, 230, 118, 0.5);
  box-shadow: 0 8px 28px var(--theme-tech-glow);
}

/* ── Header controls ── */

.header-btn {
  color: var(--color-text-muted);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header-btn:hover {
  color: var(--color-accent);
  background-color: var(--color-bg-alt);
}

/* ── Navigation ── */

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
}

.nav-link--tech:hover,
.nav-link--tech.active {
  color: var(--theme-tech);
}

.nav-link--territorial:hover,
.nav-link--territorial.active {
  color: var(--theme-territorial);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--nav-underline, var(--color-accent));
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link--tech { --nav-underline: var(--theme-tech); }
.nav-link--territorial { --nav-underline: var(--theme-territorial); }

.nav-link__icon {
  width: 0.9rem;
  height: 0.9rem;
  opacity: 0.85;
}

.nav-link--tech .nav-link__icon { color: var(--theme-tech); }
.nav-link--territorial .nav-link__icon { color: var(--theme-territorial); }

/* ── Heroes ── */

.hero-overlay {
  background: linear-gradient(
    135deg,
    var(--hero-overlay-start) 0%,
    var(--hero-overlay-mid) 50%,
    var(--hero-overlay-end) 100%
  );
}

.nav-banner {
  background-image: url('../images/headline-tone-without-logo.jpg');
  background-size: cover;
  background-position: center 40%;
}

.home-hero {
  background-image: url('../images/headline-tone-without-logo.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(0, 230, 118, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 50% 90%, rgba(245, 158, 11, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 85% 75%, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.freedom-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.freedom-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}

.freedom-strip__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
  flex-shrink: 0;
}

.freedom-strip__dot svg {
  width: 1rem;
  height: 1rem;
}

.freedom-strip__dot--tech {
  background: var(--theme-tech-soft);
  color: var(--theme-tech-bright);
  box-shadow: 0 0 12px var(--theme-tech-glow);
}

.freedom-strip__dot--finance {
  background: var(--theme-finance-soft);
  color: var(--theme-finance-bright);
  box-shadow: 0 0 12px var(--theme-finance-glow);
}

.freedom-strip__dot--territorial {
  background: var(--theme-territorial-soft);
  color: var(--theme-territorial-bright);
  box-shadow: 0 0 12px var(--theme-territorial-glow);
}

.freedom-strip__dot--human {
  background: var(--theme-human-soft);
  color: var(--theme-human-bright);
  box-shadow: 0 0 12px var(--theme-human-glow);
}

.page-hero {
  background-image: url('../images/backround-colors.jpg');
  background-size: cover;
  background-position: center;
}

.section-alt {
  background-color: var(--color-bg-alt);
  border-color: var(--color-border);
}

/* ── AI page premium ── */

.ai-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.ai-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, var(--theme-tech-soft) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0, 230, 118, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-ai .section-label { color: var(--theme-tech); --label-color: var(--theme-tech); }
.page-ai .feature-card__icon { background: var(--theme-tech-soft); color: var(--theme-tech); }
.page-ai .feature-card:hover { border-color: rgba(0, 230, 118, 0.4); }
.page-ai .feature-card:hover .feature-card__icon { background: rgba(0, 230, 118, 0.25); color: var(--theme-tech-bright); }
.page-ai .step-number { color: var(--theme-tech); }
.page-ai .step-card:hover { border-color: rgba(0, 230, 118, 0.35); }
.page-ai .benefit-card__check { background: var(--theme-tech-soft); color: var(--theme-tech); }
.page-ai .benefit-card:hover { border-color: rgba(0, 230, 118, 0.35); }
.page-ai .ai-hero__frame { border-color: rgba(0, 230, 118, 0.25); }
.page-ai .ai-hero__frame:hover { box-shadow: 0 32px 80px var(--theme-tech-glow); }
.page-ai .cta-panel::before { background: radial-gradient(ellipse 60% 80% at 50% 100%, var(--theme-tech-soft) 0%, transparent 70%); }

/* ── Nomad page ── */

.nomad-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.nomad-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, var(--theme-territorial-soft) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0, 184, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-nomad .section-label { color: var(--theme-territorial); --label-color: var(--theme-territorial); }
.page-nomad .nomad-video-frame { border-color: rgba(0, 212, 255, 0.25); }
.page-nomad .nomad-video-frame:hover { box-shadow: 0 32px 80px var(--theme-territorial-glow); }
.page-nomad .cta-panel::before { background: radial-gradient(ellipse 60% 80% at 50% 100%, var(--theme-territorial-soft) 0%, transparent 70%); }

.nomad-video-frame {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 64px var(--color-shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.nomad-video-frame:hover {
  transform: translateY(-4px);
}

.nomad-video-frame__inner {
  position: relative;
  border-radius: calc(var(--radius-xl) - 0.5rem);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-bg);
}

.nomad-video-frame__video,
.nomad-video-frame__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nomad-video-frame__poster {
  display: none;
}

.nomad-sound-btn {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(12, 16, 23, 0.82);
  color: var(--theme-territorial-bright);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nomad-sound-btn:hover {
  background: rgba(12, 16, 23, 0.95);
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 0 16px var(--theme-territorial-glow);
}

.nomad-sound-btn__icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.nomad-sound-btn__icon--unmuted {
  display: none;
}

.nomad-sound-btn.is-unmuted .nomad-sound-btn__icon--muted {
  display: none;
}

.nomad-sound-btn.is-unmuted .nomad-sound-btn__icon--unmuted {
  display: block;
}

.ai-hero__frame {
  position: relative;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 64px var(--color-shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.ai-hero__frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px var(--color-shadow-lg);
}

.ai-hero__icon-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 3rem;
  width: auto;
}

.ai-hero__icon-frame .symbol-icon {
  filter: drop-shadow(0 12px 32px var(--theme-tech-glow));
}

.ai-hero__icon-frame:hover .symbol-icon,
.ai-hero__icon-frame:focus-within .symbol-icon {
  transform: scale(1.05);
  filter: drop-shadow(0 16px 48px var(--theme-tech-glow));
}

.feature-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--color-shadow);
  border-color: rgba(201, 162, 39, 0.35);
}

.feature-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.08);
  background: rgba(201, 162, 39, 0.2);
}

.feature-card__icon svg,
.feature-card__icon-img {
  width: 1.75rem;
  height: 1.75rem;
}

.page-ai .feature-card:hover .feature-card__icon-img {
  filter: drop-shadow(0 0 8px var(--theme-tech-glow));
}

.step-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--color-shadow);
  border-color: rgba(201, 162, 39, 0.3);
}

.step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.9;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--color-shadow);
  border-color: rgba(201, 162, 39, 0.3);
}

.benefit-card__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.benefit-card__check svg {
  width: 1rem;
  height: 1rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  border-radius: var(--radius-xl);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  text-align: center;
}

.cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, var(--color-accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

/* ── Animated symbol icons ── */

.symbol-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.symbol-icon--sm {
  width: 5.625rem;
  height: 5.625rem;
}

.symbol-icon--lg {
  width: 8.25rem;
  height: 8.25rem;
}

.symbol-icon--xl {
  width: 12rem;
  height: 12rem;
}

.symbol-icon--hero {
  width: min(16rem, 70vw);
  height: min(16rem, 70vw);
}

.symbol-icon__static,
.symbol-icon__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.symbol-icon__static {
  transition: opacity 0.2s ease;
}

.symbol-icon__video {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.symbol-icon.is-playing .symbol-icon__static {
  opacity: 0;
}

.symbol-icon.is-playing .symbol-icon__video {
  opacity: 1;
}

.pillar-list__symbol--animated {
  background: transparent;
  overflow: visible;
}

.pillar-list__symbol--animated .symbol-icon {
  width: 100%;
  height: 100%;
}

/* ── Vision page ── */

.vision-quote {
  position: relative;
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--color-bg-alt);
}

.vision-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-text);
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pillar-list__item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.pillar-list__symbol {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 0.625rem;
  background: var(--symbol-bg, var(--color-accent-soft));
  color: var(--symbol-color, var(--color-accent));
}

.pillar-list__symbol--finance,
.pillar-list__symbol--human {
  width: 7.5rem;
  height: 7.5rem;
}

.pillar-list__symbol--tech {
  --symbol-bg: var(--theme-tech-soft);
  --symbol-color: var(--theme-tech);
  box-shadow: 0 0 14px var(--theme-tech-glow);
}

.pillar-list__symbol--finance {
  --symbol-bg: var(--theme-finance-soft);
  --symbol-color: var(--theme-finance);
  box-shadow: 0 0 14px var(--theme-finance-glow);
}

.pillar-list__symbol--territorial {
  --symbol-bg: var(--theme-territorial-soft);
  --symbol-color: var(--theme-territorial);
  box-shadow: 0 0 14px var(--theme-territorial-glow);
}

.pillar-list__symbol--human {
  --symbol-bg: var(--theme-human-soft);
  --symbol-color: var(--theme-human);
  box-shadow: 0 0 14px var(--theme-human-glow);
}

.pillar-list__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pillar-color, var(--color-text));
  line-height: 1.3;
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.pillar-list__item--tech .pillar-list__text { --pillar-color: var(--theme-tech); }
.pillar-list__item--finance .pillar-list__text { --pillar-color: var(--theme-finance); }
.pillar-list__item--territorial .pillar-list__text { --pillar-color: var(--theme-territorial); }
.pillar-list__item--human .pillar-list__text { --pillar-color: var(--theme-human); }

.pillar-list__item--tech .pillar-list__symbol:hover + .pillar-list__text,
.pillar-list__item--tech .pillar-list__symbol:focus-within + .pillar-list__text {
  color: var(--theme-tech-bright);
  text-shadow: 0 0 12px var(--theme-tech-glow), 0 0 28px var(--theme-tech-glow);
}

.pillar-list__item--finance .pillar-list__symbol:hover + .pillar-list__text,
.pillar-list__item--finance .pillar-list__symbol:focus-within + .pillar-list__text {
  color: var(--theme-finance-bright);
  text-shadow: 0 0 12px var(--theme-finance-glow), 0 0 28px var(--theme-finance-glow);
}

.pillar-list__item--territorial .pillar-list__symbol:hover + .pillar-list__text,
.pillar-list__item--territorial .pillar-list__symbol:focus-within + .pillar-list__text {
  color: var(--theme-territorial-bright);
  text-shadow: 0 0 12px var(--theme-territorial-glow), 0 0 28px var(--theme-territorial-neon);
}

.pillar-list__item--human .pillar-list__symbol:hover + .pillar-list__text,
.pillar-list__item--human .pillar-list__symbol:focus-within + .pillar-list__text {
  color: var(--theme-human-bright);
  text-shadow: 0 0 12px var(--theme-human-glow), 0 0 28px var(--theme-human-glow);
}

/* ── Service cards ── */

.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  padding: 2.5rem 2rem;
  min-height: 360px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease,
              background-color 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 24px 56px var(--color-shadow-lg);
  border-color: rgba(201, 162, 39, 0.4);
}

.service-card--tech::before {
  background: linear-gradient(135deg, var(--theme-tech-soft) 0%, transparent 60%);
}

.service-card--tech:hover,
.service-card--tech:focus-within {
  border-color: rgba(0, 230, 118, 0.45);
  box-shadow: 0 24px 56px var(--theme-tech-glow);
}

.service-card--tech .service-card__icon { color: var(--theme-tech); }
.service-card--tech:hover .service-card__icon,
.service-card--tech:focus-within .service-card__icon {
  color: var(--theme-tech-bright);
  filter: drop-shadow(0 0 10px var(--theme-tech-glow));
}

.service-card--tech:hover .service-card__icon.symbol-icon,
.service-card--tech:focus-within .service-card__icon.symbol-icon {
  filter: drop-shadow(0 0 12px var(--theme-tech-glow));
}
.service-card--tech .service-card__arrow { color: var(--theme-tech); }
.service-card--tech:hover .service-card__arrow,
.service-card--tech:focus-within .service-card__arrow { color: var(--theme-tech-bright); }

.service-card--territorial::before {
  background: linear-gradient(135deg, var(--theme-territorial-soft) 0%, transparent 60%);
}

.service-card--territorial:hover,
.service-card--territorial:focus-within {
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 24px 56px var(--theme-territorial-glow),
              0 0 40px rgba(0, 212, 255, 0.2);
}

.service-card--territorial .service-card__icon { color: var(--theme-territorial); }
.service-card--territorial:hover .service-card__icon,
.service-card--territorial:focus-within .service-card__icon {
  color: var(--theme-territorial-bright);
  filter: drop-shadow(0 0 10px var(--theme-territorial-neon));
}

.service-card--territorial:hover .service-card__icon.symbol-icon,
.service-card--territorial:focus-within .service-card__icon.symbol-icon {
  filter: drop-shadow(0 0 12px var(--theme-territorial-neon));
}
.service-card--territorial .service-card__arrow { color: var(--theme-territorial); }
.service-card--territorial:hover .service-card__arrow,
.service-card--territorial:focus-within .service-card__arrow { color: var(--theme-territorial-bright); }

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
}

.service-card__icon {
  color: var(--color-text-subtle);
  transition: transform 0.35s ease, color 0.35s ease, filter 0.35s ease;
}

.service-card__icon.symbol-icon {
  width: 8rem;
  height: 8rem;
}

.service-card__title {
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.service-card--tech:hover .service-card__title,
.service-card--tech:focus-within .service-card__title {
  color: var(--theme-tech-bright);
  text-shadow: 0 0 12px var(--theme-tech-glow), 0 0 28px var(--theme-tech-glow);
}

.service-card--territorial:hover .service-card__title,
.service-card--territorial:focus-within .service-card__title {
  color: var(--theme-territorial-bright);
  text-shadow: 0 0 12px var(--theme-territorial-glow), 0 0 28px var(--theme-territorial-neon);
}

.service-card:hover .service-card__icon.symbol-icon,
.service-card:focus-within .service-card__icon.symbol-icon {
  transform: scale(1.1);
}

.service-card__description {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease,
              transform 0.35s ease,
              margin-top 0.35s ease;
  margin-top: 0;
}

.service-card:hover .service-card__description,
.service-card:focus-within .service-card__description {
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 1rem;
}

.service-card__arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-card__arrow,
.service-card:focus-within .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

@keyframes neon-breathe {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.55))
            drop-shadow(0 0 16px rgba(0, 180, 255, 0.25));
    transform: scale(1.1);
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(0, 234, 255, 0.95))
            drop-shadow(0 0 32px rgba(0, 200, 255, 0.55))
            drop-shadow(0 0 48px rgba(0, 160, 255, 0.3));
    transform: scale(1.14);
  }
}

/* ── Contact page ── */

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
}

.contact-card:hover,
.contact-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px var(--color-shadow-lg);
  border-color: rgba(201, 162, 39, 0.35);
}

.contact-card__icon-wrap {
  margin-bottom: 2rem;
}

.contact-card__icon-wrap .symbol-icon {
  filter: drop-shadow(0 8px 24px rgba(201, 162, 39, 0.15));
}

.contact-card:hover .contact-card__icon-wrap .symbol-icon,
.contact-card:focus-within .contact-card__icon-wrap .symbol-icon {
  filter: drop-shadow(0 12px 32px rgba(201, 162, 39, 0.3));
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.copy-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 230, 118, 0.4);
  color: var(--theme-tech-bright);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 12px 40px var(--color-shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Scroll animations ── */

.reveal,
.fade-in {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal,
.fade-in {
  transform: translateY(28px);
}

.reveal-left {
  transform: translateX(-32px);
}

.reveal-right {
  transform: translateX(32px);
}

.reveal.visible,
.fade-in.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── Hover utilities ── */

.hover-lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-3px);
}

/* ── Media queries ── */

@media (hover: none) {
  .service-card { transform: none; }
  .service-card__description {
    max-height: 120px;
    opacity: 1;
    transform: none;
    margin-top: 1rem;
  }
  .service-card__arrow { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal, .fade-in,
  .feature-card, .step-card, .benefit-card,
  .service-card, .service-card__icon,
  .service-card__description, .service-card__arrow,
  .service-card::before, .ai-hero__frame,
  .btn-primary, .hover-lift {
    transition: none;
  }

  .reveal, .fade-in {
    opacity: 1;
    transform: none;
  }

  .service-card:hover,
  .service-card:focus-within,
  .feature-card:hover,
  .step-card:hover,
  .benefit-card:hover,
  .ai-hero__frame:hover,
  .btn-primary:hover {
    transform: none;
  }

  .service-card__description {
    max-height: none;
    opacity: 1;
    transform: none;
    margin-top: 1rem;
  }

  .service-card__arrow { opacity: 1; transform: none; }

  .service-card--territorial:hover .service-card__icon.symbol-icon,
  .service-card--territorial:focus-within .service-card__icon.symbol-icon {
    filter: drop-shadow(0 0 10px var(--theme-territorial-neon));
  }

  .symbol-icon__video {
    display: none;
  }

  .nomad-video-frame:hover {
    transform: none;
  }

  .nomad-video-frame__video {
    display: none;
  }

  .nomad-video-frame__poster {
    display: block;
  }

  .nomad-sound-btn {
    display: none;
  }

  .home-hero { background-attachment: scroll; }
}

@media (max-width: 768px) {
  .home-hero { background-attachment: scroll; }
}