/* SynthShade PDX — longhand-only stylesheet */

:root {
  --radius: 0.25rem;

  --neon-yellow: oklch(0.6 0.28 300);
  --neon-cyan: oklch(0.75 0.18 250);
  --neon-magenta: oklch(0.7 0.25 330);

  --background: oklch(0.1 0.03 280);
  --foreground: oklch(0.95 0.02 100);
  --card: oklch(0.14 0.04 280);
  --card-foreground: oklch(0.95 0.02 100);
  --primary: var(--neon-yellow);
  --primary-foreground: oklch(0.1 0.02 280);
  --secondary: oklch(0.2 0.05 280);
  --secondary-foreground: oklch(0.95 0.02 100);
  --third: oklch(0.8324 0.1452 212.28);
  --third-foreground: oklch(0.6827 0.2428 352.2);
  --muted: oklch(0.18 0.04 280);
  --muted-foreground: oklch(0.65 0.05 220);
  --accent: var(--neon-cyan);
  --accent-foreground: oklch(0.1 0.02 280);
  --border: oklch(0.3 0.08 270 / 50%);
  --input: oklch(0.22 0.06 280);
  --ring: var(--neon-cyan);

  --gradient-cyber: linear-gradient(
    135deg,
    var(--neon-magenta) 0%,
    var(--neon-yellow) 50%,
    var(--neon-cyan) 100%
  );

  --shadow-neon-yellow:
    0 0 2px oklch(1 0 0 / 90%),
    0 0 6px oklch(0.85 0.2 300 / 95%),
    0 0 14px oklch(0.6 0.28 300 / 90%),
    0 0 28px oklch(0.6 0.28 300 / 70%),
    0 0 56px oklch(0.6 0.28 300 / 45%),
    0 0 90px oklch(0.55 0.28 300 / 30%);

  --shadow-neon-cyan:
    0 0 2px oklch(1 0 0 / 90%),
    0 0 6px oklch(0.9 0.15 240 / 95%),
    0 0 14px oklch(0.75 0.18 250 / 90%),
    0 0 28px oklch(0.75 0.18 250 / 70%),
    0 0 56px oklch(0.75 0.18 250 / 45%),
    0 0 90px oklch(0.7 0.18 250 / 30%);

  --shadow-neon-magenta:
    0 0 2px oklch(1 0 0 / 90%),
    0 0 6px oklch(0.88 0.22 330 / 95%),
    0 0 14px oklch(0.7 0.25 330 / 90%),
    0 0 28px oklch(0.7 0.25 330 / 70%),
    0 0 56px oklch(0.7 0.25 330 / 45%),
    0 0 90px oklch(0.65 0.25 330 / 30%);

  --font-display: "Orbitron", "Rajdhani", sans-serif;
  --font-sans: "Rajdhani", system-ui, sans-serif;

  --container-max: 80rem;
  --container-padding: 1.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  background-image:
    linear-gradient(oklch(0.75 0.18 250 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, oklch(0.75 0.18 250 / 4%) 1px, transparent 1px);
  background-size: 40px 40px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

p {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

ul,
ol {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

/* Color utilities */
.text-neon-yellow {
  color: var(--neon-yellow);
}

.text-neon-cyan {
  color: var(--neon-cyan);
}

.text-neon-magenta {
  color: var(--neon-magenta);
}

/* Cyber clip + neon borders */
.clip-cyber {
  clip-path: polygon(
    0 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% 100%,
    16px 100%,
    0 calc(100% - 16px)
  );
}

.neon-border-cyan {
  border-top-width: 1.5px;
  border-right-width: 1.5px;
  border-bottom-width: 1.5px;
  border-left-width: 1.5px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: oklch(0.95 0.1 240);
  border-right-color: oklch(0.95 0.1 240);
  border-bottom-color: oklch(0.95 0.1 240);
  border-left-color: oklch(0.95 0.1 240);
  box-shadow:
    var(--shadow-neon-cyan),
    inset 0 0 8px oklch(0.9 0.15 240 / 55%),
    inset 0 0 20px oklch(0.75 0.18 250 / 35%);
}

.neon-border-yellow {
  border-top-width: 1.5px;
  border-right-width: 1.5px;
  border-bottom-width: 1.5px;
  border-left-width: 1.5px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: oklch(0.95 0.15 300);
  border-right-color: oklch(0.95 0.15 300);
  border-bottom-color: oklch(0.95 0.15 300);
  border-left-color: oklch(0.95 0.15 300);
  box-shadow:
    var(--shadow-neon-yellow),
    inset 0 0 8px oklch(0.9 0.2 300 / 55%),
    inset 0 0 20px oklch(0.6 0.28 300 / 35%);
}

.neon-border-magenta {
  border-top-width: 1.5px;
  border-right-width: 1.5px;
  border-bottom-width: 1.5px;
  border-left-width: 1.5px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: oklch(0.95 0.15 330);
  border-right-color: oklch(0.95 0.15 330);
  border-bottom-color: oklch(0.95 0.15 330);
  border-left-color: oklch(0.95 0.15 330);
  box-shadow:
    var(--shadow-neon-magenta),
    inset 0 0 8px oklch(0.9 0.22 330 / 55%),
    inset 0 0 20px oklch(0.7 0.25 330 / 35%);
}

/* Scanline effect */
@keyframes scan {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100vh);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.Synflow-wrapper {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  min-height: 100vh;
}

.Synflow-wrapper > .scanline-bar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50px;
  background-image: linear-gradient(
    180deg,
    transparent,
    oklch(0.75 0.18 250 / 15%),
    transparent
  );
  pointer-events: none;
  animation-name: scan;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  z-index: 1;
}

/* Header */
/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(11, 11, 26, 0.6);
  backdrop-filter: blur(8px);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(96, 64, 144, 0.6);
}
.nav-inner {
  max-width: 1200px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 0;
  padding-right: 24px;
  padding-bottom: 0;
  padding-left: 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 1px;
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration-line: none;
  color: inherit;
}
.nav-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: #00e0ff;
  box-shadow: 0 0 12px rgba(0, 224, 255, 0.9);
  animation-name: flicker;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
.brand-cyan { color: #00e0ff; text-shadow: 0 0 12px rgba(0, 224, 255, 0.8); }
.brand-magenta { color: #ff3ea8; text-shadow: 0 0 12px rgba(255, 62, 168, 0.8); }
.brand-tag { color: #8a90b3; font-size: 12px; }
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.nav-link { color: #e8fbff; text-decoration-line: none; transition-property: color; transition-duration: 0.2s; }
.nav-link:hover { color: #00e0ff; }
.nav-cta {
  background-color: #00e0ff;
  color: #0b0b1a;
  padding-top: 8px;
  padding-right: 20px;
  padding-bottom: 8px;
  padding-left: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration-line: none;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition-property: box-shadow;
  transition-duration: 0.2s;
}
.nav-cta:hover { box-shadow: 0 0 30px rgba(0, 224, 255, 0.6), 0 0 60px rgba(0, 224, 255, 0.3); }
@media (min-width: 768px) { .nav-links { display: flex; } }
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition-property: opacity, background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
}

.btn--primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn--third {
  background-color: var(--third);
  color: var(--primary-foreground);
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--outline {
  background-color: oklch(0.1 0.03 280 / 40%);
  color: var(--neon-cyan);
}

.btn--outline:hover {
  background-color: oklch(0.1 0.03 280 / 70%);
}

.btn--small {
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 0.75rem;
}

.btn--large {
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  font-size: 0.875rem;
}

.btn--submit {
  width: 100%;
  padding-top: 1.5rem;
  padding-right: 2rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-neon-yellow);
}

.btn--submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hero__actions .btn--primary {
  box-shadow: var(--shadow-neon-yellow);
}

/* Hero */
.hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    to bottom,
    oklch(0.1 0.03 280 / 40%),
    oklch(0.1 0.03 280 / 60%),
    var(--background)
  );
}

.hero__content {
  position: relative;
  max-width: var(--container-max);
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 7rem;
  padding-right: var(--container-padding);
  padding-bottom: 7rem;
  padding-left: var(--container-padding);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-top: 0.25rem;
  padding-right: 0.75rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  background-color: oklch(0.1 0.03 280 / 60%);
}

.hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  background-color: var(--neon-cyan);
  animation-name: pulse-dot;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hero__badge-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.hero__title {
  max-width: 56rem;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.95;
}

.hero__title-line {
  display: block;
}

.hero__title-line--gradient {
  background-image: var(--gradient-cyber);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 0 6px oklch(0.75 0.18 250 / 70%))
    drop-shadow(0 0 18px oklch(0.7 0.25 330 / 50%))
    drop-shadow(0 0 40px oklch(0.6 0.28 300 / 35%));
}

.hero__description {
  max-width: 36rem;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 1rem;
  margin-top: 2.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  max-width: 36rem;
  margin-top: 4rem;
}

.hero__stat {
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: var(--neon-magenta);
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0.75rem;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Sections */
.section {
  position: relative;
  padding-top: 6rem;
  padding-right: 0;
  padding-bottom: 6rem;
  padding-left: 0;
}

.section__inner {
  max-width: var(--container-max);
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 0;
  padding-right: var(--container-padding);
  padding-bottom: 0;
  padding-left: var(--container-padding);
}

.section__intro {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.section--prep {
  background-color: oklch(0.14 0.04 280 / 30%);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: oklch(0.75 0.18 250 / 20%);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: oklch(0.75 0.18 250 / 20%);
}

.section--tint {
  background-color: oklch(0.14 0.04 280 / 30%);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: oklch(0.6 0.28 300 / 20%);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: oklch(0.6 0.28 300 / 20%);
}

.section-header__kicker {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.section-header__title {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* Services */
.services-grid {
  display: grid;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background-color: var(--card);
  padding-top: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
}

.service-card:hover {
  transform: translateY(-0.25rem);
}

.service-card__icon {
  width: 2.5rem;
  height: 2.5rem;
}

.service-card__title {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card__list {
  margin-top: 1.25rem;
}

.service-card__list li {
  display: flex;
  column-gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.service-card__list li:first-child {
  margin-top: 0;
}

.features-grid {
  display: grid;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  margin-top: 5rem;
}

.feature-card {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: var(--border);
  border-right-color: var(--border);
  border-bottom-color: var(--border);
  border-left-color: var(--border);
  background-color: oklch(0.14 0.04 280 / 50%);
  padding-top: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.feature-card__icon {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-card__title {
  margin-top: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-card__body {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Prep */
/* ============ PROCESS ============ */
.process {
  position: relative;
  padding-top: 96px;
  padding-right: 24px;
  padding-bottom: 96px;
  padding-left: 24px;
}
.process-inner {
  max-width: 1200px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) { .process-inner { grid-template-columns: 1fr 1fr; } }
.process-image {
  width: 100%;
  min-height: 420px;
 margin-top: 40px;
  background-image:
    linear-gradient(135deg, rgba(11, 11, 26, 0.8) 0%, transparent 50%, rgba(255, 62, 168, 0.2) 100%),
    url("assets/tint-process.webp");
  background-size: cover;
  background-position: center;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(0, 224, 255, 0.4);
  border-right-color: rgba(0, 224, 255, 0.4);
  border-bottom-color: rgba(0, 224, 255, 0.4);
  border-left-color: rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 224, 255, 0.6), 0 0 60px rgba(0, 224, 255, 0.3);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  
}

.process-image> .scanline-bars {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50px;
  background-image: linear-gradient(
    180deg,
    transparent,
    oklch(0.75 0.18 250 / 15%),
    transparent
  );
  pointer-events: none;
  animation-name: scan;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  z-index: 1;
}

.step-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.step-row { display: flex; gap: 24px; }
.step-n {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #00e0ff;
  text-shadow: 0 0 12px rgba(0, 224, 255, 0.8);
  width: 64px;
  flex-shrink: 0;
}
.step-body {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(96, 64, 144, 0.6);
  padding-left: 24px;
  padding-bottom: 24px;
}
.step-title {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0;
  margin-bottom: 8px;
}
.step-desc { color: #8a90b3; margin-top: 0; margin-bottom: 0; }


/* Tint cards */
.tint-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 1rem;
  margin-top: 3.5rem;
}

.tint-card {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: oklch(0.14 0.04 280 / 40%);
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
}

.tint-card:hover {
  transform: translateY(-0.25rem);
}

.tint-card__preview {
  position: relative;
  width: 100%;
  height: 10rem;
  overflow-x: hidden;
  overflow-y: hidden;
}

.tint-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tint-card__shade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.tint-card__preview-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    to top,
    oklch(0.1 0.03 280 / 80%),
    transparent,
    transparent
  );
}

.tint-card__vlt {
  position: absolute;
  bottom: 0.5rem;
  left: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.9));
}

.tint-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
}

.tint-card__label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tint-card__desc {
  flex-grow: 1;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Contact */
.section__inner--contact {
  display: grid;
  column-gap: 3rem;
  row-gap: 3rem;
}

.contact-info__intro {
  max-width: 28rem;
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.contact-rows {
  margin-top: 2.5rem;
}

.contact-row {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  margin-top: 1.25rem;
}

.contact-row:first-child {
  margin-top: 0;
}

.contact-row__icon {
  padding-top: 0.75rem;
  padding-right: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
  background-color: var(--background);
}

.contact-row__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--neon-cyan);
}

.contact-row__label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-row__value {
  font-family: var(--font-display);
  color: var(--foreground);
}

.hours-card {
  margin-top: 2.5rem;
  background-color: var(--card);
  padding-top: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.hours-card__title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hours-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.5rem;
  row-gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hours-card__time {
  color: var(--foreground);
}

.contact-form-panel {
  background-color: var(--card);
  padding-top: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}

.form-row {
  display: grid;
  column-gap: 1.25rem;
  row-gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input,
.form-textarea {
  width: 100%;
  min-height: 2.25rem;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: var(--input);
  border-right-color: var(--input);
  border-bottom-color: var(--input);
  border-left-color: var(--input);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  background-color: transparent;
  color: var(--foreground);
  box-shadow: 0 1px 2px oklch(0 0 0 / 5%);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline-width: 0;
  outline-style: none;
  box-shadow: 0 0 0 1px var(--ring);
}

.form-textarea {
  min-height: 5rem;
  resize: vertical;
}

.service-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0.5rem;
}

.service-btn {
  padding-top: 0.75rem;
  padding-right: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
  background-color: var(--secondary);
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition-property: background-color, box-shadow, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
}

.service-btn:hover {
  background-color: var(--muted);
}

.service-btn--active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-neon-yellow);
}

.contact-form__footnote {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* Footer */
/* ============ FOOTER ============ */
.footer {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(96, 64, 144, 0.6);
  padding-top: 40px;
  padding-right: 24px;
  padding-bottom: 40px;
  padding-left: 24px;
}
.footer-inner {
  max-width: 1200px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8a90b3;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; } }
.footer-left { display: flex; align-items: center; gap: 8px; }
.footer-dot {
  width: 6px;
  height: 6px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: #00e0ff;
  animation-name: flicker;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
.footer-copy { color: #8a90b3; }


/* Toast */
.toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 100;
  max-width: 90vw;
  padding-top: 0.75rem;
  padding-right: 1.25rem;
  padding-bottom: 0.75rem;
  padding-left: 1.25rem;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  font-size: 0.875rem;
  transform: translateX(-50%) translateY(-120%);
  transition-property: transform, opacity;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  opacity: 0;
}

.toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast--success {
  background-color: var(--card);
  color: var(--foreground);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: var(--neon-cyan);
  border-right-color: var(--neon-cyan);
  border-bottom-color: var(--neon-cyan);
  border-left-color: var(--neon-cyan);
  box-shadow: var(--shadow-neon-cyan);
}

.toast--error {
  background-color: var(--card);
  color: var(--foreground);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: var(--neon-magenta);
  border-right-color: var(--neon-magenta);
  border-bottom-color: var(--neon-magenta);
  border-left-color: var(--neon-magenta);
  box-shadow: var(--shadow-neon-magenta);
}

/* Responsive */
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tint-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .site-header__nav {
    display: flex;
  }

  .hero__content {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .hero__title {
    font-size: 4.5rem;
  }

  .section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .section-header__title {
    font-size: 3rem;
  }

.section-title {
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
}

.text-neon {
  background-image: linear-gradient(135deg, #00e0ff, #ff3ea8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-form-panel {
    padding-top: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 2.5rem;
  }

  .site-footer__inner {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 6rem;
  }

  .prep-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prep-image {
    position: sticky;
    top: 6rem;
  }

  .section__inner--contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tint-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .hero__title {
    font-size: 6rem;
  }
}

/* ============ ANIMATIONS ============ */
@keyframes flicker {
  0% { opacity: 1; }
  45% { opacity: 1; }
  50% { opacity: 0.6; }
  55% { opacity: 1; }
  100% { opacity: 1; }
}
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}