@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --font-heading: "Cinzel", serif;
  --font-body: "Outfit", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --red: #3E8BBD;
  --red-light: #60a5fa;
  --red-dark: #2C6488;
  --black: #0f172a;
  --ink: #121212;
  --white: #ffffff;
  --surface: #faf9f6;
  --surface-2: #f6f5f3;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: rgba(0, 0, 0, 0.05);

  --container: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.font-display {
  font-family: var(--font-heading);
}

.font-mono {
  font-family: var(--font-mono);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.eyebrow .line {
  width: 32px;
  height: 1px;
  background: var(--red);
}

.h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  color: var(--black);
}

.text-accent {
  color: var(--red);
}

/* ---- Keyframes ---- */
@keyframes goldPulse {

  0%,
  100% {
    opacity: .5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0) rotate(0) scale(1);
  }

  50% {
    transform: translateY(-15px) rotate(3deg) scale(1.03);
  }
}

@keyframes border-glow-sweep {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }

  100% {
    transform: translateX(300%) skewX(-15deg);
  }
}

@keyframes card-shimmer {
  0% {
    transform: translate(-150%) rotate(15deg);
  }

  100% {
    transform: translate(250%) rotate(15deg);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gold-dot-pulse {
  animation: goldPulse 2.5s ease-in-out infinite;
}

.float-anim {
  animation: float 7s ease-in-out infinite;
}

.float-anim-slow {
  animation: float-slow 9s ease-in-out infinite;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(62, 139, 189, .18) 20%, rgba(62, 139, 189, .55) 50%, rgba(62, 139, 189, .18) 80%, transparent 95%);
  background-size: 200% 100%;
  animation: border-glow-sweep 5s ease-in-out infinite;
}

/* ---- Header ---- */
header.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 94%;
  max-width: 1180px;
}

.nav-desktop {
  display: none;
  border-radius: 999px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 2px 30px rgba(10, 10, 10, 0.08), 0 0 0 1px rgba(62, 139, 189, 0.12);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: block;
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 170px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text .n1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--black);
}

.brand-text .n2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 8px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  position: relative;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--text-secondary);
  transition: all .25s ease;
}

.nav-link:hover {
  color: var(--black);
  background: rgba(0, 0, 0, 0.04);
}

.nav-link.active {
  color: var(--red);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 2px;
  border-radius: 99px;
  background: var(--red);
}

.btn-connect {
  margin-left: 12px;
  padding: 11px 26px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .3s ease;
  border: none;
  cursor: pointer;
}

.btn-connect:hover {
  background: var(--red);
}

/* Mobile nav */
.nav-mobile {
  display: block;
}

@media (min-width: 900px) {
  .nav-mobile {
    display: none;
  }
}

.nav-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(10, 10, 10, 0.1);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--black);
  padding: 6px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 12px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(10, 10, 10, 0.8);
}

.mobile-link:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--black);
}

.mobile-cta {
  margin-top: 6px;
  background: var(--black);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 13px;
  border-radius: 12px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) brightness(.85);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, .25) 0%, rgba(10, 10, 10, .45) 60%, rgba(10, 10, 10, .7) 100%);
}

#particle-canvas,
#mouse-glow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.orb-1 {
  top: 8%;
  right: 12%;
  width: 420px;
  height: 420px;
  background: rgba(62, 139, 189, 0.16);
  filter: blur(140px);
}

.orb-2 {
  bottom: 8%;
  left: 5%;
  width: 360px;
  height: 360px;
  background: rgba(62, 139, 189, 0.14);
  filter: blur(120px);
}

.orb-3 {
  top: 42%;
  left: 42%;
  width: 220px;
  height: 220px;
  background: rgba(62, 139, 189, 0.1);
  filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--red);
}

.hero-eyebrow .rule {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62, 139, 189, .6), transparent);
}

.hero-eyebrow .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(96, 165, 250, .9);
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #fff;
  font-size: clamp(34px, 6vw, 78px);
  text-shadow: 0 2px 40px rgba(0, 0, 0, .5);
}

.hero p {
  margin-top: 22px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, .7);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.hero-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .5s cubic-bezier(.19, 1, .22, 1);
}

.hero-btn-primary {
  background: rgba(18, 33, 56, .75);
  color: #fff;
  border: 1px solid rgba(62, 139, 189, .4);
  backdrop-filter: blur(16px);
}

.hero-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 20%, rgba(62, 139, 189, .3) 40%, rgba(255, 255, 255, .4) 50%, rgba(62, 139, 189, .3) 60%, transparent 80%);
  background-size: 250% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.hero-btn-primary:hover {
  border-color: rgba(62, 139, 189, .8);
  box-shadow: 0 0 30px rgba(62, 139, 189, .35), 0 0 60px rgba(62, 139, 189, .15), 0 8px 25px rgba(0, 0, 0, .2);
  transform: translateY(-3px) scale(1.02);
}

.hero-btn-primary:active {
  transform: translateY(-1px) scale(.98);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, .05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

.hero-btn-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, .15) 45%, rgba(255, 255, 255, .25) 50%, rgba(255, 255, 255, .15) 55%, transparent 75%);
  background-size: 250% 100%;
  animation: shimmer 3s ease-in-out infinite;
  animation-delay: .5s;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .4);
  box-shadow: 0 0 30px rgba(255, 255, 255, .1), 0 8px 25px rgba(0, 0, 0, .3);
  transform: translateY(-3px) scale(1.02);
}

.hero-btn svg {
  width: 16px;
  height: 16px;
  transition: transform .4s ease;
}

.hero-btn-primary:hover svg {
  transform: translate(3px, -3px);
}

.hero-stats {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .15em;
  margin-top: 4px;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .6;
  z-index: 5;
}

.scroll-hint span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.scroll-pill {
  width: 20px;
  height: 32px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-pill .dot2 {
  width: 2px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .6);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {

  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: .3;
    transform: translateY(6px);
  }
}

/* ---- About ---- */
.about {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 980px) {
  .about-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

.about-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 18px;
  max-width: 540px;
}

.feature-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: all .3s ease;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-item:hover {
  border-color: rgba(62, 139, 189, .2);
  background: rgba(62, 139, 189, .03);
  color: var(--ink);
}

.feature-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: rgba(62, 139, 189, .1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.feature-icon svg {
  width: 12px;
  height: 12px;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
}

.link-cta svg {
  width: 14px;
  height: 14px;
  transition: transform .3s ease;
}

.link-cta:hover svg {
  transform: translateX(4px);
}

.about-image {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  background-size: cover;
  background-position: center;
}

/* ---- Services ---- */
.services-intro {
  max-width: 560px;
}

.services-intro p {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.sub-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0 22px;
}

.sub-row .label {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.sub-row .rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .cards-grid.software {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .cards-grid.network {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 100%;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 30px;
  transition: all .5s cubic-bezier(.19, 1, .22, 1);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 30%;
  height: 220%;
  top: -60%;
  left: -40%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .05) 30%, rgba(255, 255, 255, .2) 48%, rgba(255, 255, 255, .3) 50%, rgba(255, 255, 255, .2) 52%, rgba(255, 255, 255, .05) 70%, transparent 100%);
  transform: translate(-120%) rotate(15deg);
}

.service-card:hover::before {
  animation: card-shimmer 1.2s ease-in-out infinite;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 139, 189, .45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4), 0 0 60px rgba(62, 139, 189, .12);
}

.service-card .glow1,
.service-card .glow2 {
  position: absolute;
  border-radius: 99px;
  pointer-events: none;
  transition: all .6s ease;
}

.service-card .glow1 {
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  background: rgba(62, 139, 189, .05);
  filter: blur(40px);
}

.service-card .glow2 {
  bottom: -32px;
  left: -32px;
  width: 80px;
  height: 80px;
  background: rgba(62, 139, 189, .04);
  filter: blur(30px);
}

.service-card:hover .glow1 {
  background: rgba(62, 139, 189, .12);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(62, 139, 189, .1);
  color: var(--red-light);
  margin-bottom: 22px;
  transition: all .4s ease;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card:hover .service-icon {
  background: var(--red);
  color: #fff;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  transition: color .3s ease;
}

.service-card:hover h3 {
  color: var(--red-light);
}

.service-card p {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .5);
}

.service-card:hover p {
  color: rgba(255, 255, 255, .78);
}

.service-explore {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.service-card:hover .service-explore {
  color: var(--red-light);
}

.service-explore svg {
  width: 13px;
  height: 13px;
}

/* ---- Portfolio ---- */
.portfolio {
  background: var(--surface-2);
}

.portfolio-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 700px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: all .3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 139, 189, .4);
}

.portfolio-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f5f5f5;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.portfolio-body {
  padding: 20px;
}

.portfolio-tag {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.portfolio-card h3 {
  font-family: var(--font-heading);
  margin-top: 6px;
  font-size: 17px;
  color: var(--black);
}

.portfolio-card p {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.portfolio-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.portfolio-card:hover .portfolio-link {
  color: var(--red);
}

.portfolio-link svg {
  width: 13px;
  height: 13px;
  transition: transform .3s ease;
}

.portfolio-card:hover .portfolio-link svg {
  transform: translateX(3px);
}

/* ---- Contact ---- */
.contact {
  background: var(--surface);
  position: relative;
}

.contact-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-head h2 {
  margin-top: 0;
}

.contact-head p {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 16px;
}

.contact-layout {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.5fr 1fr;
  }
}

.contact-form {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: .04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: all .25s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(62, 139, 189, .08);
}

.field.error input,
.field.error select {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(62, 139, 189, .12);
}

.submit-btn {
  position: relative;
  overflow: hidden;

  width: 100%;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}

.submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;

  background: linear-gradient(105deg,
      transparent 20%,
      rgba(62, 139, 189, .25) 40%,
      rgb(255, 255, 255) 50%,
      rgba(62, 139, 189, .25) 60%,
      transparent 80%);

  background-size: 250% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.submit-btn:hover {
  background: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(62, 139, 189, .35);
}

.form-note {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.form-shake {
  animation: shake .4s ease-in-out;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rapid-card {
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 22px;
}

.rapid-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(62, 139, 189, .1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.rapid-icon svg {
  width: 15px;
  height: 15px;
}

.rapid-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--black);
}

.rapid-card p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.rapid-status {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
}

.rapid-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--red);
}

.info-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(62, 139, 189, .1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 16px;
  height: 16px;
}

.info-label {
  font-size: 11px;
  color: var(--text-muted);
}

.info-value {
  font-size: 14px;
  color: var(--ink);
  margin-top: 3px;
}

/* ---- Footer ---- */
footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer-inner {
  padding: 56px 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 760px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 32px;
  }
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}

.footer-brand .dot3 {
  color: var(--red);
}

.footer-tagline {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--text-secondary);
  max-width: 280px;
  line-height: 1.6;
}

.footer-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-cta:hover {
  background: var(--red);
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-contact-item {
  font-size: 13.5px;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact-item .ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(62, 139, 189, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-item .ic svg {
  width: 13px;
  height: 13px;
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-brand-logo {
  width: 170px;
  height: 44px;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
  }
}

footer{
    background:var(--surface-2);
    border-top:1px solid var(--border);
}

.footer-inner{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
    padding:60px 0;
    align-items:start;
}

.footer-brand{
    display:inline-flex;
    align-items:center;
    padding:0;
    margin:0;
}

.footer-brand-logo{
    width:170px;
    height:auto;
    display:block;
}

.footer-tagline{
    margin:20px 0;
    max-width:320px;
    line-height:1.8;
    color:var(--text-secondary);
}

.footer-heading{
    margin-bottom:18px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
}

.footer-contact-item span:last-child,
.footer-contact-item a{
    word-break:break-word;
}

.footer-bottom{
    border-top:1px solid var(--border);
    padding:22px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

@media(max-width:992px){

.footer-inner{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:700px){

.footer-inner{
    grid-template-columns:1fr;
    gap:35px;
    text-align:center;
}

.footer-brand{
    justify-content:center;
}

.footer-tagline{
    margin-inline:auto;
}

.footer-links{
    align-items:center;
}

.footer-contact-item{
    justify-content:center;
    text-align:left;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

}

.status-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(62, 139, 189, .6);
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background: rgba(62, 139, 189, .25);
  color: var(--black);
}