:root {
  --navy: #0e1b2c;
  --navy-2: #16283f;
  --ink: #1d2733;
  --muted: #5a6a7d;
  --line: #e3e8ee;
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --accent: #1f5eff;
  --max: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  font-weight: 700; letter-spacing: .12em; font-size: 15px;
  color: var(--navy); text-decoration: none;
}
.brand span { color: var(--accent); }
nav.links a {
  color: var(--muted); text-decoration: none; font-size: 14px;
  margin-left: 28px; transition: color .15s;
}
nav.links a:hover { color: var(--navy); }
nav.links a.lang {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 14px; color: var(--navy); font-weight: 600;
}
nav.links a.lang:hover { border-color: var(--accent); color: var(--accent); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; padding: 108px 0 96px;
}
.hero .kicker {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: #8fa6c4; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(30px, 4.6vw, 48px); font-weight: 700;
  line-height: 1.18; max-width: 720px; letter-spacing: -.01em;
}
.hero p {
  margin-top: 22px; max-width: 600px; font-size: 17px; color: #b9c7d9;
}
.hero .cta {
  display: inline-block; margin-top: 36px; padding: 13px 30px;
  background: #fff; color: var(--navy); text-decoration: none;
  font-weight: 600; font-size: 14px; border-radius: 4px;
}

/* Hero stats */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px; margin-top: 64px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.stat b { display: block; font-size: 30px; color: #fff; letter-spacing: -.01em; }
.stat span { font-size: 13px; color: #8fa6c4; }

/* Media cards */
.media-grid { margin-top: 44px; display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.media-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 28px; text-decoration: none; color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.media-card:hover { border-color: #b9c7d9; box-shadow: 0 4px 18px rgba(14,27,44,.07); }
.media-card img { border-radius: 50%; flex-shrink: 0; }
.media-mono {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: #fff; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center; letter-spacing: .02em;
}
.media-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.media-card .ext { font-size: 12px; color: var(--accent); font-weight: 500; margin-left: 6px; }
.media-card p { font-size: 14.5px; color: var(--muted); }
.platforms {
  margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.plat-label { font-size: 13px; color: var(--muted); margin-right: 4px; }
.platforms a, .plat-chip {
  display: inline-block; padding: 7px 14px; border: 1px solid var(--line);
  border-radius: 999px; font-size: 13px; color: var(--ink);
  text-decoration: none; background: #fff;
}
.platforms a:hover { border-color: var(--accent); color: var(--accent); }
.plat-chip { color: var(--muted); }
.audience {
  margin-top: 28px; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 10px; padding: 28px;
}
.audience h3 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.audience p { font-size: 14.5px; color: var(--muted); max-width: 860px; }

/* Sections */
section { padding: 88px 0; }
section.alt { background: var(--bg-soft); }
.sec-label {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 14px;
}
h2 { font-size: 30px; color: var(--navy); letter-spacing: -.01em; margin-bottom: 18px; }
.lede { max-width: 680px; color: var(--muted); font-size: 16.5px; }

/* Services grid */
.grid {
  margin-top: 48px; display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 30px 26px;
}
.card .icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: #eaf0ff; color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--muted); }

/* About */
.about-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; margin-top: 8px; }
.facts { border-left: 2px solid var(--line); padding-left: 32px; }
.facts dt {
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-top: 22px;
}
.facts dt:first-child { margin-top: 0; }
.facts dd { font-size: 15.5px; color: var(--ink); margin-top: 4px; }
@media (max-width: 760px) { .about-cols { grid-template-columns: 1fr; } }
.founder-cols { grid-template-columns: 240px 1.4fr 1fr; align-items: start; }
.portrait img {
  width: 100%; max-width: 240px; height: auto; border-radius: 12px;
  border: 1px solid var(--line); display: block;
}
@media (max-width: 900px) { .founder-cols { grid-template-columns: 1fr; } .portrait img { max-width: 220px; } }

/* Contact */
.contact-box {
  margin-top: 40px; display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.contact-box .card a { color: var(--accent); text-decoration: none; }

/* Footer */
footer {
  background: var(--navy); color: #8fa6c4; font-size: 13.5px;
  padding: 48px 0 40px;
}
.foot-top {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: flex-start; justify-content: space-between;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.foot-brand { color: #fff; font-weight: 700; letter-spacing: .12em; font-size: 14px; }
.foot-addr { margin-top: 10px; line-height: 1.8; font-style: normal; }
footer nav a {
  color: #8fa6c4; text-decoration: none; margin-left: 22px; margin-left: 0; margin-right: 22px;
}
footer nav a:hover { color: #fff; }
.foot-bottom { padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 72px 24px 96px; }
.legal h1 { font-size: 32px; color: var(--navy); margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 20px; margin: 36px 0 12px; }
.legal p, .legal li { color: #37414d; font-size: 15.5px; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal a { color: var(--accent); }
