﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap");

/* Bu site iskeleti, G-Soft tarafından kodlanmıştır. */
@font-face {
  font-family: "Cern";
  src: local("Cern"), local("CERN");
  font-display: swap;
}

:root {
  --bg-page: #020202;
  --bg-footer: #000000;
  --bg-navbar: #000000;

  --white: #ffffff;
  --white-50: rgba(255, 255, 255, 0.5);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  --white-04: rgba(255, 255, 255, 0.04);

  --content-width: min(1240px, 92vw);
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100%;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--bg-page);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 56px);
}

body::after {
  content: "";
  position: fixed;
  width: min(88vw, 1020px);
  aspect-ratio: 1;
  left: 50%;
  top: -38vw;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01) 46%, transparent 72%);
  animation: glowFloat 18s ease-in-out infinite alternate;
}

.bg-watermark {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.bg-watermark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(86vw, 1020px);
  aspect-ratio: 1;
  background: url("../images/Logo-beyaz1.png?v=20260406-2") center / contain no-repeat;
  opacity: 0.06;
  filter: blur(2.6px);
  transform: translate(-50%, -50%);
}

.bg-dataflow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.bg-dataflow span {
  position: absolute;
  left: -44%;
  top: var(--top);
  white-space: nowrap;
  font-family: "IBM Plex Mono", "Consolas", monospace;
  font-size: clamp(0.56rem, 0.86vw, 0.76rem);
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.08);
  opacity: 0;
  animation: dataFlow var(--duration) linear infinite;
  animation-delay: var(--delay);
  will-change: transform, opacity;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--white-05);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.topbar.scrolled {
  background: var(--bg-navbar);
  border-color: var(--white-10);
}

.topbar-inner {
  width: var(--content-width);
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mini-logo {
  display: inline-flex;
  align-items: center;
}

.mini-logo img {
  width: 122px;
  height: auto;
  display: block;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}

.nav a {
  color: var(--white-50);
  text-decoration: none;
  letter-spacing: 0.24em;
  font-size: 0.9rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--white-10);
  border-radius: 999px;
  padding: 4px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--white-30);
  font-family: "IBM Plex Mono", "Consolas", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--white-10);
  color: var(--white);
}

.social-rail {
  position: fixed;
  left: clamp(12px, 2.8vw, 38px);
  top: 42%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 22px;
  border: 1px solid var(--white-10);
  background: rgba(0, 0, 0, 0.75);
}

.social-rail::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  transform: translateX(-50%);
  width: 1px;
  height: 68px;
  background: linear-gradient(var(--white-20), transparent 82%);
}

.social-rail a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: none;
}

.social-rail a:hover,
.social-rail a:focus-visible {
  transform: none;
  border-color: transparent;
  background: transparent;
}

.social-rail img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 1;
}

main {
  width: var(--content-width);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.section-shell {
  padding: clamp(58px, 8vw, 100px) 0;
}

.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  will-change: transform, opacity;
}

.hero::before {
  width: min(62vw, 780px);
  aspect-ratio: 1;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.016) 46%, transparent 72%);
  opacity: 0.55;
  animation: heroGlowDrift 10s ease-in-out infinite alternate;
}

.hero::after {
  width: min(34vw, 420px);
  aspect-ratio: 1;
  top: 3%;
  left: 52%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018) 52%, transparent 72%);
  opacity: 0.42;
  animation: heroGlowDrift 13s ease-in-out infinite alternate-reverse;
}

.hero-brand {
  margin-bottom: 16px;
  width: clamp(108px, 12vw, 140px);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.06);
}

.hero-brand::after {
  content: none;
}

.hero-logo {
  width: clamp(72px, 8.6vw, 104px);
  height: auto;
  display: block;
  opacity: 0.98;
}

.hero-kicker,
.section-kicker {
  margin: 0;
  color: var(--white-30);
  letter-spacing: 0.56em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.cern-font {
  font-family: "Cern", "Manrope", "Segoe UI", sans-serif;
}

.hero-title {
  margin: 20px 0 0;
  max-width: 20ch;
  font-size: clamp(2rem, 7vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.024em;
  text-wrap: balance;
  position: relative;
}

.hero-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: min(64%, 500px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.hero-title span {
  display: block;
  padding-block: 0.02em;
}

.hero-title span:nth-child(odd),
.section-title span:nth-child(odd) {
  color: var(--white);
}

.hero-title span:nth-child(even),
.section-title span:nth-child(even),
.hero-title .muted,
.section-title .muted {
  color: var(--white-50);
}

.hero-sub {
  margin: 28px 0 0;
  max-width: 64ch;
  color: var(--white-30);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-primary,
.btn-ghost {
  text-decoration: none;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  text-transform: uppercase;
  padding: 14px 34px;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-primary {
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--white-15);
  background: #000000;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  color: #000000;
  border-color: #ffffff;
  background: #ffffff;
}

.btn-ghost {
  color: var(--white-50);
  border: 1px solid transparent;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
}

.quotes,
.contact {
  border-top: 1px solid var(--white-05);
}

.section-title {
  margin: 20px 0 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 13ch;
}

.section-title span {
  display: block;
}

.quote-grid {
  margin-top: clamp(30px, 5vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quote-card {
  aspect-ratio: 1.32 / 1;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--white-10);
  background: rgba(7, 7, 7, 0.92);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
  overflow: hidden;
}

.quote-card:hover,
.quote-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--white-20);
  background: rgba(14, 14, 14, 0.96);
}

.quote-icon {
  color: rgba(255, 255, 255, 0.3);
  font-family: "IBM Plex Mono", "Consolas", monospace;
  font-size: 1.24rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  opacity: 0.72;
}

.quote-mark {
  display: inline-block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.2);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1;
}

.quote-card p {
  margin: 14px 0 0;
  color: var(--white-50);
  font-size: clamp(1rem, 1.05vw, 1.22rem);
  line-height: 1.52;
}

.quote-card small {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  color: var(--white-30);
  letter-spacing: 0.18em;
  font-size: 0.94rem;
}

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(20px, 4vw, 44px);
}

.contact-desc {
  margin: 20px 0 0;
  color: var(--white-50);
  max-width: 40ch;
  font-size: 1.06rem;
}

.contact-meta {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.meta-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--white-10);
  display: grid;
  place-items: center;
  color: var(--white-30);
  font-size: 1rem;
  flex-shrink: 0;
}

.meta-item small {
  display: block;
  color: var(--white-30);
  letter-spacing: 0.2em;
  font-size: 0.76rem;
}

.meta-item a,
.meta-item p {
  margin: 5px 0 0;
  color: var(--white);
  text-decoration: none;
  font-size: 1.16rem;
}

.contact-form {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  padding: 0 0 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--white-10);
  position: relative;
  transition: transform 0.2s ease, border-bottom-color 0.2s ease;
}

.contact-form label:not(.full):nth-child(odd) {
  border-right: 1px solid var(--white-04);
  padding-right: 26px;
}

.contact-form label:not(.full):nth-child(even) {
  padding-left: 26px;
}

.contact-form .full {
  grid-column: 1 / -1;
  padding-left: 0;
  padding-right: 0;
}

.contact-form span {
  color: var(--white-30);
  letter-spacing: 0.18em;
  font-size: 0.76rem;
}

.form-line {
  display: block;
}

.char-count {
  color: var(--white-20);
}

.message-meta {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}

.message-meta .char-count {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 8px 0 0;
  font-family: inherit;
  font-size: 1.06rem;
  outline: none;
  transition: color 0.22s ease;
}

.contact-form label.is-invalid {
  border-bottom-color: rgba(255, 86, 86, 0.85);
}

.contact-form label.is-invalid:not(.full):nth-child(odd) {
  transform: scaleX(1.03);
  transform-origin: left center;
}

.contact-form label.is-invalid:not(.full):nth-child(even) {
  transform: scaleX(1.03);
  transform-origin: right center;
}

.contact-form label.is-invalid.full {
  transform: scaleX(1.01);
  transform-origin: center center;
}

.field-error {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 52%;
  color: #ff5f5f;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.field-error.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--white-20);
}

.contact-form input:focus,
.contact-form textarea:focus {
  color: var(--white);
}

.contact-form textarea {
  min-height: 158px;
  resize: vertical;
}

.contact-form button {
  grid-column: 1 / -1;
  border: 1px solid var(--white-20);
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  padding: 16px;
  margin-top: 6px;
  letter-spacing: 0.24em;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}

.form-status {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  min-height: 1.2em;
  color: var(--white-30);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.form-status.is-sending {
  color: var(--white-30);
}

.form-status.is-success {
  color: #89d8a4;
}

.form-status.is-error {
  color: #ff6f6f;
}

.site-footer {
  position: relative;
  margin-top: clamp(52px, 7vw, 86px);
  padding: clamp(32px, 6vw, 56px) 0 20px;
  border-top: 1px solid var(--white-04);
  background: var(--bg-footer);
  overflow: hidden;
}

.footer-top,
.footer-bottom {
  width: var(--content-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: clamp(22px, 4vw, 56px);
}

.footer-brand img {
  width: 86px;
  height: auto;
  display: block;
}

.footer-brand p {
  margin: 18px 0 0;
  max-width: 32ch;
  color: var(--white-50);
  font-size: 1.08rem;
}

.footer-pages h3,
.footer-social h3 {
  margin: 0 0 16px;
  color: var(--white-30);
  letter-spacing: 0.3em;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer-pages a {
  display: block;
  width: fit-content;
  text-decoration: none;
  color: var(--white-50);
  margin-top: 10px;
  font-size: 1.03rem;
  transition: color 0.25s ease;
}

.footer-pages a:hover,
.footer-pages a:focus-visible {
  color: var(--white);
}

.footer-social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-grid a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid transparent;
  display: grid;
  place-items: center;
  transition: none;
}

.footer-social-grid a:hover,
.footer-social-grid a:focus-visible {
  transform: none;
  border-color: transparent;
  background: transparent;
}

.footer-social-grid img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-bottom {
  margin-top: clamp(24px, 4vw, 42px);
  padding-top: 20px;
  border-top: 1px solid var(--white-04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 3;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.08em;
  font-weight: 500;
  text-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.68s ease, transform 0.68s ease;
  will-change: transform, opacity;
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Söz kartlarında hover animasyonu, reveal transform'unu ezsin. */
.quote-card.reveal {
  transition:
    opacity 0.68s ease,
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.quote-card.reveal.in-view:hover,
.quote-card.reveal.in-view:focus-within {
  transform: translate3d(0, -6px, 0);
}

/* Bu site iskeleti, G-Soft tarafından kodlanmıştır. */
@keyframes dataFlow {
  0% {
    transform: translate3d(-8%, 0, 0);
    opacity: 0;
  }

  10% {
    opacity: 0.22;
  }

  90% {
    opacity: 0.22;
  }

  100% {
    transform: translate3d(145%, 0, 0);
    opacity: 0;
  }
}

@keyframes glowFloat {
  0% {
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 14px, 0);
  }
}

@keyframes heroGlowDrift {
  0% {
    transform: translateX(-50%) translateY(-4px);
    opacity: 0.36;
  }

  100% {
    transform: translateX(-50%) translateY(6px);
    opacity: 0.8;
  }
}

*::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

*::-webkit-scrollbar-track {
  background: #080808;
}

*::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border: 2px solid #080808;
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}

@media (max-width: 1180px) {
  .hero-title {
    max-width: 17ch;
  }

  .quote-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .quote-card {
    padding: 24px;
  }

  .quote-card p {
    font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  }
}

@media (max-width: 1024px) {
  .social-rail {
    display: none;
  }

  .topbar-inner {
    min-height: 78px;
  }

  .mini-logo img {
    width: 108px;
  }

  .nav a {
    letter-spacing: 0.18em;
    font-size: 0.82rem;
  }

  .bg-dataflow span:nth-child(n + 9) {
    display: none;
  }

  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-card {
    aspect-ratio: 1.24 / 1;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .section-shell {
    padding: 44px 0;
  }

  .topbar-inner {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 12px;
    column-gap: 10px;
  }

  .mini-logo img {
    width: 96px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .nav a {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .lang-switch {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 10px;
  }

  .hero-kicker {
    letter-spacing: 0.32em;
    font-size: 0.72rem;
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(1.85rem, 10.4vw, 2.9rem);
    line-height: 1.04;
  }

  .hero-sub {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.62;
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 22px;
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 13px 16px;
  }

  .section-title {
    line-height: 1.14;
    font-size: clamp(1.72rem, 9vw, 2.55rem);
    max-width: 14ch;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quote-card {
    aspect-ratio: auto;
    min-height: 220px;
    padding: 20px;
  }

  .quote-card p {
    font-size: clamp(1rem, 5.2vw, 1.2rem);
    line-height: 1.55;
  }

  .quote-card small {
    font-size: 0.84rem;
    letter-spacing: 0.12em;
  }

  .contact-desc {
    max-width: 100%;
    font-size: 1rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form label:not(.full):nth-child(odd),
  .contact-form label:not(.full):nth-child(even) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-form label.is-invalid:not(.full):nth-child(odd),
  .contact-form label.is-invalid:not(.full):nth-child(even),
  .contact-form label.is-invalid.full {
    transform: scaleX(1.01);
    transform-origin: center center;
  }

  .field-error {
    position: static;
    margin-top: 6px;
    max-width: 100%;
    text-align: left;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    transform: none;
    opacity: 1;
    display: none;
  }

  .field-error.is-visible {
    display: block;
  }

  .message-meta {
    margin-top: 4px;
  }

  .field-error {
    max-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-pages a {
    margin-top: 6px;
  }

  .bg-dataflow {
    display: none;
  }

  .bg-watermark::before {
    width: min(140vw, 760px);
    opacity: 0.05;
  }
}

@media (max-width: 480px) {
  .topbar-inner {
    padding: 10px 0;
  }

  .mini-logo img {
    width: 88px;
  }

  .hero-title {
    font-size: clamp(1.65rem, 11vw, 2.3rem);
  }

  .hero-sub {
    font-size: 0.94rem;
  }

  .contact-form button {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }

  .footer-social-grid a {
    width: 38px;
    height: 38px;
  }
}

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

  body::after,
  .hero::before,
  .hero::after,
  .bg-dataflow span,
  .reveal,
  .quote-card,
  .btn-primary,
  .btn-ghost,
  .social-rail a,
  .footer-social-grid a,
  .contact-form button {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.in-view {
    opacity: 1;
    transform: none;
  }
}
