/* LEDAKJITU — portal premium (neon cinematic) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #030303;
  --bg-elevated: #0a0a0a;
  --panel: rgba(17, 17, 17, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --line-bright: rgba(168, 255, 0, 0.35);
  --text: #f4f4f4;
  --muted: #8a8a8a;
  --neon: #a8ff00;
  --neon-soft: #c8ff66;
  --neon-glow: rgba(168, 255, 0, 0.45);
  --neon-dim: rgba(168, 255, 0, 0.12);
  --gold: #e8ff9a;
  --font-ui: "IBM Plex Mono", ui-monospace, monospace;
  --font-display: "Anton", Impact, sans-serif;
  --nav-h: 4.25rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-neon: 0 0 40px rgba(168, 255, 0, 0.25), 0 0 80px rgba(168, 255, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--neon);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: var(--neon-soft);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 9999;
  padding: 0.65rem 1rem;
  background: var(--neon);
  color: #000;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* --- ambient background --- */
.ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ambient__grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(168, 255, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(500px) rotateX(58deg) translateY(-12%);
  animation: grid-drift 28s linear infinite;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 75%);
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orb-float 18s ease-in-out infinite;
}

.ambient__orb--a {
  width: 42vw;
  height: 42vw;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(168, 255, 0, 0.35), transparent 70%);
}

.ambient__orb--b {
  width: 36vw;
  height: 36vw;
  bottom: 5%;
  right: -6%;
  background: radial-gradient(circle, rgba(120, 200, 0, 0.2), transparent 70%);
  animation-delay: -6s;
}

.ambient__scan {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.5) 2px,
    rgba(255, 255, 255, 0.5) 3px
  );
}

@keyframes grid-drift {
  to { transform: perspective(500px) rotateX(58deg) translateY(8%); }
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, 4%) scale(1.05); }
}

/* --- header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out), border-color 0.35s, backdrop-filter 0.35s;
}

.header.is-scrolled {
  background: rgba(3, 3, 3, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.header__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.brand__mark {
  width: 2.25rem;
  height: 2.25rem;
  border: 2px solid var(--neon);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: var(--neon);
  box-shadow: 0 0 20px var(--neon-dim);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.75rem);
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav a:hover {
  color: var(--neon);
}

.nav__cta {
  padding: 0.65rem 1.35rem !important;
  border: 2px solid var(--neon) !important;
  background: var(--neon) !important;
  color: #000 !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  box-shadow: var(--shadow-neon);
}

.nav__cta:hover {
  color: #000 !important;
  filter: brightness(1.08);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--neon);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.22rem auto;
  background: currentColor;
}

/* --- hero --- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1rem, 5vw, 3rem) 4rem;
}

.hero__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line-bright);
  background: var(--neon-dim);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-soft);
}

.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow:
    0 0 30px var(--neon-glow),
    0 0 60px rgba(168, 255, 0, 0.15);
}

.hero__title span {
  display: block;
  color: var(--neon);
  font-size: 0.42em;
  letter-spacing: 0.35em;
  margin-top: 0.15em;
}

.hero__lead {
  margin: 1.5rem 0 0;
  max-width: 36rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #c8c8c8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--neon);
  border-color: var(--neon);
  color: #000;
  box-shadow: var(--shadow-neon);
}

.btn--ghost {
  border-color: var(--line-bright);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.stat {
  padding: 1rem 0.75rem;
  background: rgba(0, 0, 0, 0.55);
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--neon);
  line-height: 1;
}

.stat span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero__visual {
  position: relative;
}

.hero__frame {
  position: relative;
  border: 1px solid var(--line-bright);
  background: var(--panel);
  padding: 0.75rem;
  box-shadow: var(--shadow-neon);
}

.hero__frame::before,
.hero__frame::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--neon);
}

.hero__frame::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.hero__frame::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.hero__frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
}

.hero__badge {
  position: absolute;
  bottom: -1.25rem;
  right: 1.5rem;
  padding: 0.65rem 1rem;
  background: var(--neon);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* --- marquee --- */
.marquee {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee__track span {
  flex-shrink: 0;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.marquee__track span em {
  font-style: normal;
  color: var(--neon);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* --- sections --- */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 5vw, 3rem);
}

.section__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.section__head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section__label {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--neon);
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.section__desc {
  margin: 1rem 0 0;
  color: var(--muted);
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- about bento --- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.bento__cell {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(8, 8, 8, 0.9);
}

.bento__cell--wide {
  grid-column: span 7;
}

.bento__cell--narrow {
  grid-column: span 5;
}

.bento__cell--full {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.bento h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--neon);
}

.bento p {
  margin: 0;
  color: #b8b8b8;
}

.bento__num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(168, 255, 0, 0.15);
}

/* --- stories --- */
.stories {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.story-card {
  position: relative;
  grid-column: span 4;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.story-card:hover {
  border-color: var(--neon);
  transform: translateY(-6px);
  box-shadow: var(--shadow-neon);
}

.story-card--featured {
  grid-column: span 8;
  grid-row: span 2;
}

.story-card__media {
  position: relative;
  overflow: hidden;
}

.story-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.story-card--featured .story-card__media img {
  aspect-ratio: 16 / 11;
}

.story-card:hover .story-card__media img {
  transform: scale(1.05);
}

.story-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 55%);
}

.story-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.35rem;
  z-index: 1;
}

.story-card__tag {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon);
}

.story-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  letter-spacing: 0.03em;
}

.story-card__ex {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #b0b0b0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card--sm .story-card__media img {
  aspect-ratio: 4 / 3;
}

/* --- CTA band --- */
.cta-band {
  position: relative;
  z-index: 1;
  margin: 0 clamp(1rem, 5vw, 3rem);
  padding: clamp(2.5rem, 6vw, 4rem);
  border: 1px solid var(--line-bright);
  background:
    linear-gradient(135deg, rgba(168, 255, 0, 0.08), transparent 50%),
    rgba(10, 10, 10, 0.95);
  text-align: center;
  box-shadow: inset 0 0 80px rgba(168, 255, 0, 0.04);
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
}

.cta-band p {
  margin: 1rem auto 0;
  max-width: 32rem;
  color: var(--muted);
}

.cta-band .btn--primary {
  margin-top: 1.75rem;
  padding: 1.15rem 2.5rem;
  font-size: 0.9rem;
}

/* --- social --- */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-out);
}

.social-card:hover {
  border-color: var(--neon);
  background: var(--neon-dim);
  transform: translateY(-3px);
  color: var(--text);
}

.social-card__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-bright);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: 0.05em;
}

.social-card__label {
  font-size: 0.78rem;
  font-weight: 600;
}

.social-card__url {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* --- footer --- */
.footer {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  padding: 3rem clamp(1rem, 5vw, 3rem) 2rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
}

.footer__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 2rem;
}

.footer h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--neon);
}

.footer p,
.footer li {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  list-style: none;
}

.footer ul {
  margin: 0;
  padding: 0;
}

.footer li + li {
  margin-top: 0.4rem;
}

.footer a {
  color: #c0c0c0;
  text-decoration: none;
}

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

.footer__bottom {
  width: min(1280px, 100%);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}

/* --- responsive --- */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    max-width: 28rem;
    margin: 0 auto;
  }

  .bento__cell--wide,
  .bento__cell--narrow,
  .bento__cell--full {
    grid-column: span 12;
  }

  .bento__cell--full {
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-card--featured {
    grid-column: span 12;
    grid-row: auto;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: var(--nav-h) 0 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(3, 3, 3, 0.97);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
  }

  .nav.is-open {
    transform: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .ambient__grid,
  .ambient__orb,
  .marquee__track,
  .hero__eyebrow::before {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .story-card:hover,
  .social-card:hover {
    transform: none;
  }
}

/* --- inner pages --- */
.page {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 2rem) clamp(1rem, 5vw, 3rem) 4rem;
}

.page__inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.page__inner--wide {
  width: min(1280px, 100%);
}

.breadcrumb {
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--neon);
}

.page-hero {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  line-height: 1.05;
}

.page-hero__meta {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prose {
  color: #c8c8c8;
}

.prose p {
  margin: 0 0 1rem;
}

.prose strong {
  color: var(--neon-soft);
}

.prose a {
  color: var(--neon);
}

.panel {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 1rem;
}

.panel h2,
.panel h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--neon);
  letter-spacing: 0.06em;
}

.kv {
  margin: 0;
}

.kv dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 0.75rem;
}

.kv dt:first-child {
  margin-top: 0;
}

.kv dd {
  margin: 0.25rem 0 0;
}

.faq details {
  border: 1px solid var(--line);
  margin-bottom: 0.5rem;
  background: rgba(0, 0, 0, 0.35);
}

.faq summary {
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq .ans {
  padding: 0 1rem 1rem;
  color: #b8b8b8;
  font-size: 0.88rem;
}

.article-cover {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  display: block;
  border: 1px solid var(--line-bright);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-nav {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

.story-list {
  display: grid;
  gap: 1rem;
}

.story-list a {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}

.story-list a:hover {
  border-color: var(--neon);
  transform: translateX(4px);
}

.story-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.story-list h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--neon);
}

.story-list p {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.nav a.is-active {
  color: var(--neon);
}

@media (max-width: 600px) {
  .story-list a {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--neon);
}
