@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500;600&display=swap');

/* ---------- Bio-Tech Dark Theme Tokens ---------- */
:root {
  --paper: #f0f7ff; /* Very soft light ice blue */
  --paper-2: #ffffff; /* Pure white */
  --paper-card: rgba(255, 255, 255, 0.7);
  --paper-card-hover: rgba(224, 242, 254, 0.7);
  --ink: #0f172a; /* Crisp Slate Gray/Black */
  --ink-soft: #475569; /* Slate Gray */
  --midnight: #e2e8f0;
  --night: #f8fafc;
  --skyblue: #0ea5e9; /* Deep Sky Blue */
  --skyblue-deep: #0284c7;
  --skyblue-glow: rgba(14, 165, 233, 0.12);
  --accent-blue: #0284c7;
  --accent-blue-glow: rgba(2, 132, 199, 0.15);
  --muted: #64748b;
  --muted-soft: #94a3b8;
  --line: rgba(15, 23, 42, 0.08);
  --line-dark: rgba(15, 23, 42, 0.15);
  --display: 'Sora', sans-serif;
  --body: 'Outfit', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 10px 40px -15px rgba(15, 23, 42, 0.12);
  --border-glow: 0 0 1px rgba(15, 23, 42, 0.08), 0 0 12px rgba(14, 165, 233, 0.05);
  --nav-bg: rgba(240, 247, 255, 0.85);
  --nav-bg-scrolled: rgba(240, 247, 255, 0.96);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

::selection {
  background: var(--skyblue);
  color: var(--midnight);
}

/* ---------- Custom Cursor ---------- */
.custom-cursor-dot,
.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, width 0.25s ease, height 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--skyblue);
  box-shadow: 0 0 8px var(--skyblue);
}

.custom-cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.1);
}

.custom-cursor-ring.hovering {
  width: 54px;
  height: 54px;
  background: rgba(56, 189, 248, 0.08);
  border-color: var(--skyblue);
  box-shadow: 0 0 16px var(--skyblue-glow);
}

body:hover .custom-cursor-dot,
body:hover .custom-cursor-ring {
  opacity: 1;
}

@media (hover: none) {
  .custom-cursor-dot,
  .custom-cursor-ring {
    display: none !important;
  }
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--skyblue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--skyblue);
  box-shadow: 0 0 8px var(--skyblue);
}

.section {
  padding: 120px 0;
  position: relative;
}

.section.tight {
  padding: 80px 0;
}

@media(max-width:780px) {
  .section {
    padding: 80px 0;
  }
  .section.tight {
    padding: 56px 0;
  }
}

/* ---------- Headline typography ---------- */
.h-display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--ink);
}

.h-serif-it {
  font-family: var(--display);
  font-weight: 300;
  color: var(--accent-blue);
  text-shadow: 0 0 15px var(--accent-blue-glow);
}

.t-mono {
  font-family: var(--mono);
}

/* ---------- Status Status bar ---------- */
.announce {
  background: var(--midnight);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.announce a {
  color: var(--skyblue);
}

.announce .marquee {
  white-space: nowrap;
  overflow: hidden;
  flex: 1;
  display: flex;
  gap: 36px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.announce .marquee span {
  display: inline-flex;
  animation: slide 38s linear infinite;
  gap: 36px;
  flex-shrink: 0;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.announce .pill {
  background: rgba(56, 189, 248, .1);
  color: var(--skyblue);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, .25);
  font-size: 9px;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.1);
}

@media(max-width:780px) {
  .announce {
    font-size: 10px;
  }
  .announce .right {
    display: none;
  }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: var(--nav-bg-scrolled);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--skyblue-deep), #0369a1);
  color: var(--midnight);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.brand small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--muted);
  font-weight: 500;
  display: block;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.btn-ghost {
  color: var(--ink-soft);
}

.btn-ghost:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.btn-dark {
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--line-dark);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-skyblue {
  background: var(--skyblue);
  color: #ffffff;
  box-shadow: 0 8px 24px -6px rgba(14, 165, 233, .3);
}

.btn-skyblue:hover {
  background: var(--skyblue-deep);
  box-shadow: 0 8px 24px -2px rgba(14, 165, 233, .45);
  transform: translateY(-1px);
}

.btn-skyblue .btn-arrow {
  background: #ffffff;
  color: var(--skyblue);
}

.btn-outline {
  border: 1px solid var(--line-dark);
  color: var(--ink-soft);
}

.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(255,255,255,.02);
}

.btn-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--skyblue);
  display: grid;
  place-items: center;
  transition: transform .2s ease, background-color .2s;
}

.btn-dark .btn-arrow {
  background: rgba(255,255,255,0.08);
  color: var(--ink);
}

.btn:hover .btn-arrow {
  transform: translate(2px, -1px) rotate(-12deg);
}

.btn-arrow svg {
  width: 10px;
  height: 10px;
}

.menu-toggle {
  display: none;
  color: var(--ink);
}

@media(max-width:980px) {
  .nav-links, .nav-cta .desktop-only {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
  }
  .menu-toggle svg {
    width: 18px;
    height: 18px;
  }
}

@media(max-width:600px) {
  .nav .wrap {
    padding: 0 16px;
  }
  .nav-inner {
    gap: 10px;
  }
  .nav-cta {
    gap: 8px;
  }
  .nav-cta .btn-dark {
    padding: 11px 14px;
    font-size: 13px;
    gap: 6px;
  }
  .nav-cta .btn-dark .btn-arrow {
    width: 20px;
    height: 20px;
  }
  .menu-toggle {
    width: 46px;
    height: 46px;
  }
}

.mobile-menu {
  display: none;
  padding: 18px 28px 28px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  position: absolute;
  top: 74px;
  left: 0;
  width: 100%;
  z-index: 49;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink-soft);
}

.mobile-menu a:hover {
  color: var(--ink);
}

.mobile-menu a.btn {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  padding: 15px 22px;
  border-bottom: none;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}

.mobile-menu a.btn .btn-arrow {
  background: var(--midnight);
  color: var(--skyblue);
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  padding-left: 44px;
  padding-right: 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

@media(max-width:980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.hero h1 .accent {
  display: inline-block;
  background: linear-gradient(120deg, var(--skyblue-glow) 0%, transparent 100%);
  color: var(--skyblue);
  padding: 0 .1em;
  border-radius: 8px;
  border-bottom: 2px solid var(--skyblue);
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.hero p.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-top: 28px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-trust .item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-trust .num {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1;
  color: var(--ink);
}

.hero-trust .num::after {
  content: "+";
  color: var(--skyblue);
  font-weight: 400;
  margin-left: 1px;
}

.hero-trust .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Hero visual: custom visual container representing AI workflow node connection */
.hero-visual {
  position: relative;
  height: 600px;
}

@media(max-width:980px) {
  .hero-visual {
    height: 480px;
  }
}

@media(max-width:680px) {
  .hero {
    padding: 44px 0 34px;
  }
  .hero .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero h1 {
    font-size: clamp(36px, 10vw, 54px);
  }
  .hero p.lede {
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.5;
  }
  .hero-cta {
    display: flex;
  }
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
  }
  .hero-trust .num {
    font-size: 22px;
  }
  .hero-trust .lbl {
    font-size: 8.5px;
  }
  .hero-visual {
    height: 380px;
    margin-top: 10px;
  }
}

.dev {
  position: absolute;
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: var(--shadow-soft), 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  border: 1px solid var(--line);
}

/* AI workflow node canvas visual (Replace POS tablet) */
.dev-tablet {
  width: 68%;
  height: 66%;
  left: 8%;
  top: 10%;
  background: var(--paper-2); border: 1px solid var(--line-dark);
  padding: 16px;
  border: 1px solid var(--line-dark);
}

.dev-tablet .scr {
  background: var(--paper);
  height: 100%;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  color: var(--ink-soft);
  overflow: hidden;
  border: 1px solid var(--line);
}

.scr-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.scr-top .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.scr-top .ttl {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  color: #ffffff;
  letter-spacing: .05em;
}

.scr-top .meta {
  font-family: var(--mono);
  font-size: 9px;
  color: #94a3b8;
}

.scr-grid {
  padding: 12px;
  display: grid;
  grid-template-columns: 1.3fr 1.1fr;
  gap: 12px;
  flex: 1;
}

.scr-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.scr-item {
  background: var(--paper-2); border: 1px solid var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scr-item .ic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid #38bdf8;
  flex-shrink: 0;
}

.scr-item:nth-child(2) .ic { background: rgba(0, 210, 255, 0.15); border-color: var(--accent-blue); }
.scr-item:nth-child(3) .ic { background: rgba(255, 196, 0, 0.15); border-color: #ffd9a8; }

.scr-item .nm {
  font-size: 10px;
  font-weight: 500;
  color: #ffffff;
  flex: 1;
}

.scr-item .pr {
  font-family: var(--mono);
  font-size: 9px;
  color: #38bdf8;
}

.scr-cart {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scr-cart .ttl-c {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 6px;
}

.scr-cart .row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.scr-cart .row.muted {
  color: #94a3b8;
}

.scr-cart .total {
  margin-top: auto;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border-radius: 6px;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 10px;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.scr-cart .total .big {
  font-family: var(--mono);
  font-size: 11px;
}

/* Glass analytics chart mockup (Replace POS Phone) */
.dev-phone {
  width: 32%;
  height: 52%;
  right: 2%;
  bottom: 8%;
  background: var(--paper-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  transform: rotate(4deg);
}

.dev-phone .scr {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-head .nm {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
}

.phone-head .qr {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.phone-cat {
  display: flex;
  gap: 6px;
  font-size: 8.5px;
}

.phone-cat span {
  padding: 3px 8px;
  border-radius: 99px;
  background: rgba(255,255,255,0.03);
  color: #94a3b8;
  border: 1px solid var(--line);
}

.phone-cat span.act {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
}

.phone-card {
  background: var(--paper-2); border: 1px solid var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.phone-card .img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--skyblue-glow);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.phone-card .img.b {
  background: var(--accent-blue-glow);
  border-color: rgba(0, 210, 255, 0.2);
}

.phone-card .info {
  flex: 1;
}

.phone-card .info .n {
  font-size: 9.5px;
  font-weight: 500;
  color: #ffffff;
}

.phone-card .info .p {
  font-family: var(--mono);
  font-size: 8px;
  color: #94a3b8;
}

.phone-card .add {
  font-family: var(--mono);
  font-size: 9px;
  color: #38bdf8;
}

/* Code terminal mockup */
.dev-eft {
  width: 36%;
  height: 42%;
  left: -2%;
  bottom: 8%;
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  border: 1px solid var(--line-dark);
  transform: rotate(-6deg);
}

.dev-eft .scr {
  height: 100%;
  font-family: var(--mono);
  font-size: 8.5px;
  line-height: 1.4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dev-eft .scr .bar {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 6px;
}

.dev-eft .scr .bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5f56;
}

.dev-eft .scr .bar span:nth-child(2) { background: #ffbd2e; }
.dev-eft .scr .bar span:nth-child(3) { background: #27c93f; }

.dev-eft .scr .cmd {
  color: var(--skyblue);
}

.dev-eft .scr .out {
  color: var(--ink-soft);
  margin-top: 4px;
}

/* floating chips */
.chip {
  position: absolute;
  background: var(--paper-2);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-soft);
}

.chip .blob {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--skyblue);
  box-shadow: 0 0 6px var(--skyblue);
}

.chip-1 {
  top: 4%;
  right: 6%;
  animation: float 6s ease-in-out infinite;
}

.chip-2 {
  bottom: 4%;
  left: 4%;
  animation: float 7s ease-in-out infinite -2s;
}

.chip-3 {
  top: 42%;
  right: -2%;
  animation: float 8s ease-in-out infinite -3s;
  background: var(--skyblue-glow);
  border-color: rgba(56, 189, 248, 0.3);
  color: var(--skyblue);
}

@media(max-width:680px) {
  .chip {
    display: none;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ---------- Client logo ribbon ---------- */
.clients-ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0 42px;
  background: var(--midnight);
  overflow: hidden;
}

.clients-ribbon-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.clients-ribbon-head h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  max-width: 560px;
}

.client-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.client-marquee + .client-marquee {
  margin-top: 14px;
}

.client-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.client-marquee-track.to-left {
  animation: client-marquee-left 38s linear infinite;
}

.client-marquee-track.to-right {
  animation: client-marquee-right 38s linear infinite;
}

.client-logo-set {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  padding-right: 16px;
}

.client-logo {
  flex: 0 0 auto;
  width: 174px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 14px 22px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: .08em;
  transition: transform .2s, border-color .2s, color .2s, box-shadow .2s;
}

.client-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.3);
  color: var(--skyblue);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.05);
}

@keyframes client-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes client-marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media(max-width:780px) {
  .clients-ribbon {
    padding: 30px 0 34px;
  }
  .clients-ribbon-head {
    margin-bottom: 22px;
  }
  .clients-ribbon-head h3 {
    font-size: 13px;
  }
  .client-logo {
    width: 132px;
    height: 52px;
    padding: 10px 18px;
    font-size: 11px;
  }
  .client-marquee-track.to-left, .client-marquee-track.to-right {
    animation-duration: 30s;
  }
}

/* ---------- Stats / numbers strip ---------- */
.stats {
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

@media(max-width:780px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
}

.stat .n {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 5.5vw, 78px);
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--ink);
}

.stat .n .unit {
  font-family: var(--mono);
  font-weight: 400;
  color: var(--skyblue);
  font-size: .65em;
  margin-left: 2px;
}

.stat .lbl {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
  max-width: 230px;
  line-height: 1.5;
}

.stat .lbl strong {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Section heads ---------- */
.s-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}

@media(max-width:880px) {
  .s-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
}

.s-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
}

.s-head h2 em {
  font-style: normal;
  color: var(--skyblue);
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.s-head .deck {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
}

/* ---------- Services grid (Glow Glassmorphism) ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.svc {
  grid-column: span 4;
  background: var(--paper-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}

.svc:hover {
  transform: translateY(-4px);
  background: var(--paper-card-hover);
  box-shadow: 0 20px 40px -20px rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.25);
}

.svc.feat {
  grid-column: span 6;
  min-height: 520px;
}

.svc.tall {
  grid-column: span 4;
  min-height: 520px;
}

.svc.dark {
  background: var(--midnight);
  border-color: var(--line-dark);
}

.svc.dark:hover {
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 20px 40px -20px rgba(0, 210, 255, 0.1);
}

.svc.skyblue {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, var(--paper-card) 100%);
  border-color: rgba(14, 165, 233, 0.15);
}

.svc.skyblue:hover {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, var(--paper-card-hover) 100%);
  border-color: var(--skyblue);
}

.svc-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.svc-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--skyblue);
}

.svc h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-top: 16px;
  color: var(--ink);
}

.svc.feat h3 {
  font-size: 32px;
}

.svc-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 340px;
}

.svc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.svc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.svc-tags span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 99px;
  color: var(--ink-soft);
  background: var(--paper-2); border: 1px solid var(--line);
}

.svc:hover .svc-tags span {
  border-color: rgba(255,255,255,0.1);
}

.svc-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .2s ease, background-color .2s, border-color .2s, color .2s;
}

.svc:hover .svc-arrow {
  transform: rotate(-32deg) scale(1.05);
  background: var(--skyblue);
  color: var(--midnight);
  border-color: var(--skyblue);
}

.svc-arrow svg {
  width: 14px;
  height: 14px;
}

@media(max-width:980px) {
  .svc, .svc.feat, .svc.tall {
    grid-column: span 6;
  }
}

@media(max-width:680px) {
  .svc, .svc.feat, .svc.tall {
    grid-column: span 12;
    min-height: 440px;
  }
}

/* Service card graphic / visual area */
.svc-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2); border: 1px solid var(--line-dark);
  flex-shrink: 0;
}

.svc.feat .svc-img,
.svc.tall .svc-img {
  height: 240px;
}

.svc-img.bg-cream { background: linear-gradient(135deg, #fefaf0 0%, #f9ebe0 100%); }
.svc-img.bg-mint { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); }
.svc-img.bg-peach { background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%); }
.svc-img.bg-blue { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); }
.svc-img.bg-rose { background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%); }
.svc-img.bg-yellow { background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%); }
.svc-img.bg-skyblue { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); }
.svc-img.bg-dark { background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); }

.svc-img svg {
  width: auto;
  height: 64%;
  max-width: 90%;
}

.svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 100%, rgba(56, 189, 248, 0.04), transparent 70%);
  pointer-events: none;
}

.svc-tag-float {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(18, 20, 28, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  color: var(--skyblue);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.svc-tag-float .blob {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--skyblue);
  box-shadow: 0 0 6px var(--skyblue);
}

.svc-content {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

/* ---------- Mobile Services Cleanups ---------- */
@media(max-width:680px) {
  body {
    font-size: 15px;
  }
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section {
    padding: 72px 0;
  }
  .section.tight {
    padding: 54px 0;
  }
  .s-head {
    gap: 18px;
    margin-bottom: 30px;
  }
  .s-head h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.1;
  }
  .s-head .deck {
    font-size: 15px;
  }
  .services {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .services .svc,
  .services .svc.feat,
  .services .svc.tall {
    grid-column: 1 / -1 !important;
    min-height: 0;
    border-radius: 20px;
  }
  .svc-img,
  .svc.feat .svc-img,
  .svc.tall .svc-img {
    height: 178px;
  }
  .svc-tag-float {
    top: 12px;
    left: 12px;
    right: auto;
    font-size: 8px;
  }
  .svc-content {
    padding: 20px;
    gap: 20px;
  }
  .svc-cat {
    font-size: 8.5px;
  }
  .svc h3,
  .svc.feat h3 {
    font-size: clamp(22px, 7vw, 26px);
  }
  .svc-sub {
    font-size: 14px;
    margin-top: 10px;
  }
  .svc-tags {
    gap: 4px;
  }
  .svc-tags span {
    font-size: 8px;
    padding: 3px 6px;
  }
  .svc-arrow {
    width: 36px;
    height: 36px;
  }
}

/* ---------- Spotlight: kiosk dark ---------- */
.spot {
  background: var(--midnight);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 28px;
  padding: 80px;
  border: 1px solid var(--line);
}

@media(max-width:1100px) {
  .spot {
    margin: 0 20px;
    padding: 60px 32px;
  }
}

@media(max-width:680px) {
  .spot {
    margin: 0 14px;
    padding: 40px 20px;
  }
}

.spot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 85% 20%, rgba(56, 189, 248, 0.1), transparent 60%), radial-gradient(40% 50% at 10% 90%, rgba(0, 210, 255, 0.05), transparent 60%);
  pointer-events: none;
}

.spot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

@media(max-width:980px) {
  .spot-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.spot .eyebrow {
  color: var(--skyblue);
}

.spot .eyebrow::before {
  background: var(--skyblue);
  box-shadow: 0 0 8px var(--skyblue);
}

.spot h2 {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-top: 20px;
}

.spot h2 em {
  font-style: normal;
  color: var(--skyblue);
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.spot p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 480px;
}

.spot ul {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.spot ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.spot ul li .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--skyblue-glow);
  border: 1px solid rgba(56, 189, 248, .3);
  display: grid;
  place-items: center;
  color: var(--skyblue);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.1);
}

.spot ul li .check svg {
  width: 10px;
  height: 10px;
}

.spot-cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mockup stack inside Spotlight */
.kiosk-stack {
  position: relative;
  height: 520px;
}

@media(max-width:980px) {
  .kiosk-stack {
    height: 400px;
  }
}

.kiosk {
  position: absolute;
  border-radius: var(--radius);
  background: var(--paper-2); border: 1px solid var(--line-dark);
  border: 1px solid var(--line-dark);
  padding: 12px;
}

.kiosk-tower {
  width: 40%;
  height: 92%;
  left: 6%;
  top: 4%;
  border-radius: 14px 14px 6px 6px;
}

.kiosk-tower .scr {
  background: var(--paper);
  height: 80%;
  border-radius: 8px;
  padding: 12px;
  color: var(--ink-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
}

.kiosk-tower .stand {
  height: 18%;
  background: linear-gradient(180deg, var(--midnight), var(--paper-2));
  border-radius: 0 0 6px 6px;
  margin-top: 2%;
  position: relative;
  border: 1px solid var(--line);
}

.kiosk-wide {
  width: 54%;
  height: 62%;
  right: 0;
  top: 18%;
  border-radius: 12px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-dark);
}

.kiosk-wide .scr {
  background: var(--paper);
  height: 100%;
  border-radius: 8px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.kiosk-grid-card {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kiosk-grid-card .img {
  width: 100%;
  height: 54%;
  border-radius: 4px;
  background: var(--skyblue-glow);
  border: 1px solid rgba(56, 189, 248, 0.1);
}

.kiosk-grid-card:nth-child(2) .img { background: var(--accent-blue-glow); border-color: rgba(0, 210, 255, 0.1); }
.kiosk-grid-card:nth-child(3) .img { background: rgba(255, 196, 0, 0.1); border-color: rgba(255, 196, 0, 0.1); }
.kiosk-grid-card:nth-child(4) .img { background: rgba(255, 95, 86, 0.1); border-color: rgba(255, 95, 86, 0.1); }

.kiosk-grid-card .nm {
  font-size: 9px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 4px;
}

.kiosk-grid-card .pr {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--muted);
}

.kiosk-tower .scr .ttl {
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  color: var(--ink);
}

.kiosk-tower .scr .sub {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--muted);
  text-transform: uppercase;
}

.kiosk-tower .scr .row {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kiosk-tower .scr .row .dot {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--skyblue-glow);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.kiosk-tower .scr .row:nth-child(3) .dot { background: var(--accent-blue-glow); border-color: rgba(0, 210, 255, 0.2); }
.kiosk-tower .scr .row:nth-child(4) .dot { background: rgba(255, 196, 0, 0.08); border-color: rgba(255, 196, 0, 0.2); }

.kiosk-tower .scr .row .nm {
  font-size: 9px;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}

.kiosk-tower .scr .row .pr {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--skyblue);
}

.kiosk-tower .scr .pay {
  margin-top: auto;
  background: var(--skyblue-glow);
  color: var(--skyblue);
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 9.5px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.spot-tag {
  position: absolute;
  background: var(--paper-2);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.spot-tag .blob {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--skyblue);
  box-shadow: 0 0 6px var(--skyblue);
}

.tag-1 {
  top: 0;
  right: -8px;
  transform: rotate(4deg);
}

.tag-2 {
  bottom: 18%;
  left: -8px;
  transform: rotate(-3deg);
  background: var(--skyblue-glow);
  border-color: rgba(56, 189, 248, 0.3);
  color: var(--skyblue);
}

/* ---------- Why us / values ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.value {
  background: var(--paper-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.value .ix {
  font-family: var(--mono);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: var(--skyblue);
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.value h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-top: 24px;
  line-height: 1.2;
  color: var(--ink);
}

.value p {
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- Process / how it works ---------- */
.process {
  background: var(--midnight);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
}

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

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

.step {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}

.step:last-child {
  border-right: none;
}

@media(max-width:880px) {
  .step:nth-child(2) {
    border-right: none;
  }
  .step:nth-child(1), .step:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media(max-width:520px) {
  .step {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .step:last-child {
    border-bottom: none;
  }
}

.step .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.step h5 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.02em;
  margin-top: 20px;
  line-height: 1.2;
  color: var(--ink);
}

.step p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.6;
}

.step .dur {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--skyblue);
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step .dur::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--skyblue);
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

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

.testi {
  background: var(--paper-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.testi.feat {
  background: var(--paper-2);
  border-color: rgba(56, 189, 248, 0.15);
  background-image: radial-gradient(60% 50% at 100% 0%, rgba(56, 189, 248, 0.08), transparent 60%);
}

.testi.feat .stars {
  color: var(--skyblue);
}

.testi.skyblue {
  border-color: rgba(0, 210, 255, 0.15);
  background-image: radial-gradient(60% 50% at 100% 0%, rgba(0, 210, 255, 0.05), transparent 60%);
}

.testi.skyblue .stars {
  color: var(--accent-blue);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--muted);
}

.stars svg {
  width: 14px;
  height: 14px;
}

.testi q {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.5;
  margin-top: 20px;
  display: block;
  color: var(--ink);
}

.testi.feat q {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -.02em;
}

.testi q::before { content: ""; }
.testi q::after { content: ""; }

.testi-author {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--skyblue);
}

.testi.skyblue .testi-author .av {
  color: var(--accent-blue);
}

.testi-author .info .name {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
}

.testi-author .info .role {
  font-size: 11.5px;
  color: var(--muted);
}

/* ---------- Contact Form & Footer ---------- */
.contact-section {
  background: var(--midnight);
  color: var(--ink);
  border-radius: var(--radius-lg);
  margin: 0 28px 40px;
  padding: 80px;
  border: 1px solid var(--line);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 0% 100%, rgba(56, 189, 248, 0.05), transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  position: relative;
}

@media(max-width:980px) {
  .contact-section {
    margin: 0 20px 30px;
    padding: 60px 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media(max-width:680px) {
  .contact-section {
    margin: 0 14px 20px;
    padding: 40px 20px;
  }
}

.contact-info-panel h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-top: 20px;
}

.contact-info-panel h2 em {
  font-style: normal;
  color: var(--skyblue);
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.contact-info-panel p.sub {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 440px;
}

.contact-details {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-item .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--skyblue);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.05);
}

.contact-detail-item .icon svg {
  width: 16px;
  height: 16px;
}

.contact-detail-item .val {
  font-family: var(--display);
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ink);
}

.contact-detail-item .val small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-social-row {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-social-row .social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-dark);
  padding: 8px 16px;
  border-radius: 99px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(255,255,255,.01);
  color: var(--ink-soft);
  transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}

.contact-social-row .social-btn:hover {
  border-color: var(--skyblue);
  color: var(--skyblue);
  background: var(--skyblue-glow);
  transform: translateY(-1px);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.05);
}

.contact-social-row .social-btn svg {
  width: 12px;
  height: 12px;
}

/* Contact Form */
.contact-form-card {
  background: var(--paper-2); border: 1px solid var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: 36px;
}

@media(max-width:680px) {
  .contact-form-card {
    padding: 20px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 14.5px;
  transition: border-color .2s, background .2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--skyblue);
  background: var(--paper);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-cta-row {
  margin-top: 28px;
}

.form-cta-row button {
  width: 100%;
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 80px;
  background: var(--midnight);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}

@media(max-width:880px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand .brand {
  font-size: 20px;
}

.footer-brand p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 16px;
  max-width: 320px;
}

.footer-title {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 14px;
}

.footer-links a {
  color: var(--ink-soft);
  transition: color .15s;
}

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

.footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
}

.footer-bottom a {
  text-decoration: underline;
  color: var(--ink-soft);
}

.footer-bottom a:hover {
  color: var(--ink);
}
