:root {
  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, "SFMono-Regular", Menlo, monospace;
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --bg: #0A0812;
  --fg: rgba(255, 255, 255, 0.85);
  --fg-strong: rgba(255, 255, 255, 0.96);
  --fg-mute: rgba(255, 255, 255, 0.65);
  --fg-soft: rgba(255, 255, 255, 0.55);
  --fg-faint: rgba(255, 255, 255, 0.4);
  --fg-ghost: rgba(255, 255, 255, 0.35);
  --rule: rgba(255, 255, 255, 0.08);
  --rule-strong: rgba(255, 255, 255, 0.1);
  --rule-soft: rgba(255, 255, 255, 0.06);
  --accent-orange: #FF8F6E;
  --accent-blue: #7C9DFF;
  --accent-cyan: #8EDDFF;
  --accent-green: #7DE3B4;
  --accent-amber: #FFC978;
  --accent-violet: #D78CFF;
  --accent-pink: #FF8FA8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body { min-height: 100vh; }

a { color: inherit; }
a:hover { opacity: 0.85; }

::selection {
  background: var(--accent-orange);
  color: var(--bg);
}

/* ==========================================================================
   Aurora background — fixed, full-viewport
   ========================================================================== */
.aurora {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.aurora__cursor {
  position: absolute;
  top: calc(30% - 400px);
  left: calc(50% - 400px);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 100, 0.35), rgba(120, 90, 255, 0.18) 40%, transparent 70%);
  filter: blur(60px);
  transition: top 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), left 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  opacity: 0.25;
  will-change: transform;
}

.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.125;
}

.aurora__blob--1 {
  top: -15%;
  left: -5%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at 30% 30%, #FF9068, #FF4B6E 45%, transparent 70%);
  animation: aurora1 32s ease-in-out 0s infinite alternate;
}
.aurora__blob--2 {
  top: 10%;
  left: 60%;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle at 30% 30%, #5B9BFF, #7C5BFF 45%, transparent 70%);
  animation: aurora2 38s ease-in-out -8s infinite alternate;
}
.aurora__blob--3 {
  top: 55%;
  left: 5%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle at 30% 30%, #FF6AC1, #FF8A5B 45%, transparent 70%);
  animation: aurora3 42s ease-in-out -14s infinite alternate;
}
.aurora__blob--4 {
  top: 70%;
  left: 60%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle at 30% 30%, #4FD1C5, #5B9BFF 45%, transparent 70%);
  animation: aurora4 36s ease-in-out -20s infinite alternate;
}

@keyframes aurora1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(10%, 8%) scale(1.15); }
}
@keyframes aurora2 {
  from { transform: translate(0, 0) scale(1.05); }
  to   { transform: translate(-8%, 10%) scale(1); }
}
@keyframes aurora3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(8%, -10%) scale(1.1); }
}
@keyframes aurora4 {
  from { transform: translate(0, 0) scale(1.1); }
  to   { transform: translate(-10%, -8%) scale(1); }
}

.aurora__grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.aurora__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10, 8, 18, 0.5) 100%);
}

/* Reduced motion: stop animation */
@media (prefers-reduced-motion: reduce) {
  .aurora__blob { animation: none; }
  .aurora__cursor { transition: none; }
}

/* ==========================================================================
   Top bar (fixed nav)
   ========================================================================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.topbar__brand {
  pointer-events: auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.topbar__logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
}

.topbar__suffix {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.topbar__nav {
  pointer-events: auto;
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.04em;
}

.topbar__nav a {
  text-decoration: none;
  color: inherit;
}

.topbar__nav a.is-strong {
  color: var(--fg-strong);
}

/* ==========================================================================
   Common section frame
   ========================================================================== */
.section {
  position: relative;
  z-index: 2;
  padding: 80px 48px 120px;
}

.section__inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  z-index: 2;
  padding: 160px 48px 80px;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__meta {
  position: absolute;
  top: 100px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 1440px;
  margin: 0 auto;
  width: calc(100% - 96px);
}

.hero__main {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: end;
}

.hero__h1 {
  font-family: var(--font-system);
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 400;
  margin: 32px 0 0;
  color: var(--fg-strong);
  text-wrap: balance;
}

.hero__h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 400;
}

.hero__side {
  padding-bottom: 16px;
}

.hero__side p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-mute);
  margin: 0 0 28px;
  max-width: 380px;
}

.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1440px;
  margin: 120px auto 0;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}

.hero__indicator-key {
  color: var(--fg-strong);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
}

.hero__indicator-val {
  margin-top: 4px;
}

/* ==========================================================================
   Mono label + accent dot (used across sections)
   ========================================================================== */
.label-mono {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.dot--orange { background: var(--accent-orange); box-shadow: 0 0 10px var(--accent-orange); }
.dot--blue   { background: var(--accent-blue);   box-shadow: 0 0 10px var(--accent-blue); }
.dot--violet { background: var(--accent-violet); box-shadow: 0 0 10px var(--accent-violet); }
.dot--green  { background: var(--accent-green);  box-shadow: 0 0 10px var(--accent-green); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: opacity 0.2s;
}

.btn--primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--bg);
}

.btn--ghost {
  background: transparent;
  color: var(--fg-strong);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-mono);
  font-size: 13px;
}

/* ==========================================================================
   Section headings (large display serif)
   ========================================================================== */
.h-display {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: var(--fg-strong);
  margin: 16px 0 0;
}

.h-display em {
  font-style: italic;
  color: var(--fg-soft);
  font-weight: 400;
}

/* ==========================================================================
   Russian block
   ========================================================================== */
.ru-block {
  position: relative;
  z-index: 2;
  padding: 40px 48px 100px;
}

.ru-block__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.ru-block__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.015em;
  max-width: 820px;
}

/* ==========================================================================
   Products section
   ========================================================================== */
.products__head {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.products__head p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-soft);
  margin: 0;
  padding-bottom: 10px;
}

.products__table {
  border-bottom: 1px solid var(--rule-soft);
}

.products__table-header {
  display: grid;
  grid-template-columns: 48px 1fr 1.6fr 140px 130px;
  gap: 24px;
  padding: 18px 24px 14px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-ghost);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.products__table-header span:last-child {
  text-align: right;
}

.product-row {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 1.6fr 140px 130px;
  align-items: center;
  gap: 24px;
  padding: 26px 24px 26px 0;
  border-top: 1px solid var(--rule-soft);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  opacity: 0.4;
  overflow: hidden;
}

/* dim siblings on table-hover, full opacity for hovered row */
.products__table:hover .product-row { opacity: 0.4; }
.products__table:hover .product-row:hover { opacity: 1; }

.product-row__aura {
  position: absolute;
  top: -120%;
  left: 20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.product-row:hover .product-row__aura {
  opacity: 0.35;
}

.product-row__index {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-ghost);
  letter-spacing: 0.02em;
}

.product-row__name {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.product-row__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
  transition: box-shadow 0.4s;
}

.product-row:hover .product-row__dot {
  /* box-shadow set inline because color is per-product */
}

.product-row__title {
  margin: 0;
  font-family: var(--font-system);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--fg-strong);
}

.product-row__desc {
  position: relative;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
}

.product-row__desc-tag {
  font-family: var(--font-mono);
  color: var(--fg-ghost);
  margin-right: 8px;
  font-size: 12px;
}

.product-row__status {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.product-row__status-symbol {
  margin-right: 6px;
}

.product-row__link {
  position: relative;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-soft);
}

/* ==========================================================================
   About
   ========================================================================== */
.about__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.about h2 {
  max-width: 820px;
}

.about p {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  max-width: 680px;
}

.about p:first-of-type { margin: 32px 0 0; }
.about p + p { margin: 16px 0 0; }

.about p em {
  font-style: italic;
  font-family: var(--font-display);
  color: inherit;
}

.about__facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 64px;
}

.about__fact {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-strong);
  font-family: var(--font-mono);
  font-size: 12px;
}

.about__fact:first-child {
  border-top: 1px solid var(--rule-strong);
}

.about__fact-key {
  color: var(--fg-faint);
  letter-spacing: 0.08em;
}

.about__fact-val {
  color: var(--fg-strong);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-strong);
}

.contact__grid--single {
  grid-template-columns: 1fr;
}

/* Single-card hover — повторяем паттерн product-row.
   Огромный 700×700 круг спозиционирован сильно ВЫШЕ карточки (top:-450px),
   так что центр (брайт-точка) находится за верхней гранью. Видна только
   мягкая нижняя кромка gradient-fade — gradient гарантированно прозрачен
   у нижнего и боковых клипов карточки. Никаких прямоугольных срезов. */
.contact__grid--single .contact__card-aura { display: none; }

.contact__grid--single .contact__card::before {
  content: '';
  position: absolute;
  top: -450px;
  left: 20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-orange), transparent 65%);
  filter: blur(70px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.contact__grid--single .contact__card:hover::before { opacity: 0.35; }

.contact__card {
  position: relative;
  padding: 40px 48px 40px 0;
  border-bottom: 1px solid var(--rule-strong);
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
}

.contact__card:nth-child(2) {
  padding-left: 48px;
  border-left: 1px solid var(--rule-strong);
}

.contact__card-aura {
  position: absolute;
  top: -80%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.contact__card:nth-child(1) .contact__card-aura {
  left: -20%;
  background: radial-gradient(circle, var(--accent-orange), transparent 65%);
}

.contact__card:nth-child(2) .contact__card-aura {
  left: 20%;
  background: radial-gradient(circle, var(--accent-blue), transparent 65%);
}

.contact__card:hover .contact__card-aura {
  opacity: 0.4;
}

.contact__card-label {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__card-email {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.02em;
  margin-top: 14px;
  color: var(--fg-strong);
  word-break: break-word;
}

.contact__card-desc {
  position: relative;
  font-size: 14px;
  color: var(--fg-soft);
  margin-top: 10px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  position: relative;
  z-index: 2;
  padding: 60px 48px 48px;
  border-top: 1px solid var(--rule);
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
}

.footer__address {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-soft);
  margin-top: 10px;
  line-height: 1.7;
}

.footer__col-h {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.footer__col-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer__strap {
  max-width: 1440px;
  margin: 56px auto 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-ghost);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   Responsive — single-column shrink for tablet and below
   ========================================================================== */

@media (max-width: 1024px) {
  .hero { padding: 140px 32px 64px; }
  .section { padding: 64px 32px 96px; }
  .ru-block { padding: 24px 32px 80px; }
  .footer { padding: 56px 32px 40px; }
  .topbar { padding: 18px 32px; }
  .hero__meta { left: 32px; right: 32px; width: calc(100% - 64px); top: 90px; }
  .hero__main { grid-template-columns: 1fr; gap: 32px; align-items: stretch; }
  .hero__indicators { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ru-block__inner { grid-template-columns: 1fr; gap: 24px; }
  .products__head { grid-template-columns: 1fr; gap: 24px; align-items: stretch; }
  .about__inner { grid-template-columns: 1fr; gap: 32px; }
  .about__facts { padding-top: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .topbar { padding: 14px 20px; }
  .topbar__nav { gap: 16px; font-size: 11px; }
  .topbar__nav a:not(.is-strong):not([href^="mailto:"]) { display: none; }

  .hero { padding: 120px 20px 56px; min-height: 0; }
  .hero__meta {
    position: static;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
    width: 100%;
    font-size: 9px;
    letter-spacing: 0.04em;
    flex-wrap: nowrap;
  }
  .hero__meta > span {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .hero__indicators { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 64px; }
  .hero__indicator-key { font-size: 18px; }

  .section { padding: 48px 20px 80px; }
  .ru-block { padding: 16px 20px 64px; }
  .footer { padding: 48px 20px 32px; }

  /* Products → stacked card layout below 768 */
  .products__table-header { display: none; }
  .product-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }
  .product-row__index { font-size: 11px; opacity: 0.5; }
  .product-row__title { font-size: 28px; }
  .product-row__link { text-align: left; }

  /* Contact → stacked */
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card { padding: 32px 0 !important; border-left: none !important; }

  /* Footer → 1 column */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Touch-only fallback: aurora cursor follow disables (cursor doesn't move on touch) */
@media (hover: none) {
  .aurora__cursor { display: none; }
}

/* ==========================================================================
   Legal pages (privacy / terms / support)
   ========================================================================== */
.legal {
  position: relative;
  z-index: 2;
  padding: 140px 48px 120px;
}

.legal__inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal__back {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-soft);
  text-decoration: none;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}

.legal__back:hover { color: var(--fg-strong); opacity: 1; }

.legal__h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 16px;
  color: var(--fg-strong);
  font-weight: 400;
}

.legal__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.legal__warning {
  border-left: 2px solid var(--accent-amber);
  padding: 16px 20px;
  background: rgba(255, 201, 120, 0.06);
  margin: 24px 0 40px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 0 4px 4px 0;
}

.legal__warning strong {
  color: var(--accent-amber);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.legal__h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
  margin: 56px 0 16px;
}

.legal p,
.legal li {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
}

.legal ul {
  margin: 0 0 24px;
  padding-left: 20px;
}

.legal ul li { margin-bottom: 8px; }

.legal strong {
  color: var(--fg-strong);
  font-weight: 500;
}

.legal a {
  color: var(--fg-strong);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
}

.legal a:hover {
  text-decoration-color: var(--accent-orange);
  opacity: 1;
}

.legal__contact-card {
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 16px 0;
  text-decoration: none;
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.legal__contact-card:hover {
  border-color: var(--accent-orange);
  opacity: 1;
}

.legal__contact-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal__contact-card-value {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--fg-strong);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .legal { padding: 100px 20px 80px; }
  .legal__back { margin-bottom: 32px; }
  .legal__h2 { margin: 40px 0 12px; }
}
