/* ============================================================
   STRAVIAM — DESIGN SYSTEM (shared across all pages)
   ============================================================ */
:root {
  /* Light premium base */
  --paper: #F4EFE7;
  --paper-2: #EBE5D7;
  --paper-3: #E0D8C5;
  --surface: #FFFFFF;
  --surface-2: #FAF6EC;

  /* Ink */
  --ink: #0C0E10;
  --ink-2: #1F2125;
  --ink-soft: #4A4D54;
  --muted: #807F76;
  --line: rgba(12, 14, 16, 0.08);
  --line-strong: rgba(12, 14, 16, 0.18);

  /* Vibrant accents */
  --pri: #2B4FFF;
  --pri-light: #5577FF;
  --vio: #7B5BFF;
  --orange: #FF6B35;
  --pink: #FF4FA0;
  --lime: #C6F050;
  --cyan: #2DD4DA;

  /* Fonts */
  --f-sans: 'Inter', -apple-system, system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
  --f-serif: 'Instrument Serif', Georgia, serif;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: var(--ink); color: var(--paper); }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--f-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
  letter-spacing: -0.01em;
  font-feature-settings: "ss01", "cv11";
}

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

/* Subtle paper grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pri);
}

/* ============================================================
   NAV — floating glass pill
   ============================================================ */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 22px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: top 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(12, 14, 16, 0.04);
}
.nav.scrolled {
  top: 12px;
  box-shadow: 0 12px 32px rgba(12, 14, 16, 0.10);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.025em;
}
.logo svg { width: 24px; height: 24px; transition: transform 1s var(--ease); }
.logo:hover svg { transform: rotate(180deg); }

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 9px 16px;
  font-size: 13px;
  color: var(--ink-2);
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--paper);
}
.nav-links a.active { background: var(--ink); color: var(--paper); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta:hover { transform: translateY(-1px); }
.nav-cta .arrow { transition: transform 0.3s var(--ease); }
.nav-cta:hover .arrow { transform: translate(2px, -2px); }

.mobile-toggle { display: none; }
@media (max-width: 880px) {
  .nav { padding: 6px 6px 6px 18px; }
  .nav-links { display: none; }
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: var(--paper);
  }
  .mobile-toggle span {
    width: 16px; height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s var(--ease), opacity 0.2s;
  }
  .mobile-toggle.open span:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: translateY(-2.75px) rotate(-45deg); }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 100px 32px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px;
  font-size: 24px;
  font-weight: 600;
  color: var(--paper);
  border-bottom: 1px solid rgba(244, 239, 231, 0.1);
  letter-spacing: -0.025em;
  transition: padding-left 0.3s, color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { padding-left: 12px; color: var(--lime); }
.mobile-menu a .num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(244, 239, 231, 0.4);
  font-weight: 500;
}
.mobile-menu .nav-cta { margin-top: 28px; justify-content: center; padding: 14px; font-size: 14px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn .arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 4px 14px rgba(12, 14, 16, 0.15);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(43, 79, 255, 0.32);
}
.btn-primary:hover .arrow { transform: translate(3px, -3px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--surface);
  transform: translateY(-2px);
}

/* ============================================================
   PAGE HERO HEADER (shared for sub-pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.page-hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-hero-mesh::before,
.page-hero-mesh::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.page-hero-mesh::before {
  width: 50vw; height: 50vw;
  top: -20%; left: -10%;
  background: radial-gradient(circle, rgba(43, 79, 255, 0.18) 0%, transparent 60%);
  animation: floatA 22s ease-in-out infinite;
}
.page-hero-mesh::after {
  width: 40vw; height: 40vw;
  top: 10%; right: -10%;
  background: radial-gradient(circle, rgba(123, 91, 255, 0.16) 0%, transparent 60%);
  animation: floatB 26s ease-in-out infinite;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 16ch;
  margin-bottom: 24px;
}
.page-hero h1 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
  line-height: 1.55;
}
.page-hero .eyebrow { margin-bottom: 24px; }

/* ============================================================
   FOOTER (shared)
   ============================================================ */
footer {
  padding: 72px 0 32px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 340px;
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  transition: color 0.2s, padding-left 0.3s;
  display: inline-block;
}
.footer-col a:hover { color: var(--pri); padding-left: 4px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.techionic { display: inline-flex; align-items: center; gap: 10px; }
.techionic .tx-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri), var(--vio));
  box-shadow: 0 0 10px rgba(43, 79, 255, 0.6);
  animation: pulseLive 2s ease-in-out infinite;
}
.techionic a {
  font-weight: 600;
  background: linear-gradient(135deg, var(--pri), var(--vio));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.2s;
}
.techionic a:hover { opacity: 0.7; }

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   COMMON KEYFRAMES
   ============================================================ */
@keyframes pulseLive {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 79, 255, 0.5); opacity: 1; }
  50% { box-shadow: 0 0 0 6px rgba(43, 79, 255, 0); opacity: 0.7; }
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, 6%) scale(1.1); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6%, 8%) scale(1.08); }
}
@keyframes lineUp { to { transform: translateY(0); } }
@keyframes up {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.rv.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.1s !important;
  }
  .rv { opacity: 1; transform: none; }
}

/* ============================================================
   HOMEPAGE — HERO with floating animation centerpiece
   ============================================================ */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--paper);
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.mb1 { width: 50vw; height: 50vw; top: -15%; left: -8%; background: radial-gradient(circle, rgba(43, 79, 255, 0.28) 0%, transparent 60%); animation: floatA 22s ease-in-out infinite; }
.mb2 { width: 45vw; height: 45vw; top: 10%; right: -12%; background: radial-gradient(circle, rgba(123, 91, 255, 0.24) 0%, transparent 60%); animation: floatB 26s ease-in-out infinite; }
.mb3 { width: 40vw; height: 40vw; bottom: -25%; left: 30%; background: radial-gradient(circle, rgba(255, 107, 53, 0.18) 0%, transparent 60%); animation: floatA 30s ease-in-out infinite reverse; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-text { display: flex; flex-direction: column; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 11px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 28px;
  align-self: flex-start;
  opacity: 0;
  animation: up 0.8s var(--ease) 0.1s forwards;
}
.hero-badge .live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulseLive 2s ease-in-out infinite;
}

/* Properly sized headline — NOT zoomed */
.hero-title {
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  max-width: 14ch;
}
.hero-title .rl { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero-title .rl > span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.1s var(--ease) forwards;
}
.hero-title .rl:nth-child(1) > span { animation-delay: 0.25s; }
.hero-title .rl:nth-child(2) > span { animation-delay: 0.35s; }
.hero-title .rl:nth-child(3) > span { animation-delay: 0.45s; }
.hero-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.55;
  opacity: 0;
  animation: up 0.8s var(--ease) 0.85s forwards;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up 0.8s var(--ease) 1s forwards;
}

/* ===== HERO ANIMATION — floating orbital scene ===== */
.hero-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 540px;
  margin: 0 auto;
  opacity: 0;
  animation: up 1s var(--ease) 0.5s forwards;
}

.scene-orbit-outer,
.scene-orbit-mid,
.scene-orbit-inner {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px dashed var(--line-strong);
  transform: translate(-50%, -50%);
}
.scene-orbit-outer { width: 100%; height: 100%; animation: orbitSpin 60s linear infinite; }
.scene-orbit-mid { width: 70%; height: 70%; animation: orbitSpin 45s linear infinite reverse; }
.scene-orbit-inner { width: 42%; height: 42%; animation: orbitSpin 30s linear infinite; }
@keyframes orbitSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Center orb */
.scene-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 28%; height: 28%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 50%, var(--orange) 100%);
  background-size: 200% 200%;
  animation: gradShift 6s ease infinite, coreFloat 4s ease-in-out infinite;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 80px rgba(43, 79, 255, 0.35),
    0 20px 60px -10px rgba(43, 79, 255, 0.4),
    inset 0 4px 12px rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
@keyframes coreFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -54%) scale(1.04); }
}
.scene-core::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri), var(--vio), var(--orange));
  filter: blur(14px);
  opacity: 0.5;
  z-index: -1;
  animation: gradShift 6s ease infinite;
}

/* Floating service tags */
.scene-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(12, 14, 16, 0.08);
  z-index: 2;
}
.scene-tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.scene-tag .ico {
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.scene-tag.t1 { top: 8%; left: 6%; animation: floatTag1 5s ease-in-out infinite; }
.scene-tag.t2 { top: 12%; right: 4%; animation: floatTag2 6s ease-in-out infinite; }
.scene-tag.t3 { bottom: 22%; left: -2%; animation: floatTag3 5.5s ease-in-out infinite; }
.scene-tag.t4 { bottom: 8%; right: 8%; animation: floatTag4 6.5s ease-in-out infinite; }
.scene-tag.t1 .dot { background: var(--pri); }
.scene-tag.t2 .dot { background: var(--orange); }
.scene-tag.t3 .dot { background: var(--vio); }
.scene-tag.t4 .dot { background: var(--lime); }
@keyframes floatTag1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -10px); }
}
@keyframes floatTag2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, -6px); }
}
@keyframes floatTag3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, 8px); }
}
@keyframes floatTag4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6px, 8px); }
}

/* Orbiting dots */
.scene-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  margin: -7px;
  box-shadow: 0 0 16px currentColor;
}
.scene-dot.d1 { color: var(--pri); background: var(--pri); transform: translate(0, -50%) translateY(-180px); animation: dotOrbit1 18s linear infinite; }
.scene-dot.d2 { color: var(--orange); background: var(--orange); transform: translate(0, -50%) translateY(-130px); animation: dotOrbit2 14s linear infinite reverse; }
.scene-dot.d3 { color: var(--lime); background: var(--lime); width: 10px; height: 10px; margin: -5px; animation: dotOrbit3 22s linear infinite; }

@keyframes dotOrbit1 {
  from { transform: rotate(0deg) translateX(48%) rotate(0deg); }
  to { transform: rotate(360deg) translateX(48%) rotate(-360deg); }
}
@keyframes dotOrbit2 {
  from { transform: rotate(60deg) translateX(34%) rotate(-60deg); }
  to { transform: rotate(420deg) translateX(34%) rotate(-420deg); }
}
@keyframes dotOrbit3 {
  from { transform: rotate(180deg) translateX(20%) rotate(-180deg); }
  to { transform: rotate(540deg) translateX(20%) rotate(-540deg); }
}

@media (max-width: 980px) {
  .hero-scene { max-width: 440px; }
  .scene-tag { padding: 8px 12px; font-size: 11px; }
}
@media (max-width: 560px) {
  .hero-scene { max-width: 320px; }
  .scene-core { font-size: 18px; }
  .scene-tag { padding: 7px 11px; font-size: 10px; }
  .scene-tag .ico { width: 14px; height: 14px; }
}

/* ============================================================
   STRIP MARQUEE
   ============================================================ */
.strip {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.strip-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.strip-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: slide 45s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.strip-item {
  font-family: var(--f-serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.strip-sep {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.strip-track > .strip-sep:nth-child(4n+2) { background: var(--pri); }
.strip-track > .strip-sep:nth-child(4n+4) { background: var(--orange); }
.strip-track > .strip-sep:nth-child(4n+6) { background: var(--vio); }
.strip-track > .strip-sep:nth-child(4n+8) { background: var(--lime); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION (homepage) — services preview
   ============================================================ */
.section {
  padding: 120px 0;
  position: relative;
}
.section.alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 18ch;
}
.section-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.55;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; }
}

.svc {
  position: relative;
  border-radius: 28px;
  padding: 36px 36px 32px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  isolation: isolate;
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(12, 14, 16, 0.25);
}
.svc.s1 { background: linear-gradient(160deg, #2B4FFF 0%, #1635CC 100%); color: var(--paper); }
.svc.s2 { background: linear-gradient(160deg, #FF6B35 0%, #E04E1A 100%); color: var(--paper); }
.svc.s3 { background: linear-gradient(160deg, #7B5BFF 0%, #5E3FE0 100%); color: var(--paper); }
.svc.s4 { background: linear-gradient(160deg, #0C0E10 0%, #1F2125 100%); color: var(--paper); }

.svc-halo {
  position: absolute;
  width: 130%; height: 130%;
  top: -15%; right: -40%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
  transition: transform 0.8s var(--ease), opacity 0.6s;
}
.svc.s1 .svc-halo { background: var(--pri-light); }
.svc.s2 .svc-halo { background: #FFB084; }
.svc.s3 .svc-halo { background: #B89BFF; }
.svc.s4 .svc-halo { background: var(--lime); }
.svc:hover .svc-halo { transform: scale(1.15); opacity: 0.55; }

.svc-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-num::before {
  content: '';
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.svc-title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.svc-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  opacity: 0.95;
}
.svc-desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 460px;
  margin-bottom: auto;
}
.svc-art {
  margin-top: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.svc-illo {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  transition: transform 0.6s var(--ease);
}
.svc:hover .svc-illo { transform: scale(1.06) rotate(-4deg); }

.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-end;
  transition: gap 0.3s, background 0.3s, border-color 0.3s;
  color: white;
}
.svc.s4 .svc-cta {
  background: rgba(244, 239, 231, 0.1);
  border-color: rgba(244, 239, 231, 0.2);
}
.svc:hover .svc-cta { gap: 12px; background: rgba(255, 255, 255, 0.22); border-color: rgba(255, 255, 255, 0.4); }
.svc-cta .arrow { transition: transform 0.3s var(--ease); }
.svc:hover .svc-cta .arrow { transform: translate(3px, -3px); }

@media (max-width: 700px) {
  .svc { padding: 28px; min-height: 340px; }
  .svc-illo { width: 100px; height: 100px; }
}

/* Illustration animations */
.illo-spin { animation: illoSpin 24s linear infinite; transform-origin: center; }
@keyframes illoSpin { to { transform: rotate(360deg); } }
.illo-spin-rev { animation: illoSpin 30s linear infinite reverse; transform-origin: center; }
.illo-pulse-soft { animation: illoPulseSoft 4s ease-in-out infinite; transform-origin: center; }
@keyframes illoPulseSoft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.92; }
}
.illo-float-y { animation: illoFloatY 5s ease-in-out infinite; }
@keyframes illoFloatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ============================================================
   ABOUT (homepage preview + about page)
   ============================================================ */
.about {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.about::before {
  content: '';
  position: absolute;
  top: -10%; left: -5%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(43, 79, 255, 0.22) 0%, transparent 60%);
  filter: blur(120px);
  pointer-events: none;
}
.about::after {
  content: '';
  position: absolute;
  bottom: -10%; right: -5%;
  width: 50%; height: 80%;
  background: radial-gradient(circle, rgba(255, 79, 160, 0.16) 0%, transparent 60%);
  filter: blur(120px);
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(244, 239, 231, 0.08);
  border: 1px solid rgba(244, 239, 231, 0.15);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244, 239, 231, 0.8);
  font-weight: 500;
  margin-bottom: 28px;
}
.about-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.about-title {
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 36px;
}
.about-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 239, 231, 0.12);
}
.meta-card { display: flex; flex-direction: column; gap: 6px; }
.meta-val {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}
.meta-card:nth-child(1) .meta-val { color: var(--lime); }
.meta-card:nth-child(2) .meta-val {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 52px;
  color: var(--orange);
}
.meta-card:nth-child(3) .meta-val {
  background: linear-gradient(135deg, var(--cyan), var(--pri-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.meta-label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244, 239, 231, 0.55);
  font-weight: 500;
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 28px;
  border-left: 1px solid rgba(244, 239, 231, 0.12);
  position: relative;
}
.about-story::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 9px; height: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--lime);
}
.about-story p {
  color: rgba(244, 239, 231, 0.82);
  font-size: 16px;
  line-height: 1.75;
}
.about-pull {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 400;
  color: var(--paper);
  line-height: 1.05;
  letter-spacing: -0.02em;
  padding: 12px 0;
}
.about-pull::before {
  content: '';
  display: block;
  width: 36px; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  margin-bottom: 18px;
  border-radius: 2px;
}
.about-close {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  padding: 16px 0 0;
  border-top: 1px solid rgba(244, 239, 231, 0.12);
  margin-top: 4px;
  letter-spacing: -0.015em;
}

@media (max-width: 880px) {
  .about { padding: 80px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story { padding-left: 22px; }
  .meta-val { font-size: 32px; }
  .meta-card:nth-child(2) .meta-val { font-size: 40px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0 140px;
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%; transform: translateX(-50%);
  width: 100%; height: 600px;
  background:
    radial-gradient(circle at 30% 50%, rgba(43, 79, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(123, 91, 255, 0.10) 0%, transparent 50%);
  filter: blur(60px);
  pointer-events: none;
}

.contact-card {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--paper);
  border-radius: 36px;
  padding: 60px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(12, 14, 16, 0.3);
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(43, 79, 255, 0.32) 0%, transparent 55%);
  filter: blur(60px);
  pointer-events: none;
}
.contact-card::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, rgba(123, 91, 255, 0.22) 0%, transparent 55%);
  filter: blur(60px);
  pointer-events: none;
}
.contact-card > * { position: relative; z-index: 1; }

.contact-left h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 24px 0 20px;
}
.contact-left h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lime) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-tag {
  font-size: 15px;
  color: rgba(244, 239, 231, 0.7);
  max-width: 380px;
  margin-bottom: 32px;
  line-height: 1.55;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(244, 239, 231, 0.04);
  border: 1px solid rgba(244, 239, 231, 0.08);
  border-radius: 14px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.info-row:hover {
  background: rgba(244, 239, 231, 0.08);
  border-color: rgba(244, 239, 231, 0.18);
  transform: translateX(4px);
}
.info-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(43, 79, 255, 0.25) 0%, rgba(123, 91, 255, 0.25) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  flex-shrink: 0;
}
.info-text { display: flex; flex-direction: column; gap: 2px; }
.info-label {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244, 239, 231, 0.5);
  font-weight: 500;
}
.info-val { font-size: 14px; font-weight: 600; color: var(--paper); }
.info-val a:hover { color: var(--lime); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-heading {
  font-family: var(--f-serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 4px;
}
.form-heading-sub {
  font-size: 13px;
  color: rgba(244, 239, 231, 0.55);
  margin-bottom: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244, 239, 231, 0.55);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(244, 239, 231, 0.05);
  border: 1px solid rgba(244, 239, 231, 0.1);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--paper);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 12px;
  width: 100%;
  font-family: inherit;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pri-light);
  background: rgba(244, 239, 231, 0.08);
}
.form-field textarea { resize: vertical; min-height: 88px; font-family: inherit; }
.form-field select {
  -webkit-appearance: none; appearance: none;
  background: rgba(244, 239, 231, 0.05) url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F4EFE7' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-field select option { background: var(--ink); color: var(--paper); }
.form-submit {
  margin-top: 6px;
  padding: 14px 22px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s var(--ease), color 0.3s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.form-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: -1;
}
.form-submit:hover::before { transform: translateY(0); }
.form-submit:hover { color: var(--paper); transform: translateY(-2px); }
.form-submit .arrow { transition: transform 0.3s var(--ease); }
.form-submit:hover .arrow { transform: translate(3px, -3px); }

@media (max-width: 920px) {
  .contact-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 40px; border-radius: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .contact { padding: 80px 0 100px; }
  .contact-card { padding: 32px 22px; }
}

/* ============================================================
   SERVICES PAGE — detail tiles
   ============================================================ */
.services-page-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.svc-detail {
  position: relative;
  border-radius: 28px;
  padding: 48px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  isolation: isolate;
  min-height: 320px;
}
.svc-detail.s1 { background: linear-gradient(135deg, #2B4FFF 0%, #1635CC 100%); color: var(--paper); }
.svc-detail.s2 { background: linear-gradient(135deg, #FF6B35 0%, #E04E1A 100%); color: var(--paper); }
.svc-detail.s3 { background: linear-gradient(135deg, #7B5BFF 0%, #5E3FE0 100%); color: var(--paper); }
.svc-detail.s4 { background: linear-gradient(135deg, #0C0E10 0%, #1F2125 100%); color: var(--paper); }
.svc-detail-halo {
  position: absolute;
  width: 60%; height: 140%;
  top: -20%; right: -20%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
}
.svc-detail.s1 .svc-detail-halo { background: var(--pri-light); }
.svc-detail.s2 .svc-detail-halo { background: #FFB084; }
.svc-detail.s3 .svc-detail-halo { background: #B89BFF; }
.svc-detail.s4 .svc-detail-halo { background: var(--lime); }

.svc-detail-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-detail-num::before {
  content: '';
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.svc-detail h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.svc-detail h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  opacity: 0.95;
}
.svc-detail p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 480px;
  margin-bottom: 24px;
}
.svc-detail-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.svc-detail-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 11px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 500;
}
.svc-detail.s4 .svc-detail-tag { background: rgba(244, 239, 231, 0.1); border-color: rgba(244, 239, 231, 0.2); }

.svc-detail-illo {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  margin-left: auto;
  position: relative;
}

@media (max-width: 880px) {
  .svc-detail { grid-template-columns: 1fr; padding: 36px; }
  .svc-detail-illo { max-width: 180px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .svc-detail { padding: 28px; border-radius: 22px; }
  .svc-detail-illo { max-width: 140px; }
}

/* ============================================================
   ABOUT PAGE — extra
   ============================================================ */
.values {
  padding: 120px 0;
  background: var(--paper);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 32px -10px rgba(12, 14, 16, 0.1);
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 24px;
}
.value-card:nth-child(2) .value-icon { background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%); }
.value-card:nth-child(3) .value-icon { background: linear-gradient(135deg, var(--lime) 0%, var(--cyan) 100%); color: var(--ink); }
.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 760px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE — extra info grid
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 32px -10px rgba(12, 14, 16, 0.1);
}
.contact-info-card .info-icon {
  background: linear-gradient(135deg, var(--pri), var(--vio));
  color: white;
  width: 44px; height: 44px;
  margin-bottom: 20px;
}
.contact-info-card h3 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-info-card p, .contact-info-card a {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
}
.contact-info-card a:hover { color: var(--pri); }
@media (max-width: 760px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* CTA section reused */
.cta {
  padding: 100px 0;
  background: var(--paper-2);
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.cta h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--pri), var(--vio));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
