
:root {
  --bg: #0b0d12;
  --bg-soft: #131822;
  --surface: rgba(19, 24, 34, 0.9);
  --surface-soft: rgba(255,255,255,0.03);
  --line: rgba(255,255,255,0.08);
  --text: #f5f7fb;
  --muted: #b7c1d1;
  --accent: #94caff;
  --accent-soft: rgba(148, 202, 255, 0.14);
  --radius: 22px;
  --max-width: 1160px;
  --shadow: 0 20px 50px rgba(0,0,0,0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(148,202,255,0.09), transparent 28%),
    linear-gradient(180deg, #090b10 0%, #0d1118 100%);
}

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

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

.page {
  width: calc(100% - 32px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 0 36px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  margin-bottom: 22px;
  position: sticky;
  top: 10px;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffffff);
  flex: 0 0 auto;
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
}

.site-nav a:hover,
.footer-links a:hover,
.inline-link:hover,
.chips a:hover {
  color: var(--text);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--muted);
}

.lang-switch a.active {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  min-height: 420px;
}

.hero-copy {
  flex: 1 1 560px;
  padding: 40px;
}

.hero-visual {
  flex: 1 1 320px;
  min-height: 320px;
  position: relative;
  padding: 24px;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.8;
  -webkit-mask-image: radial-gradient(circle at center, black 42%, transparent 80%);
  mask-image: radial-gradient(circle at center, black 42%, transparent 80%);
}

.visual-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(260px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10,13,18,0.84);
}

.visual-panel span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.lead,
.sublead,
.section p,
.mini-card p,
.privacy-wrap p {
  color: var(--muted);
  line-height: 1.8;
}

.lead {
  margin: 20px 0 0;
  max-width: 62ch;
  font-size: 1.04rem;
}

.sublead {
  margin: 14px 0 0;
  max-width: 58ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
}

.button.primary {
  background: var(--text);
  color: var(--bg);
}

.section {
  padding: 32px;
  margin-top: 22px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.mini-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.chips a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}

.company-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.company-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}

.company-row span {
  color: var(--muted);
}

.company-row strong {
  text-align: right;
}

.email-reveal {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text);
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
}

.site-footer {
  margin-top: 22px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.privacy-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.privacy-wrap {
  width: min(100%, 820px);
  padding: 30px;
}

.back-link {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-nav {
    width: 100%;
    order: 3;
    justify-content: flex-start;
  }

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

  .site-footer,
  .company-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-row strong {
    text-align: left;
  }

  .hero-visual {
    border-left: none;
    border-top: 1px solid var(--line);
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .page {
    width: calc(100% - 18px);
  }

  .site-header,
  .section,
  .site-footer,
  .privacy-wrap {
    border-radius: 18px;
  }

  .hero-copy,
  .section,
  .privacy-wrap {
    padding: 24px;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 240px;
  }

  h1 {
    max-width: 13ch;
  }
}
