:root {
  --bg: #050505;
  --bg-soft: #0b0c0f;
  --panel: rgba(255,255,255,.055);
  --panel-strong: rgba(255,255,255,.085);
  --text: #f5f7fb;
  --muted: #a5a8b3;
  --line: rgba(255,255,255,.13);
  --line-strong: rgba(255,255,255,.26);
  --accent: #b8c7ff;
  --accent-2: #8d7dff;
  --accent-3: #61e2ff;
  --success: #9effc8;
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1220px;
  --header-h: 84px;
  --ease: cubic-bezier(.2,.72,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 5%, rgba(109,121,255,.13), transparent 34%),
    radial-gradient(circle at 88% 28%, rgba(52,210,255,.08), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 80%);
  mask-image: radial-gradient(circle at center, #000 30%, transparent 80%);
  z-index: -2;
}

::selection { background: rgba(184,199,255,.28); color: white; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

#networkCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .48;
  z-index: -3;
}
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(129,151,255,.11), rgba(84,215,255,.035) 38%, transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
  transition: opacity .4s ease;
}
body.pointer-active .cursor-glow { opacity: 1; }

.section-shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding-block: 118px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  z-index: 50;
  transition: height .35s var(--ease), background .35s ease, border-color .35s ease, padding .35s var(--ease);
}
.site-header.scrolled {
  top: 12px;
  height: 66px;
  padding-inline: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(6,7,10,.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Nunito", sans-serif;
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: -.04em;
}
.brand-mark { position: relative; width: 29px; height: 24px; display: inline-block; }
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(255,255,255,.68);
  transform-origin: left center;
}
.brand-mark::before { width: 19px; left: 5px; top: 7px; transform: rotate(29deg); }
.brand-mark::after { width: 19px; left: 5px; top: 17px; transform: rotate(-29deg); }
.brand-mark span { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: white; box-shadow: 0 0 14px rgba(255,255,255,.4); }
.brand-mark span:nth-child(1) { left: 1px; top: 9px; }
.brand-mark span:nth-child(2) { right: 0; top: 2px; }
.brand-mark span:nth-child(3) { right: 0; bottom: 2px; }

.site-nav { display: flex; gap: 34px; align-items: center; }
.site-nav a { color: #d8dae1; font-size: .91rem; position: relative; transition: color .25s ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: white; transition: right .3s var(--ease); }
.site-nav a:hover { color: white; }
.site-nav a:hover::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(255,255,255,.04); border-radius: 14px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { width: 18px; height: 1px; background: white; transition: transform .25s ease; }

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 68px);
  padding-bottom: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  align-items: center;
  gap: 40px;
  position: relative;
}
.hero-copy { max-width: 720px; position: relative; z-index: 2; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 700;
  color: #c4c7d1;
}
.eyebrow > span { width: 34px; height: 1px; background: linear-gradient(90deg, var(--accent), transparent); }
.hero h1, .project-hero h1, .coming-copy h1 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(3.9rem, 7.2vw, 7.2rem);
  line-height: .94;
  letter-spacing: -.067em;
  font-weight: 900;
  max-width: 900px;
}
.hero h1 em, .project-hero h1 em, .coming-copy h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.75);
  text-shadow: 0 0 28px rgba(147,166,255,.12);
}
.hero-intro {
  margin: 30px 0 0;
  max-width: 630px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 36px; }
.button {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-weight: 700;
  font-size: .91rem;
  border: 1px solid transparent;
  transition: transform .28s var(--ease), border-color .28s ease, background .28s ease, box-shadow .28s ease;
  will-change: transform;
}
.button-primary { background: white; color: #08090b; box-shadow: 0 10px 40px rgba(255,255,255,.12); }
.button-primary:hover { box-shadow: 0 16px 55px rgba(169,182,255,.18); }
.button-ghost { background: rgba(255,255,255,.035); border-color: var(--line); color: white; backdrop-filter: blur(12px); }
.button-ghost:hover { border-color: var(--line-strong); background: rgba(255,255,255,.075); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; color: #8f929c; font-size: .79rem; margin-top: 30px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.status-dot, .live-dot, .pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); display: inline-block; box-shadow: 0 0 15px rgba(158,255,200,.68); }

.hero-visual { min-height: 610px; position: relative; display: grid; place-items: center; }
.logo-stage {
  position: relative;
  width: min(490px, 94%);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 0 100px rgba(103,128,255,.08), inset 0 0 70px rgba(255,255,255,.025);
  transform-style: preserve-3d;
}
.logo-stage::after {
  content: "";
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.13);
  animation: spin 34s linear infinite;
}
.logo-stage img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; position: relative; z-index: 2; filter: drop-shadow(0 20px 42px rgba(0,0,0,.55)); }
.logo-halo { position: absolute; inset: 12%; border-radius: 50%; background: radial-gradient(circle, rgba(153,173,255,.13), transparent 66%); filter: blur(18px); }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.11); }
.orbit::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: white; box-shadow: 0 0 16px rgba(255,255,255,.75); top: 50%; left: -4px; }
.orbit-one { width: 570px; height: 570px; animation: spin 22s linear infinite; }
.orbit-two { width: 630px; height: 420px; transform: rotate(23deg); animation: orbitTilt 28s linear infinite; }
.orbit-three { width: 430px; height: 610px; transform: rotate(-32deg); animation: orbitTiltReverse 31s linear infinite; }
.signal-chip {
  position: absolute;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .57rem;
  letter-spacing: .18em;
  font-weight: 700;
  color: #e7e9f1;
  background: rgba(8,9,13,.7);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}
.chip-one { top: 17%; left: 2%; animation: float 5.6s ease-in-out infinite; }
.chip-two { right: 4%; top: 31%; animation: float 4.8s ease-in-out -1s infinite; }
.chip-three { left: 8%; bottom: 15%; animation: float 6.2s ease-in-out -.5s infinite; }
.scroll-cue { position: absolute; bottom: 28px; left: 0; display: flex; align-items: center; gap: 13px; color: #777b86; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; }
.scroll-cue i { width: 38px; height: 1px; background: linear-gradient(90deg, #aaa, transparent); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: white; transform: translateX(-100%); animation: slideLine 2s ease-in-out infinite; }

.section-heading { margin-bottom: 54px; }
.section-heading h2 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  max-width: 930px;
}
.heading-row { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.heading-row > p { max-width: 430px; color: var(--muted); margin: 0 0 8px; }
.about-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 22px; }
.glass-panel { background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); border: 1px solid var(--line); border-radius: var(--radius); backdrop-filter: blur(18px); }
.about-story { padding: clamp(28px, 5vw, 58px); }
.about-story p { margin: 0 0 22px; color: var(--muted); max-width: 760px; }
.about-story p:last-child { margin-bottom: 0; }
.about-story .large-copy { color: white; font-family: "Nunito", sans-serif; font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.2; font-weight: 700; letter-spacing: -.035em; }
.principles { border-top: 1px solid var(--line); }
.principle-row { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 27px 8px; border-bottom: 1px solid var(--line); }
.principle-row > span { color: #696d78; font-size: .75rem; padding-top: 4px; }
.principle-row strong { display: block; font-family: "Nunito", sans-serif; font-size: 1.15rem; margin-bottom: 4px; }
.principle-row p { margin: 0; color: var(--muted); font-size: .9rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 440px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255,255,255,.07), rgba(255,255,255,.018) 70%);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color .3s ease, background .3s ease;
}
.service-card::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; right: -100px; top: -100px; background: radial-gradient(circle, rgba(141,125,255,.16), transparent 68%); transition: transform .5s var(--ease); }
.service-card:hover { border-color: rgba(255,255,255,.28); background: linear-gradient(155deg, rgba(255,255,255,.095), rgba(255,255,255,.025) 70%); }
.service-card:hover::before { transform: scale(1.28); }
.service-number { position: absolute; top: 28px; right: 28px; color: #6f727c; font-size: .68rem; letter-spacing: .14em; }
.service-card h3 { font-family: "Nunito", sans-serif; font-size: 1.7rem; line-height: 1.1; letter-spacing: -.03em; margin: 115px 0 16px; }
.service-card p { color: var(--muted); margin: 0; font-size: .93rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 30px; }
.service-tags span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; font-size: .66rem; color: #b7bac5; }
.card-line { position: absolute; left: 28px; right: 28px; bottom: 28px; height: 1px; background: var(--line); overflow: hidden; }
.card-line::after { content: ""; position: absolute; width: 34%; height: 100%; background: linear-gradient(90deg, transparent, white, transparent); animation: serviceLine 4s linear infinite; }
.service-icon { position: absolute; left: 28px; top: 28px; width: 68px; height: 68px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.04); }
.phone-icon span { position: absolute; inset: 13px 20px; border: 1px solid white; border-radius: 7px; }
.phone-icon span::before { content: ""; position: absolute; width: 9px; height: 1px; background: white; left: 50%; top: 5px; transform: translateX(-50%); }
.phone-icon span::after { content: ""; position: absolute; width: 3px; height: 3px; border-radius: 50%; background: white; left: 50%; bottom: 4px; transform: translateX(-50%); }
.ai-icon i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: white; box-shadow: 0 0 11px rgba(255,255,255,.5); }
.ai-icon i:nth-child(1) { left: 15px; top: 28px; }
.ai-icon i:nth-child(2) { left: 32px; top: 14px; }
.ai-icon i:nth-child(3) { right: 14px; top: 29px; }
.ai-icon i:nth-child(4) { left: 28px; bottom: 13px; }
.ai-icon i:nth-child(5) { left: 32px; top: 31px; width: 9px; height: 9px; }
.ai-icon::before, .ai-icon::after { content: ""; position: absolute; left: 18px; top: 32px; width: 34px; height: 1px; background: rgba(255,255,255,.55); transform: rotate(-39deg); }
.ai-icon::after { transform: rotate(37deg); }
.web-icon span { position: absolute; left: 14px; right: 14px; height: 7px; border: 1px solid rgba(255,255,255,.8); border-radius: 4px; }
.web-icon span:nth-child(1) { top: 14px; }
.web-icon span:nth-child(2) { top: 29px; width: 25px; right: auto; }
.web-icon span:nth-child(3) { top: 44px; }

.projects-wrap { position: relative; }
.projects-wrap::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(255,255,255,.022) 18%, rgba(255,255,255,.022) 82%, transparent); border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); pointer-events: none; }
.project-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: 20px; }
.project-card { border: 1px solid var(--line); border-radius: 32px; min-height: 560px; overflow: hidden; position: relative; background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); transform-style: preserve-3d; transition: border-color .3s ease; }
.project-card:hover { border-color: rgba(255,255,255,.28); }
.featured-project { display: grid; grid-template-columns: .92fr 1.08fr; padding: clamp(28px, 4vw, 50px); }
.project-copy { position: relative; z-index: 4; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-bottom: 12px; }
.project-label { display: inline-flex; align-items: center; gap: 9px; font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: #c2c5cf; }
.project-card h3 { margin: 18px 0 15px; font-family: "Nunito", sans-serif; font-size: clamp(2.4rem, 4.2vw, 4.35rem); line-height: 1; letter-spacing: -.055em; }
.project-card p { margin: 0; color: var(--muted); max-width: 480px; font-size: .94rem; }
.project-link { margin-top: 30px; display: inline-flex; gap: 9px; align-items: center; font-size: .84rem; font-weight: 700; }
.project-link i { font-style: normal; transition: transform .3s var(--ease); }
.project-card:hover .project-link i { transform: translate(4px,-4px); }
.live-dot { animation: pulseLive 2s ease-in-out infinite; }
.pulse-dot { background: var(--accent); box-shadow: 0 0 15px rgba(184,199,255,.72); animation: pulseLive 1.6s ease-in-out infinite; }
.phone-scene { position: relative; min-height: 470px; display: grid; place-items: center; perspective: 1000px; }
.phone { position: absolute; width: 240px; height: 490px; padding: 9px; border-radius: 40px; border: 1px solid rgba(255,255,255,.42); background: linear-gradient(145deg,#30333c,#08090d 32%,#1b1d23 68%,#090a0c); box-shadow: 0 40px 80px rgba(0,0,0,.48), inset 0 0 0 2px rgba(255,255,255,.025); }
.phone::before { content: ""; position: absolute; width: 70px; height: 20px; border-radius: 0 0 12px 12px; background: #050608; left: 50%; top: 8px; transform: translateX(-50%); z-index: 4; }
.phone-screen { height: 100%; border-radius: 31px; overflow: hidden; background: linear-gradient(180deg,#181b22,#0c0e13); padding: 42px 15px 16px; position: relative; }
.phone-front { z-index: 3; right: 5%; bottom: -32px; transform: rotate(5deg); }
.phone-back { z-index: 1; left: 8%; top: 10px; transform: rotate(-9deg) scale(.9); opacity: .73; }
.app-top small { display: block; color: #747986; font-size: .55rem; margin-bottom: 3px; }
.app-top strong { display: block; font-family: "Nunito", sans-serif; font-size: 1.23rem; }
.goal-row { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 9px; margin-top: 12px; padding: 11px 9px; border-radius: 12px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.06); }
.goal-row div { min-width: 0; }
.goal-row b { font-size: .64rem; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.goal-row small { color: #777c88; font-size: .48rem; display: block; }
.goal-row em { font-style: normal; font-size: .51rem; color: #aeb5c5; }
.goal-check { width: 25px; height: 25px; border-radius: 8px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); color: #cbd0db; font-size: .66rem; }
.goal-check.done { background: rgba(168,195,255,.16); border-color: rgba(168,195,255,.4); color: white; }
.app-stat { margin-top: 14px; padding: 13px; border-radius: 13px; background: linear-gradient(135deg,rgba(134,145,255,.18),rgba(84,220,255,.06)); border: 1px solid rgba(160,175,255,.2); }
.app-stat small { color: #a3a8b6; display: block; font-size: .51rem; }
.app-stat strong { font-family: "Nunito", sans-serif; font-size: 1.6rem; line-height: 1; }
.app-stat strong span { font-size: .58rem; color: #aeb2bd; }
.app-nav { position: absolute; left: 15px; right: 15px; bottom: 13px; height: 35px; border-radius: 12px; background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: space-around; }
.app-nav i { width: 10px; height: 10px; border-radius: 3px; border: 1px solid rgba(255,255,255,.4); }
.app-nav i:nth-child(2) { border-radius: 50%; background: white; box-shadow: 0 0 12px rgba(255,255,255,.35); }
.mini-screen { padding-top: 46px; }
.mini-header { width: 70%; height: 10px; border-radius: 5px; background: rgba(255,255,255,.16); margin-bottom: 18px; }
.heatmap-mini { display: grid; grid-template-columns: repeat(7,1fr); gap: 5px; }
.heatmap-mini i { aspect-ratio: 1; border-radius: 3px; background: rgba(255,255,255,.06); }
.heatmap-mini i.on { background: rgba(174,191,255,.55); box-shadow: 0 0 10px rgba(150,176,255,.18); }
.mini-bars { display: flex; align-items: end; gap: 8px; height: 100px; margin-top: 25px; }
.mini-bars b { flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg,rgba(188,199,255,.6),rgba(188,199,255,.08)); }
.mini-bars b:nth-child(1) { height: 40%; } .mini-bars b:nth-child(2) { height: 75%; } .mini-bars b:nth-child(3) { height: 52%; } .mini-bars b:nth-child(4) { height: 88%; }
.next-project { padding: 38px; display: flex; flex-direction: column; justify-content: space-between; }
.next-project h3 { font-size: clamp(2.25rem,3.4vw,3.5rem); }
.coming-orb { align-self: center; width: 210px; height: 210px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; position: relative; display: grid; place-items: center; margin-block: 28px; box-shadow: inset 0 0 50px rgba(145,158,255,.06),0 0 70px rgba(124,151,255,.06); }
.coming-orb::before, .coming-orb::after { content: ""; position: absolute; inset: 16px; border: 1px dashed rgba(255,255,255,.12); border-radius: 50%; animation: spin 18s linear infinite; }
.coming-orb::after { inset: 41px; animation-direction: reverse; animation-duration: 12s; }
.coming-orb span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: white; box-shadow: 0 0 13px white; }
.coming-orb span:nth-child(1) { left: 15px; top: 50%; } .coming-orb span:nth-child(2) { right: 39px; top: 24px; } .coming-orb span:nth-child(3) { bottom: 31px; left: 55px; }
.coming-orb b { font-family: "Nunito", sans-serif; font-size: 3.4rem; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.6); }

.process-section { overflow: hidden; }
.process-line { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding-top: 38px; }
.process-line::before { content: ""; position: absolute; left: 0; right: 0; top: 49px; height: 1px; background: var(--line); }
.process-progress { position: absolute; left: 0; top: 49px; height: 1px; width: 0; background: linear-gradient(90deg,var(--accent-2),var(--accent-3)); box-shadow: 0 0 12px rgba(117,194,255,.7); transition: width 1.8s var(--ease); }
.process-line article { position: relative; padding-top: 42px; }
.process-line article::before { content: ""; position: absolute; top: 7px; left: 0; width: 14px; height: 14px; border-radius: 50%; background: #0b0c10; border: 1px solid rgba(255,255,255,.38); z-index: 2; box-shadow: 0 0 0 7px #050505; }
.process-line article span { color: #777b86; font-size: .68rem; letter-spacing: .13em; }
.process-line article h3 { margin: 11px 0 7px; font-family: "Nunito", sans-serif; font-size: 1.45rem; }
.process-line article p { margin: 0; color: var(--muted); font-size: .86rem; max-width: 230px; }

.contact-card { min-height: 420px; border: 1px solid var(--line); border-radius: 36px; background: linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.018)); overflow: hidden; position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 50px; padding: clamp(30px,6vw,70px); }
.contact-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px); background-size: 46px 46px; -webkit-mask-image: radial-gradient(circle at 76% 48%,#000,transparent 67%); mask-image: radial-gradient(circle at 76% 48%,#000,transparent 67%); }
.contact-card::after { content: ""; position: absolute; width: 420px; height: 420px; right: -120px; top: -180px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); box-shadow: inset 0 0 70px rgba(145,159,255,.08); }
.contact-copy, .contact-action { position: relative; z-index: 2; }
.contact-copy h2 { margin: 0; font-family: "Nunito", sans-serif; font-size: clamp(2.5rem,4.6vw,4.6rem); line-height: 1.02; letter-spacing: -.055em; }
.contact-copy > p:last-child { color: var(--muted); max-width: 590px; margin: 22px 0 0; }
.contact-action { align-self: end; }
.email-link { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); font-size: clamp(1rem,2vw,1.25rem); font-weight: 700; transition: padding .3s var(--ease); }
.email-link:hover { padding-inline: 10px; }
.email-link i { font-style: normal; font-size: 1.45rem; }
.contact-action p { color: #858994; font-size: .78rem; margin: 15px 0 0; }

.site-footer { min-height: 150px; padding-block: 40px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; border-top: 1px solid var(--line); color: #8e929d; font-size: .75rem; }
.footer-brand { color: white; }
.site-footer > p { margin: 0; text-align: center; }
.footer-right { display: flex; justify-content: flex-end; align-items: end; flex-direction: column; gap: 4px; }
.footer-right a { color: #c4c7d0; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--delay,0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Project detail page */
.project-page { background: radial-gradient(circle at 73% 20%,rgba(104,131,255,.14),transparent 35%),var(--bg); }
.project-hero { min-height: 100svh; padding-top: calc(var(--header-h) + 70px); padding-bottom: 70px; display: flex; flex-direction: column; justify-content: center; }
.back-link { display: inline-flex; width: fit-content; color: #8f939f; font-size: .78rem; margin-bottom: 38px; }
.project-hero-grid { display: grid; grid-template-columns: 1fr .88fr; gap: 58px; align-items: center; }
.project-hero-copy > p { color: var(--muted); max-width: 640px; font-size: 1.02rem; margin: 25px 0 0; }
.project-meta-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 45px; }
.project-meta-list div { padding: 15px 0; border-top: 1px solid var(--line); }
.project-meta-list small { display: block; color: #747884; font-size: .6rem; text-transform: uppercase; letter-spacing: .11em; margin-bottom: 4px; }
.project-meta-list strong { font-size: .78rem; }
.tracker-showcase { min-height: 620px; position: relative; display: grid; place-items: center; }
.hero-phone { position: relative; width: 292px; height: 598px; z-index: 3; transform-style: preserve-3d; }
.showcase-ring { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.ring-a { width: 510px; height: 510px; animation: spin 30s linear infinite; }
.ring-b { width: 570px; height: 380px; transform: rotate(30deg); animation: orbitTilt 24s linear infinite; }
.showcase-ring::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: white; top: 50%; left: -4px; box-shadow: 0 0 13px white; }
.floating-stat { position: absolute; z-index: 4; min-width: 125px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.16); background: rgba(9,10,14,.7); backdrop-filter: blur(13px); border-radius: 15px; box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.floating-stat small { display: block; color: #898e99; font-size: .55rem; }
.floating-stat strong { font-family: "Nunito",sans-serif; }
.stat-a { left: 1%; top: 30%; animation: float 5.5s ease-in-out infinite; }
.stat-b { right: 0; bottom: 25%; animation: float 6.2s ease-in-out -1s infinite; }
.project-intro .heading-row > p { max-width: 510px; }
.quote-panel { margin-top: 55px; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px,5vw,60px); background: linear-gradient(125deg,rgba(255,255,255,.07),rgba(255,255,255,.015)); }
.quote-panel p { margin: 0; max-width: 1040px; font-family: "Nunito",sans-serif; font-size: clamp(1.8rem,3.7vw,3.7rem); line-height: 1.15; letter-spacing: -.04em; }
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.feature-card { min-height: 390px; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.018)); position: relative; overflow: hidden; transform-style: preserve-3d; }
.feature-card > span { color: #727681; font-size: .65rem; letter-spacing: .14em; }
.feature-card h3 { margin: 65px 0 12px; font-family: "Nunito",sans-serif; font-size: 1.75rem; letter-spacing: -.035em; }
.feature-card > p { color: var(--muted); max-width: 470px; margin: 0; font-size: .9rem; }
.widget-demo { position: absolute; left: 30px; right: 30px; bottom: 28px; min-height: 76px; padding: 12px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; display: grid; grid-template-columns: 1fr 32px 34px 32px 34px; gap: 7px; align-items: center; background: rgba(255,255,255,.04); }
.widget-demo div b,.widget-demo div small { display: block; }.widget-demo div b { font-size: .78rem; }.widget-demo div small { color:#777c87;font-size:.57rem; }
.widget-demo button,.widget-demo > strong,.widget-demo > i { width: 32px;height:32px;border-radius:9px;border:1px solid var(--line);background:rgba(255,255,255,.04);display:grid;place-items:center;font-style:normal;font-size:.72rem; }
.widget-demo > i { background:rgba(156,183,255,.16); }
.feature-heatmap { position: absolute; left:30px; right:30px; bottom:30px; display:grid; grid-template-columns:repeat(12,1fr); gap:6px; }
.feature-heatmap i { aspect-ratio:1;border-radius:4px;background:rgba(255,255,255,.06); }
.quick-log { position:absolute; left:30px;right:30px;bottom:30px;border:1px solid var(--line);border-radius:17px;padding:15px;background:rgba(255,255,255,.04); }
.quick-log b { display:block;font-size:.67rem;color:#9296a0;margin-bottom:10px; }.quick-log div{display:flex;justify-content:space-between;align-items:center;}.quick-log div span{width:36px;height:36px;display:grid;place-items:center;border:1px solid var(--line);border-radius:10px;}.quick-log div strong{font-family:"Nunito",sans-serif;font-size:2rem;}.quick-log i{display:block;margin-top:12px;padding:8px;text-align:center;border-radius:9px;background:white;color:#090a0d;font-style:normal;font-size:.65rem;font-weight:700;}
.stat-bars { position:absolute;left:30px;right:30px;bottom:30px;height:115px;display:flex;align-items:end;gap:10px;border-bottom:1px solid var(--line);padding-inline:8px; }
.stat-bars i { flex:1;height:var(--h);border-radius:6px 6px 0 0;background:linear-gradient(180deg,rgba(174,188,255,.76),rgba(174,188,255,.09)); }
.privacy-band { padding-block: 105px; margin-block: 35px; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); background: linear-gradient(135deg,rgba(137,151,255,.075),rgba(83,218,255,.025)); }
.privacy-grid { display:grid;grid-template-columns:1.2fr .8fr;gap:60px;align-items:end; }.privacy-grid h2{margin:0;font-family:"Nunito",sans-serif;font-size:clamp(2.7rem,5vw,5rem);line-height:1;letter-spacing:-.055em;}.privacy-points{display:grid;gap:13px;}.privacy-points p{margin:0;padding:16px 0;border-bottom:1px solid var(--line);color:#d5d8e0}.privacy-points span{display:inline-grid;place-items:center;width:25px;height:25px;border-radius:8px;background:rgba(158,255,200,.1);color:var(--success);margin-right:10px;}

/* Coming soon page */
.coming-page { min-height:100svh;display:flex;flex-direction:column; }
.coming-page main { flex:1;display:flex; }
.coming-hero { min-height:calc(100svh - 150px);padding-top:calc(var(--header-h) + 50px);padding-bottom:60px;display:flex;flex-direction:column;justify-content:center; }
.coming-layout { display:grid;grid-template-columns:1.05fr .95fr;align-items:center;gap:70px; }
.coming-copy h1 { font-size:clamp(3.8rem,7vw,7rem);max-width:760px; }.coming-copy > p{color:var(--muted);max-width:620px;font-size:1.02rem;margin:27px 0 35px;}
.coming-visual { min-height:520px;position:relative;display:grid;place-items:center; }
.core-sphere { width:250px;height:250px;border-radius:50%;border:1px solid rgba(255,255,255,.24);display:grid;place-items:center;background:radial-gradient(circle at 38% 30%,rgba(190,202,255,.16),rgba(255,255,255,.02) 45%,rgba(0,0,0,.2));box-shadow:inset -25px -25px 70px rgba(0,0,0,.45),0 0 100px rgba(114,134,255,.12);position:relative;animation:float 7s ease-in-out infinite; }
.core-sphere::before,.core-sphere::after{content:"";position:absolute;border-radius:50%;border:1px dashed rgba(255,255,255,.13);}.core-sphere::before{inset:-55px;animation:spin 18s linear infinite;}.core-sphere::after{inset:-115px;animation:spin 31s linear reverse infinite;}.core-sphere span{font-family:"Nunito",sans-serif;font-size:5rem;color:transparent;-webkit-text-stroke:1px rgba(255,255,255,.72);}
.satellite{position:absolute;width:9px;height:9px;border-radius:50%;background:white;box-shadow:0 0 18px white;}.sat-one{left:15%;top:30%;}.sat-two{right:10%;top:48%;}.sat-three{left:30%;bottom:10%;}.scan-line{position:absolute;width:430px;height:1px;background:linear-gradient(90deg,transparent,white,transparent);opacity:.35;animation:scan 4.5s ease-in-out infinite;}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbitTilt { from { transform: rotate(23deg) rotate(0); } to { transform: rotate(23deg) rotate(360deg); } }
@keyframes orbitTiltReverse { from { transform: rotate(-32deg) rotate(360deg); } to { transform: rotate(-32deg) rotate(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes slideLine { 0% { transform: translateX(-100%); } 50%,100% { transform: translateX(100%); } }
@keyframes serviceLine { from { transform: translateX(-150%); } to { transform: translateX(430%); } }
@keyframes pulseLive { 0%,100% { opacity:.55; transform:scale(.82); } 50% { opacity:1; transform:scale(1.1); } }
@keyframes scan { 0%,100%{transform:translateY(-150px);opacity:0;} 25%{opacity:.45;} 75%{opacity:.45;} 100%{transform:translateY(150px);opacity:0;} }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr .82fr; }
  .hero-visual { min-height: 540px; }
  .orbit-one { width: 490px; height:490px; }.orbit-two{width:540px;height:370px}.orbit-three{width:370px;height:520px}
  .service-card { min-height: 410px; }
  .featured-project { grid-template-columns: 1fr; }
  .project-copy { justify-content:flex-start;max-width:520px; }
  .phone-scene { min-height: 420px; }
  .phone-front { right:13%; }.phone-back{left:18%;}
  .project-grid { grid-template-columns: 1.2fr .8fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }
  .section-shell,.site-header { width:min(100% - 32px,var(--max)); }
  .section-pad { padding-block: 90px; }
  .menu-toggle { display:flex; position:relative;z-index:2; }
  .site-nav { position:absolute;left:0;right:0;top:calc(100% + 10px);padding:18px;border:1px solid var(--line);border-radius:20px;background:rgba(6,7,10,.94);backdrop-filter:blur(18px);display:grid;gap:0;opacity:0;transform:translateY(-10px);pointer-events:none;transition:.25s ease; }
  .site-nav a { padding:13px 8px;border-bottom:1px solid rgba(255,255,255,.07); }.site-nav a:last-child{border-bottom:0}.site-nav a::after{display:none}
  .site-nav.open { opacity:1;transform:translateY(0);pointer-events:auto; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1){transform:translateY(3.5px) rotate(45deg)}.menu-toggle[aria-expanded="true"] > span:nth-child(2){transform:translateY(-3.5px) rotate(-45deg)}
  .hero { grid-template-columns:1fr; padding-top:calc(var(--header-h) + 70px); }
  .hero-copy { max-width:820px; }
  .hero-visual { min-height:540px; }
  .scroll-cue { display:none; }
  .heading-row { display:block; }.heading-row > p{margin-top:25px;}
  .about-grid,.project-grid,.project-hero-grid,.coming-layout { grid-template-columns:1fr; }
  .service-grid { grid-template-columns:1fr 1fr; }.service-card:last-child{grid-column:1 / -1;min-height:340px}.service-card:last-child h3{margin-top:100px}
  .project-card { min-height:520px; }.next-project{min-height:440px}
  .process-line { grid-template-columns:1fr 1fr; gap:42px 24px; }.process-line::before,.process-progress{display:none}.process-line article{padding-top:30px;border-top:1px solid var(--line)}.process-line article::before{top:-7px}
  .contact-card { grid-template-columns:1fr;align-items:start; }.contact-action{width:100%;margin-top:30px}
  .site-footer { grid-template-columns:1fr 1fr; }.site-footer>p{display:none}.footer-right{align-items:flex-end}
  .tracker-showcase{order:-1;min-height:580px}.project-hero{padding-top:calc(var(--header-h) + 45px)}.project-hero-grid{gap:25px}.project-meta-list{max-width:700px}
  .privacy-grid{grid-template-columns:1fr;gap:45px}
  .coming-visual{order:-1;min-height:430px}
}

@media (max-width: 640px) {
  .section-shell,.site-header { width: min(100% - 22px,var(--max)); }
  .site-header.scrolled { top:8px; }
  .hero { padding-top:calc(var(--header-h) + 50px);padding-bottom:40px; }
  .hero h1,.project-hero h1,.coming-copy h1 { font-size:clamp(3.25rem,16vw,5.4rem); }
  .hero-intro { margin-top:22px; }
  .hero-actions { display:grid;grid-template-columns:1fr;width:100%; }.button{width:100%}
  .hero-meta { flex-direction:column;gap:7px; }
  .hero-visual { min-height:420px; }.logo-stage{width:min(360px,91%)}.orbit-one{width:390px;height:390px}.orbit-two{width:420px;height:290px}.orbit-three{width:290px;height:420px}.signal-chip{font-size:.49rem}.chip-one{left:0}.chip-two{right:0}
  .section-pad { padding-block:72px; }.section-heading{margin-bottom:38px}.section-heading h2{font-size:clamp(2.5rem,12vw,4rem)}
  .about-story{padding:26px}.about-grid{gap:35px}
  .service-grid,.feature-grid { grid-template-columns:1fr; }.service-card,.service-card:last-child{grid-column:auto;min-height:390px}
  .project-card{border-radius:24px}.featured-project{padding:25px;min-height:700px}.phone-scene{min-height:410px}.phone{width:200px;height:410px;border-radius:34px}.phone-screen{border-radius:26px;padding:38px 12px 12px}.phone-front{right:3%;bottom:-10px}.phone-back{left:0;top:20px}.goal-row{padding:8px 7px;margin-top:8px}.app-stat{padding:10px}.app-nav{left:12px;right:12px}.next-project{padding:26px;min-height:470px}
  .process-line { grid-template-columns:1fr; }.process-line article p{max-width:none}
  .contact-card { min-height:0;padding:28px 22px;border-radius:25px }.contact-copy h2{font-size:clamp(2.35rem,11vw,3.5rem)}.email-link{font-size:.91rem}
  .site-footer { grid-template-columns:1fr;gap:20px; }.footer-right{align-items:flex-start}
  .tracker-showcase{min-height:500px}.hero-phone{width:235px;height:480px}.ring-a{width:390px;height:390px}.ring-b{width:430px;height:290px}.floating-stat{min-width:105px;padding:10px}.stat-a{left:-3%}.stat-b{right:-2%}.project-meta-list{grid-template-columns:1fr}.project-meta-list div{padding:10px 0}.quote-panel{padding:25px}.feature-card{min-height:410px;padding:24px}.feature-card h3{margin-top:50px}.widget-demo,.feature-heatmap,.quick-log,.stat-bars{left:24px;right:24px}.widget-demo{grid-template-columns:1fr 30px 27px 30px 30px}.widget-demo button,.widget-demo>strong,.widget-demo>i{width:29px;height:29px}.feature-heatmap{gap:4px}
  .privacy-band{padding-block:72px}.privacy-grid h2{font-size:clamp(2.5rem,12vw,4rem)}
  .coming-visual{min-height:360px}.core-sphere{width:190px;height:190px}.core-sphere::before{inset:-40px}.core-sphere::after{inset:-80px}.scan-line{width:300px}
}

@media (hover: none) {
  .cursor-glow { display:none; }
}

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

/* Easy Goal Tracker real project preview */
.real-app-scene{position:relative;min-height:460px}
.real-phone{position:absolute;width:235px;aspect-ratio:945/2048;border-radius:34px;padding:7px;background:linear-gradient(145deg,#31323a,#07080d 45%,#545966);box-shadow:0 28px 70px rgba(0,0,0,.52);overflow:hidden}
.real-phone img{width:100%;height:100%;object-fit:cover;border-radius:28px}
.real-phone-back{right:160px;top:54px;transform:rotate(-8deg) scale(.92);opacity:.68}
.real-phone-front{right:34px;top:18px;transform:rotate(5deg)}
.project-app-icon{position:absolute;left:26px;top:38px;width:118px;height:118px;border-radius:50%;z-index:3;filter:drop-shadow(0 18px 35px rgba(0,0,0,.42));border:1px solid rgba(255,255,255,.16)}
@media(max-width:900px){.real-app-scene{min-height:410px}.real-phone{width:205px}.real-phone-back{right:125px}.real-phone-front{right:18px}.project-app-icon{width:92px;height:92px;left:15px}}
@media(max-width:620px){.real-app-scene{min-height:360px}.real-phone{width:172px;border-radius:28px}.real-phone img{border-radius:22px}.real-phone-back{right:88px;top:58px}.real-phone-front{right:4px;top:28px}.project-app-icon{width:72px;height:72px;left:0;top:18px}}


/* Original Beconnect logo in header and footer */
.brand-logo-link{padding:0;border:0;background:transparent;display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto}
.brand-logo-image{width:52px;height:52px;border-radius:50%;object-fit:cover;border:1px solid rgba(255,255,255,.16);box-shadow:0 10px 30px rgba(0,0,0,.35)}
.footer-logo-image{width:64px;height:64px;border-radius:50%;object-fit:cover;border:1px solid rgba(255,255,255,.14)}

/* Contact forms */
.contact-card{align-items:center}
.contact-form-wrap{position:relative;z-index:2;width:100%;max-width:560px;justify-self:end}
.contact-form{display:grid;gap:14px}
.contact-form label{display:grid;gap:8px;color:#dfe2ea;font-size:.78rem;font-weight:700;letter-spacing:.01em}
.contact-form input,.contact-form textarea{width:100%;border:1px solid rgba(255,255,255,.15);background:rgba(5,7,11,.58);color:#fff;border-radius:15px;padding:14px 15px;font:inherit;outline:none;transition:border-color .2s ease,box-shadow .2s ease,background .2s ease}
.contact-form input:focus,.contact-form textarea:focus{border-color:rgba(188,201,255,.62);box-shadow:0 0 0 4px rgba(139,157,255,.11);background:rgba(8,11,18,.76)}
.contact-form textarea{min-height:132px;resize:vertical}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:#797e89}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.contact-submit{border:0;width:100%;margin-top:2px;cursor:pointer}
.contact-details{display:flex;flex-direction:column;gap:7px;margin-top:25px;color:#8f949f;font-size:.82rem}
.contact-details a{color:#fff;font-weight:700}
.form-message{display:none;padding:12px 14px;margin-bottom:13px;border-radius:13px;font-size:.8rem;line-height:1.45}
.form-message.show{display:block}
.form-message.success{border:1px solid rgba(125,239,176,.28);background:rgba(125,239,176,.09);color:#caffdf}
.form-message.error{border:1px solid rgba(255,132,132,.25);background:rgba(255,132,132,.08);color:#ffd2d2}
.honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important}
@media(max-width:900px){.contact-form-wrap{max-width:none;justify-self:stretch}.contact-card{gap:34px}}
@media(max-width:640px){.brand-logo-image{width:46px;height:46px}.footer-logo-image{width:58px;height:58px}.form-row{grid-template-columns:1fr}.contact-form textarea{min-height:150px}}

/* =========================================================
   LANDING PAGE FINAL FIX — logo sizing + contact form
   ========================================================= */

/* Keep the original Beconnect artwork, but prevent the raw image
   dimensions from affecting the header or footer. */
.site-header .brand-logo-link,
.site-footer .brand-logo-link {
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  overflow: visible !important;
}

.site-header .brand-logo-image {
  display: block !important;
  width: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  height: 50px !important;
  min-height: 50px !important;
  max-height: 50px !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.35) !important;
}

.site-footer .footer-logo-image {
  display: block !important;
  width: 58px !important;
  min-width: 58px !important;
  max-width: 58px !important;
  height: 58px !important;
  min-height: 58px !important;
  max-height: 58px !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,.34) !important;
}

/* The hero artwork intentionally remains large. */
.hero-visual .logo-stage img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Contact section layout */
.contact-card {
  align-items: center !important;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr) !important;
  gap: clamp(34px, 5vw, 72px) !important;
}

.contact-copy,
.contact-form-wrap {
  position: relative !important;
  z-index: 3 !important;
  min-width: 0 !important;
}

.contact-form-wrap {
  width: 100% !important;
  max-width: 610px !important;
  justify-self: end !important;
  padding: clamp(22px, 2.6vw, 30px) !important;
  border: 1px solid rgba(184,199,255,.16) !important;
  border-radius: 28px !important;
  background:
    linear-gradient(180deg,rgba(18,22,34,.94),rgba(10,13,21,.9)) !important;
  box-shadow:
    0 28px 70px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.contact-form {
  display: grid !important;
  gap: 15px !important;
  width: 100% !important;
}

.contact-form .form-row {
  display: grid !important;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 12px !important;
}

.contact-form label {
  display: grid !important;
  gap: 8px !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: #eef0f7 !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.contact-form label > span {
  display: block !important;
}

.contact-form input,
.contact-form textarea {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border: 1px solid rgba(196,207,255,.18) !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.045) !important;
  color: #fff !important;
  padding: 14px 15px !important;
  font: inherit !important;
  font-size: .92rem !important;
  line-height: 1.45 !important;
  outline: none !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease !important;
}

.contact-form input {
  min-height: 50px !important;
}

.contact-form textarea {
  min-height: 142px !important;
  resize: vertical !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #858b99 !important;
  opacity: 1 !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(184,199,255,.62) !important;
  background: rgba(255,255,255,.065) !important;
  box-shadow: 0 0 0 4px rgba(141,125,255,.11) !important;
}

.contact-form .contact-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 52px !important;
  margin-top: 3px !important;
  border: 0 !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  color: #080a0f !important;
  background: linear-gradient(135deg,#f5f7ff,#b8c7ff) !important;
  box-shadow: 0 16px 38px rgba(80,99,190,.2) !important;
}

.contact-form .contact-submit:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.04) !important;
}

.contact-form .honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form-wrap .form-message {
  display: none !important;
  margin: 0 0 14px !important;
  padding: 13px 15px !important;
  border-radius: 14px !important;
  font-size: .82rem !important;
  line-height: 1.5 !important;
}

.contact-form-wrap .form-message.show { display: block !important; }
.contact-form-wrap .form-message.success {
  border: 1px solid rgba(125,239,176,.28) !important;
  background: rgba(125,239,176,.09) !important;
  color: #caffdf !important;
}
.contact-form-wrap .form-message.error {
  border: 1px solid rgba(255,132,132,.25) !important;
  background: rgba(255,132,132,.08) !important;
  color: #ffd2d2 !important;
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }
  .contact-form-wrap {
    max-width: none !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 640px) {
  .site-header .brand-logo-image {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
  }
  .site-footer .footer-logo-image {
    width: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
  }
  .contact-form-wrap {
    padding: 18px !important;
    border-radius: 22px !important;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
  .contact-form textarea {
    min-height: 155px !important;
  }
}
