/* ==========================================================================
   Arkus Group — Design System
   ========================================================================== */

:root {
  --bg: #08090d;
  --bg-alt: #0f111a;
  --surface: #13151f;
  --surface-2: #171a26;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f5f8;
  --text-dim: #9aa0b4;
  --text-dimmer: #656b80;
  --accent: #7c5cfc;
  --accent-2: #34e4c8;
  --accent-warm: #ffb454;
  --gradient-main: linear-gradient(120deg, #7c5cfc 0%, #4f8bff 45%, #34e4c8 100%);
  --gradient-text: linear-gradient(120deg, #b9a6ff 0%, #8fd9ff 50%, #6ef0d8 100%);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: break-word;
}

html, body { max-width: 100%; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

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

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent-2);
}

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 18px;
}

.section-head p {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 560px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  will-change: transform;
}

.btn-primary {
  background: var(--text);
  color: #0a0a0f;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(124, 92, 252, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 16px 0;
  background: rgba(8, 9, 13, 0.75);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-main);
  box-shadow: 0 0 12px rgba(124, 92, 252, 0.8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-2);
  transition: width 0.3s var(--ease);
}

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

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

.nav-cta {
  padding: 11px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 200;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 22px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 480px) {
  .nav-inner { gap: 12px; }
  .logo { font-size: 17px; }
}

/* ---------- Hero ---------- */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero { padding-top: 120px; min-height: auto; padding-bottom: 100px; }
  .hero-actions { margin-bottom: 56px; }
  .hero-meta { gap: 28px; }
  .scroll-cue { display: none; }
}

@media (max-width: 480px) {
  .hero { padding-top: 108px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
}

.hero-bg {
  position: absolute;
  inset: -20%;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.55;
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}

.blob-1 {
  width: 480px; height: 480px;
  top: 8%; left: 4%;
  background: radial-gradient(circle at 30% 30%, #7c5cfc, transparent 70%);
  animation-delay: 0s;
}

.blob-2 {
  width: 420px; height: 420px;
  top: 30%; right: 2%;
  background: radial-gradient(circle at 60% 40%, #34e4c8, transparent 70%);
  animation-delay: -6s;
}

.blob-3 {
  width: 380px; height: 380px;
  bottom: -5%; left: 30%;
  background: radial-gradient(circle at 50% 50%, #4f8bff, transparent 70%);
  animation-delay: -12s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
  z-index: 0;
}

.hero-content {
  max-width: 880px;
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.03;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 90px;
}

.hero-meta {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-meta-item .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 600;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-meta-item .label {
  font-size: 13px;
  color: var(--text-dimmer);
  margin-top: 4px;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--text-dimmer), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee ---------- */

.marquee-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  color: var(--text-dimmer);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}

.marquee-track span::after {
  content: "\2726";
  color: var(--accent);
  margin-left: 56px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Stat cards ---------- */

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

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

.stat-card .stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 600;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.stat-card p {
  color: var(--text-dim);
  font-size: 15px;
}

.stat-source {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-dimmer);
}

@media (max-width: 860px) {
  .stat-grid { grid-template-columns: 1fr; }
}

/* ---------- Cards grid ---------- */

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

.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
  .card-grid, .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .card-grid, .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; }
}

.tilt-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.15s ease, border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.tilt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(124, 92, 252, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.tilt-card:hover::before { opacity: 1; }

.tilt-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-2);
}

.tilt-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.tilt-card p {
  color: var(--text-dim);
  font-size: 15px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-2);
}

/* ---------- Process / timeline ---------- */

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  border-top: 1px solid var(--border);
}

.process-item {
  padding: 36px 28px 0;
  border-right: 1px solid var(--border);
  position: relative;
}

.process-item:last-child { border-right: none; }

.process-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: var(--accent-2);
  display: block;
  margin-bottom: 18px;
}

.process-item h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.process-item p {
  color: var(--text-dim);
  font-size: 14.5px;
}

@media (max-width: 860px) {
  .process-list { grid-template-columns: 1fr; }
  .process-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 32px; }
}

/* ---------- Split section ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split.reverse .split-visual { order: 2; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-visual { order: 0; }
}

.split-text .eyebrow { margin-bottom: 16px; }
.split-text h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 20px; }
.split-text p { color: var(--text-dim); font-size: 17px; margin-bottom: 24px; }

.split-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.split-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-dim);
  font-size: 15px;
}

.split-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--accent-2);
  margin-top: 3px;
}

.split-visual {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-visual .orb {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: var(--gradient-main);
  filter: blur(60px);
  opacity: 0.5;
  animation: float 14s ease-in-out infinite;
}

.split-visual svg { position: relative; z-index: 1; width: 46%; }

/* ---------- Tags / pill list (roles in demand) ---------- */

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  color: var(--text-dim);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.tag-pill:hover {
  border-color: var(--accent-2);
  color: var(--text);
  transform: translateY(-2px);
}

/* ---------- CTA banner ---------- */

.cta-banner {
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: var(--gradient-main);
  opacity: 0.18;
  filter: blur(90px);
  animation: float 16s ease-in-out infinite;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 720px;
  margin: 0 auto 20px;
  position: relative;
}

.cta-banner p {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 640px) {
  .cta-banner { padding: 56px 28px; }
}

/* ---------- Insight cards ---------- */

.insight-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--surface);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.insight-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

.insight-meta {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-dimmer);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.insight-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.insight-card p { color: var(--text-dim); font-size: 15px; margin-bottom: 20px; }

.insight-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--accent-2);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--text-dim); font-size: 14.5px; margin-top: 16px; }

.footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-links h4 {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links a, .footer-links div > a {
  display: block;
  color: var(--text-dim);
  font-size: 14.5px;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-dimmer);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal { display: flex; gap: 24px; }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.stagger-item:nth-child(1) { transition-delay: 0.05s; }
.stagger-item:nth-child(2) { transition-delay: 0.15s; }
.stagger-item:nth-child(3) { transition-delay: 0.25s; }
.stagger-item:nth-child(4) { transition-delay: 0.35s; }
.stagger-item:nth-child(5) { transition-delay: 0.45s; }
.stagger-item:nth-child(6) { transition-delay: 0.55s; }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-hero { padding: 130px 0 64px; }
}

.page-hero h1 {
  font-size: clamp(36px, 5.6vw, 64px);
  max-width: 780px;
}

.page-hero p.hero-sub {
  margin-top: 22px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--text-dimmer);
  margin-bottom: 24px;
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

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

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: fit-content;
}

@media (max-width: 480px) {
  .contact-info-card, .form-card { padding: 26px 22px; }
  .tilt-card { padding: 28px 22px; }
  .stat-card { padding: 30px 22px; }
  .stat-card .stat-num { font-size: 38px; }
}

.contact-info-card .info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-card .info-row:last-child { border-bottom: none; }

.contact-info-card .info-row svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-2);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-card .info-row .label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
  margin-bottom: 4px;
}

.contact-info-card .info-row .value { font-size: 15.5px; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field textarea { resize: vertical; min-height: 120px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 92, 252, 0.15);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 13px;
  color: var(--text-dimmer);
  margin-top: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.show { display: block; }

.form-success .check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success .check svg { width: 26px; height: 26px; stroke: var(--accent-2); }

.form-success h3 { font-size: 22px; margin-bottom: 10px; }
.form-success p { color: var(--text-dim); }

.form-shell.submitted .form-fields { display: none; }

/* ---------- Values grid (about) ---------- */

.value-card {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.value-card:last-child { border-bottom: 1px solid var(--border); }

.value-row {
  display: grid;
  grid-template-columns: 40px 1fr 2fr;
  gap: 24px;
  align-items: start;
}

.value-row .idx {
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent-2);
  font-size: 14px;
}

.value-row h3 { font-size: 20px; }
.value-row p { color: var(--text-dim); font-size: 15px; }

@media (max-width: 760px) {
  .value-row { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- Practice band ---------- */

.practice-band {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.practice-band > div {
  flex: 1;
  padding: 44px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.practice-band > div:last-child { border-right: none; }

.practice-band .n {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  color: var(--text-dimmer);
  margin-bottom: 12px;
}

.practice-band h4 { font-size: 17px; }

@media (max-width: 760px) {
  .practice-band { flex-direction: column; }
  .practice-band > div { border-right: none; border-bottom: 1px solid var(--border); }
  .practice-band > div:last-child { border-bottom: none; }
}

/* ---------- Utility ---------- */

.mt-lg { margin-top: 64px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

::selection {
  background: var(--accent);
  color: #fff;
}

/* Custom cursor (desktop only) */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: opacity 0.3s ease, width 0.2s ease, height 0.2s ease;
  opacity: 0;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring { opacity: 1; }
}
