/* =====================================================
   BLACKLINE VISUALS — Dark Cinematic Theme
   ===================================================== */
:root {
  /* Backgrounds */
  --bg:      #07090d;   /* near-black canvas */
  --bg-2:    #0c1018;   /* card surface */
  --bg-3:    #111827;   /* hover surface */
  --bg-4:    #0f1520;   /* subtle tint */

  /* Text */
  --fg:      #eef2f7;   /* near-white */
  --fg-soft: #9aadc4;   /* muted blue-gray */
  --fg-dim:  #4e6072;   /* very muted */

  /* Lines / borders */
  --line:        #1a2535;
  --line-strong: #243448;

  /* Accent — electric cyan (the "line" in Blackline) */
  --accent:       #00c8ff;
  --accent-hover: #00a8d8;
  --accent-soft:  rgba(0, 200, 255, 0.10);
  --accent-tint:  rgba(0, 200, 255, 0.05);
  --accent-glow:  0 0 28px rgba(0, 200, 255, 0.35);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.35);
  --shadow-md: 0 10px 32px -8px rgba(0,0,0,0.7), 0 4px 12px -4px rgba(0,200,255,0.08);
  --shadow-lg: 0 28px 60px -20px rgba(0,0,0,0.85), 0 10px 20px -10px rgba(0,200,255,0.12);

  /* Radii */
  --radius:    14px;
  --radius-lg: 22px;

  /* Layout */
  --max: 1240px;

  /* Fonts */
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px clamp(20px, 4vw, 48px);
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 700;
}
.brand-mark { color: var(--accent); display: inline-flex; }
.brand-sub  { color: var(--accent); font-weight: 600; letter-spacing: .06em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #07090d !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: var(--accent-glow);
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  color: #07090d !important;
}

.nav-toggle {
  display: none;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.nav-toggle span { display: block; height: 2px; background: var(--fg); border-radius: 2px; }

.nav-mobile {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  z-index: 49;
  box-shadow: var(--shadow-md);
}
.nav-mobile:not([hidden]) { display: flex; }
.nav-mobile a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  font-weight: 500;
}
.nav-mobile a:last-child { border-bottom: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 4vw, 48px) 80px;
  background: var(--bg);
}

/* Subtle grid lines */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 20%, transparent 80%);
}

/* Gradient orbs */
.hero-bg::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(0,200,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -10%; left: -5%;
  width: 45%; height: 60%;
  background: radial-gradient(circle, rgba(0,150,220,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
}

.hero-text h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  margin: 0 0 22px;
  letter-spacing: -.025em;
  color: var(--fg);
}
.accent { color: var(--accent); }

.lede {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--fg-soft);
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 480px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--accent);
  font-weight: 700;
}
.hero-meta span {
  font-size: 11px; color: var(--fg-dim);
  letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
}

/* Hero video frame */
.hero-media { position: relative; }
.hero-frame {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,200,255,0.08);
  transform: rotate(0.5deg);
  transition: transform .4s ease;
}
.hero-frame:hover { transform: rotate(0deg) translateY(-4px); }
.hero-frame .ratio { background: #020508; }

/* Cyan top-line accent */
.hero-frame::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 5;
}

.hero-frame-badge {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(7,9,13,0.82);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,200,255,0.25);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.hero-stat-card {
  position: absolute;
  bottom: -24px; left: -18px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  transform: rotate(-1.2deg);
}
.hero-stat-card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center; justify-content: center;
}
.hero-stat-card strong { display: block; font-family: var(--font-display); font-size: 13px; color: var(--fg); }
.hero-stat-card span  { font-size: 12px; color: var(--fg-dim); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { margin-top: 16px; }
  .hero-stat-card { left: 10px; bottom: -18px; }
}

.scroll-cue {
  position: absolute;
  bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
  z-index: 2;
  background: rgba(7,9,13,0.5);
  backdrop-filter: blur(6px);
}
.scroll-cue span {
  display: block; width: 2px; height: 8px;
  background: var(--accent); border-radius: 2px;
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue {
  0%,100% { transform: translateY(0); opacity: .4; }
  50%      { transform: translateY(10px); opacity: 1; }
}
@media (max-width: 980px) { .scroll-cue { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .01em;
  font-size: 15px;
  transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #07090d;
  box-shadow: var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  background: var(--bg-2);
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-block { width: 100%; }

/* ---------- Logo strip ---------- */
.logos {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px clamp(20px, 4vw, 48px);
}
.logos-row {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.logos-row > span {
  color: var(--fg-dim); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
}
.logos-grid {
  display: flex;
  gap: clamp(18px, 4vw, 48px);
  flex-wrap: wrap;
  color: var(--fg-dim);
  font-family: var(--font-display);
  letter-spacing: .18em;
  font-weight: 600;
  font-size: 13px;
}

/* ---------- Generic section ---------- */
.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 4vw, 48px);
  max-width: var(--max);
  margin: 0 auto;
}
.section-tint {
  max-width: none;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-tint > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -.018em;
  margin: 12px 0 16px;
  color: var(--fg);
}
.section-sub {
  color: var(--fg-soft);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  max-width: 600px;
  margin: 0;
  line-height: 1.7;
}

/* ---------- Work grid ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.work-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  grid-column: span 6;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  box-shadow: var(--shadow-sm);
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,200,255,0.4);
  box-shadow: var(--shadow-md);
}
.work-card-large { grid-column: 1 / -1; }
.work-meta { padding: 18px 22px 22px; }
.work-meta h3 { margin: 0 0 4px; font-family: var(--font-display); font-size: 1.05rem; color: var(--fg); }
.work-meta p  { margin: 0; color: var(--fg-dim); font-size: 14px; }

.ratio { position: relative; width: 100%; overflow: hidden; background: #020508; }
.ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.ratio-16x9 { aspect-ratio: 16/9; }
.ratio-4x3  { aspect-ratio: 4/3; }

.placeholder { background-size: cover; background-position: center; }
.placeholder-1 { background-image: linear-gradient(135deg,rgba(0,200,255,.18),transparent 60%), url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1400&q=70"); }
.placeholder-2 { background-image: linear-gradient(135deg,rgba(0,200,255,.15),transparent 60%), url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1400&q=70"); }
.placeholder-3 { background-image: linear-gradient(135deg,rgba(0,200,255,.18),transparent 60%), url("https://images.unsplash.com/photo-1581094288338-2314dddb7ece?auto=format&fit=crop&w=1400&q=70"); }
.placeholder-4 { background-image: linear-gradient(135deg,rgba(0,200,255,.18),transparent 60%), url("https://images.unsplash.com/photo-1429497419816-9ca5cfb4571a?auto=format&fit=crop&w=1400&q=70"); }

@media (max-width: 880px) { .work-card { grid-column: span 12; } }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.service:hover { transform: translateY(-3px); border-color: rgba(0,200,255,0.3); box-shadow: var(--shadow-md); }
.service:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,200,255,0.15);
}
.service h3 { font-family: var(--font-display); margin: 0 0 8px; font-size: 1.1rem; color: var(--fg); }
.service p  { margin: 0; color: var(--fg-soft); font-size: .95rem; line-height: 1.65; }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.plan-head h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 6px; color: var(--fg); }
.plan-tag {
  margin: 0; color: var(--accent);
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600;
}
.plan-blurb {
  color: var(--fg-soft); font-size: .95rem;
  margin: 20px 0 22px; padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  line-height: 1.7;
}
.plan-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; gap: 12px;
}
.plan-list li {
  display: flex; align-items: flex-start;
  gap: 10px; font-size: .97rem; color: var(--fg-soft);
}
.plan-list li::before {
  content: "";
  width: 18px; height: 18px; flex: 0 0 18px; margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300c8ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-size: contain;
}
.plan-foot { margin: 14px 0 0; color: var(--fg-dim); font-size: 13px; }

.plan-featured {
  border-color: rgba(0,200,255,0.45);
  background: linear-gradient(180deg, rgba(0,200,255,0.07) 0%, var(--bg-2) 60%);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,200,255,0.15);
  transform: translateY(-8px);
}
.plan-featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.plan-featured:hover { transform: translateY(-12px); }

.plan-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #07090d;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--accent-glow);
}

.pricing-note {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--fg-dim);
  font-size: 14px;
}

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-featured { transform: none; order: -1; }
  .plan-featured:hover { transform: translateY(-3px); }
}

/* ---------- Process ---------- */
.process {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process li {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.process li:hover {
  transform: translateY(-2px);
  border-color: rgba(0,200,255,0.3);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-family: var(--font-display);
  color: var(--accent); font-weight: 700;
  letter-spacing: .1em; font-size: 12px;
}
.process h3 { font-family: var(--font-display); margin: 10px 0 8px; font-size: 1.1rem; color: var(--fg); }
.process p  { margin: 0; color: var(--fg-soft); font-size: .95rem; line-height: 1.65; }

@media (max-width: 980px) { .process { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(0,200,255,0.4); }
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  user-select: none;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem; font-weight: 300;
  color: var(--accent); flex: 0 0 auto;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item > p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--fg-soft);
  font-size: .97rem; line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.faq-item strong { color: var(--fg); }

/* ---------- CTA / Contact ---------- */
.cta {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 4vw, 48px);
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-orb-1 {
  position: absolute; top: -20%; right: -5%;
  width: 50%; height: 70%;
  background: radial-gradient(circle, rgba(0,200,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-orb-2 {
  position: absolute; bottom: -15%; left: -5%;
  width: 40%; height: 55%;
  background: radial-gradient(circle, rgba(0,150,220,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative; z-index: 2;
  max-width: 780px; margin: 0 auto; text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05; margin: 12px 0 12px;
  letter-spacing: -.015em; color: var(--fg);
}

.contact-direct {
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; max-width: 600px;
}
.contact-direct-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 16px;
  text-align: left;
  transition: border-color .2s, transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.contact-direct-item:hover {
  border-color: rgba(0,200,255,0.45);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.contact-direct-icon {
  width: 40px; height: 40px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex: 0 0 40px;
  border: 1px solid rgba(0,200,255,0.15);
}
.contact-direct-item > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.contact-direct-item strong { font-family: var(--font-display); font-size: 13px; color: var(--fg); letter-spacing: .04em; }
.contact-direct-item > span:last-child > span { color: var(--fg-soft); font-size: 14px; word-break: break-word; }

.contact-form {
  margin-top: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  text-align: left;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-full { display: block; margin-bottom: 14px; }
.contact-form label { display: block; }
.contact-form label > span:first-child {
  display: block;
  font-size: 11px; color: var(--fg-dim);
  letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--bg-3);
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 14px;
  font: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,200,255,0.12);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; margin: 14px 0 0; color: var(--fg-dim); font-size: 14px; }
.form-note a { color: var(--accent); font-weight: 600; }

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

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 56px clamp(20px, 4vw, 48px) 24px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.3), transparent);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 36px; align-items: start;
}
.footer-brand p { color: var(--fg-soft); max-width: 320px; margin: 14px 0 0; font-size: .95rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h4 {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
  margin: 0 0 12px;
}
.footer-cols a, .footer-cols span { display: block; color: var(--fg-soft); padding: 4px 0; font-size: .95rem; }
.footer-cols a:hover { color: var(--accent); }
.footer-bar {
  max-width: var(--max); margin: 36px auto 0;
  padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--fg-dim);
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
