:root {
  --ink: #1f1f1e;
  --warm-white: #f5f3ee;
  --muted: #777770;
  --line: rgba(31, 31, 30, 0.18);
  --serif: "Times New Roman", Times, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--warm-white);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.95) 0 18%, rgba(255,255,255,.62) 42%, rgba(245,243,238,0) 72%),
    var(--warm-white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 58px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(38px, 6vw, 78px) 24px 44px;
}

.aura {
  position: absolute;
  z-index: -1;
  width: min(58vw, 690px);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 31, 30, .055);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(255,255,255,.16),
    0 0 0 92px rgba(255,255,255,.09);
  transform: translateY(-6%);
}

.hero__content {
  width: min(100%, 820px);
  text-align: center;
}

/*
 * Symbol-only SVG. Keeping the mark genuinely vector and deliberately
 * smaller prevents it from becoming visually heavy on QHD/2K displays.
 */
.brand-symbol {
  display: block;
  width: min(40vw, 430px);
  height: auto;
  margin: 0 auto clamp(30px, 3.6vw, 46px);
}

.intro {
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.18vw, 1.28rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .008em;
}

.intro strong {
  font-weight: 500;
  letter-spacing: .075em;
}

.divider {
  width: 46px;
  height: 1px;
  margin: clamp(24px, 3vw, 34px) auto 18px;
  background: var(--line);
}

.status {
  margin: 0;
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.5;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-footer {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .78em;
  color: rgba(31, 31, 30, .42);
  font-size: .64rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .26em;
  text-transform: uppercase;
  white-space: nowrap;
}

/*
 * Visos poraštės dalys turi atrodyti identiškai, nepriklausomai nuo to,
 * ar tekstas yra paprastas, ar aktyvi nuoroda. Taip pat neutralizuojamos
 * naršyklės :visited / :hover / :active būsenos.
 */
.footer-links a,
.footer-links a:link,
.footer-links a:visited,
.footer-links a:hover,
.footer-links a:active,
.footer-links a:focus {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-decoration: none;
  outline: none;
}

.footer-links a:focus-visible {
  outline: 1px dotted currentColor;
  outline-offset: 4px;
}

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

@media (min-width: 1800px) {
  .brand-symbol {
    width: 410px;
  }

  .intro {
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: calc(100svh - 50px);
    padding: 30px 20px 34px;
  }

  .brand-symbol {
    width: min(72vw, 350px);
    margin-bottom: 26px;
  }

  .intro {
    max-width: 520px;
    font-size: clamp(.98rem, 4.2vw, 1.12rem);
    line-height: 1.62;
  }

  .desktop-break {
    display: none;
  }

  .status {
    font-size: .63rem;
    letter-spacing: .16em;
  }

  .site-footer {
    height: 50px;
  }

  .aura {
    width: 96vw;
    transform: translateY(-8%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__content {
    animation: appear .85s ease-out both;
  }

  @keyframes appear {
    from { opacity: 0; transform: translateY(7px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
