:root {
  --bg:#09090b;
  --bg-soft:#111114;
  --card:rgba(255,255,255,.055);
  --card-strong:rgba(255,255,255,.09);
  --text:#f7f3ea;
  --muted:#b8b1a6;
  --line:rgba(255,255,255,.12);
  --gold:#d8b25d;
  --gold-soft:rgba(216,178,93,.18);
  --shadow:0 24px 80px rgba(0,0,0,.45);
  --radius:28px;
  --max:1180px;
  --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --serif:Georgia,Cambria,"Times New Roman",serif
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  min-height:100vh;
  font-family:var(--font);
  color:var(--text);
  background:radial-gradient(circle at 15% 5%,rgba(216,178,93,.18),transparent 28%),radial-gradient(circle at 85% 16%,rgba(255,255,255,.08),transparent 24%),linear-gradient(180deg,#09090b 0%,#0f0f12 52%,#08080a 100%);
  overflow-x:hidden
}
body:before {
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.8),transparent 72%);
  z-index:-2
}
a {
  color:inherit;
  text-decoration:none
}
.wrap {
  width:min(var(--max),calc(100% - 40px));
  margin:0 auto
}
.nav {
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(18px);
  background:rgba(9,9,11,.72);
  border-bottom:1px solid var(--line)
}
.nav-inner {
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:-.03em
}
.brand-mark {
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#0a0a0b;
  background:linear-gradient(135deg,#f4d58d,#b78b35);
  box-shadow:0 10px 34px rgba(216,178,93,.24);
  font-size:24px
}
.brand small {
  display:block;
  color:var(--muted);
  font-weight:500;
  letter-spacing:0;
  margin-top:2px
}
.menu {
  display:flex;
  align-items:center;
  gap:4px;
  color:var(--muted);
  font-size:14px
}
.menu a {
  padding:10px 12px;
  border-radius:999px;
  transition:.2s ease
}
.menu a:hover,.menu a.active {
  color:var(--text);
  background:rgba(255,255,255,.08)
}
.nav-cta {
  padding:11px 16px;
  border-radius:999px;
  background:var(--text);
  color:#09090b;
  font-weight:750;
  font-size:14px;
  white-space:nowrap
}
.mobile-toggle {
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.055);
  color:var(--text);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer
}
.mobile-toggle span {
  width:20px;
  height:2px;
  border-radius:999px;
  background:var(--text);
  transition:.2s ease
}
.mobile-menu {
  display:none;
  border-top:1px solid var(--line);
  background:rgba(9,9,11,.94);
  backdrop-filter:blur(18px);
  padding:10px 20px 18px
}
.mobile-menu a {
  display:flex;
  align-items:center;
  min-height:46px;
  padding:0 14px;
  border-radius:16px;
  color:var(--muted);
  font-weight:760
}
.mobile-menu a:hover,.mobile-menu a.active {
  color:var(--text);
  background:rgba(255,255,255,.07)
}
.mobile-menu .mobile-menu-cta {
  margin-top:8px;
  justify-content:center;
  color:#09090b;
  background:linear-gradient(135deg,#f6d98d,#b98b35);
  font-weight:850
}
.nav.menu-open .mobile-menu {
  display:grid;
  gap:4px
}
.nav.menu-open .mobile-toggle span:nth-child(1) {
  transform:translateY(7px) rotate(45deg)
}
.nav.menu-open .mobile-toggle span:nth-child(2) {
  opacity:0
}
.nav.menu-open .mobile-toggle span:nth-child(3) {
  transform:translateY(-7px) rotate(-45deg)
}
.hero {
  padding:92px 0 56px;
  position:relative
}
.hero-grid {
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:52px;
  align-items:center
}
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--gold);
  background:rgba(255,255,255,.04);
  font-size:13px;
  font-weight:700;
  margin-bottom:24px
}
h1,h2,h3 {
  margin:0;
  letter-spacing:-.05em
}
h1 {
  max-width:780px;
  font-size:clamp(46px,7vw,86px);
  line-height:.94
}
h1 span {
  font-family:var(--serif);
  color:var(--gold);
  font-weight:500;
  font-style:italic
}
.lead {
  margin:26px 0 0;
  max-width:650px;
  color:var(--muted);
  font-size:clamp(18px,2vw,21px);
  line-height:1.65
}
.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 20px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  transition:.2s ease
}
.btn.primary {
  background:linear-gradient(135deg,#f6d98d,#b98b35);
  color:#0a0a0b;
  box-shadow:0 16px 44px rgba(216,178,93,.2)
}
.btn.secondary {
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-color:var(--line)
}
.btn:hover {
  transform:translateY(-2px)
}
.hero-panel {
  min-height:560px;
  border:1px solid var(--line);
  border-radius:40px;
  background:linear-gradient(135deg,rgba(255,255,255,.1),rgba(255,255,255,.03)),radial-gradient(circle at 50% 20%,rgba(216,178,93,.24),transparent 34%);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
  padding:28px
}
.board {
  position:absolute;
  inset:48px 28px 128px;
  transform:rotate(-7deg);
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  opacity:.76;
  background-color:rgba(255,255,255,.08);
  background-image:conic-gradient(from 90deg,rgba(255,255,255,.08) 25%,rgba(216,178,93,.2) 0 50%,rgba(255,255,255,.08) 0 75%,rgba(216,178,93,.2) 0);
  background-size:25% 25%;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.18)
}
.piece {
  position:absolute;
  font-size:clamp(110px,14vw,210px);
  line-height:1;
  filter:drop-shadow(0 24px 36px rgba(0,0,0,.6))
}
.piece.king {
  right:36px;
  top:96px;
  color:var(--gold)
}
.piece.knight {
  left:34px;
  bottom:110px;
  color:rgba(255,255,255,.88);
  transform:rotate(9deg)
}
.stat-card {
  position:absolute;
  left:26px;
  right:26px;
  bottom:24px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px
}
.stat {
  padding:16px;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(10,10,12,.72);
  backdrop-filter:blur(14px)
}
.stat strong {
  display:block;
  font-size:22px;
  color:var(--gold)
}
.stat span {
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:12px;
  line-height:1.35
}
section {
  padding:74px 0
}
.page-hero {
  padding:74px 0 30px
}
.page-hero h1 {
  font-size:clamp(42px,6vw,72px)
}
.section-head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:28px
}
.section-head h2 {
  font-size:clamp(32px,4.8vw,56px);
  line-height:1
}
.section-head p,.page-hero p {
  margin:0;
  color:var(--muted);
  line-height:1.6;
  max-width:640px
}
.page-hero p {
  margin-top:22px;
  font-size:19px
}
.cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px
}
.card {
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  padding:28px;
  box-shadow:0 18px 44px rgba(0,0,0,.22);
  transition:.2s ease
}
.card:hover {
  transform:translateY(-4px);
  background:var(--card-strong);
  border-color:rgba(216,178,93,.34)
}
.icon {
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:var(--gold-soft);
  color:var(--gold);
  font-size:26px;
  margin-bottom:20px
}
.card h3 {
  font-size:24px;
  margin-bottom:12px
}
.card p,.card li {
  color:var(--muted);
  line-height:1.65
}
.card ul {
  padding-left:18px;
  margin:18px 0 0
}
.split {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:22px;
  align-items:stretch
}
.feature {
  min-height:100%;
  border-radius:36px;
  border:1px solid var(--line);
  background:linear-gradient(135deg,rgba(216,178,93,.18),rgba(255,255,255,.04));
  padding:34px;
  overflow:hidden;
  position:relative
}
.feature:after {
  content:"♕";
  position:absolute;
  right:-28px;
  bottom:-58px;
  font-size:240px;
  color:rgba(255,255,255,.055)
}
.feature h2 {
  font-size:clamp(34px,4vw,54px);
  line-height:1.02;
  max-width:580px
}
.feature p {
  color:var(--muted);
  line-height:1.7;
  max-width:560px;
  font-size:17px
}
.list-card {
  display:grid;
  gap:14px
}
.list-item {
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.045)
}
.check {
  width:30px;
  height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#0a0a0b;
  background:var(--gold);
  font-weight:900
}
.list-item h3 {
  font-size:19px;
  margin-bottom:5px
}
.list-item p {
  margin:0;
  color:var(--muted);
  line-height:1.55
}
.timeline {
  display:grid;
  gap:14px
}
.result {
  display:grid;
  grid-template-columns:120px 1fr auto;
  gap:18px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:24px;
  padding:18px;
  background:rgba(255,255,255,.045)
}
.result-date {
  color:var(--gold);
  font-weight:850;
  font-size:14px
}
.result h3 {
  font-size:20px;
  margin-bottom:4px
}
.result p {
  margin:0;
  color:var(--muted)
}
.badge {
  padding:8px 12px;
  border-radius:999px;
  color:var(--gold);
  background:var(--gold-soft);
  border:1px solid rgba(216,178,93,.28);
  font-weight:800;
  font-size:13px;
  white-space:nowrap
}
.fide-box {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px
}
.profile-card {
  border:1px solid rgba(216,178,93,.35);
  background:linear-gradient(135deg,rgba(216,178,93,.19),rgba(255,255,255,.045));
  border-radius:34px;
  padding:30px
}
.profile-card .id {
  color:var(--gold);
  font-size:14px;
  font-weight:850;
  margin-bottom:16px
}
.profile-card h3 {
  font-size:30px;
  margin-bottom:10px
}
.profile-card p {
  color:var(--muted);
  line-height:1.65
}
.links-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px
}
.useful-link {
  min-height:118px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:18px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.045);
  transition:.2s ease
}
.useful-link:hover {
  transform:translateY(-3px);
  border-color:rgba(216,178,93,.34);
  background:rgba(255,255,255,.075)
}
.useful-link strong {
  font-size:17px
}
.useful-link span {
  color:var(--muted);
  font-size:13px;
  line-height:1.35
}
.about-short {
  border:1px solid var(--line);
  border-radius:36px;
  padding:34px;
  background:rgba(255,255,255,.045);
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:28px;
  align-items:center
}
.avatarless {
  aspect-ratio:1;
  border-radius:32px;
  border:1px solid var(--line);
  background:radial-gradient(circle at 40% 28%,rgba(216,178,93,.3),transparent 28%),linear-gradient(135deg,rgba(255,255,255,.1),rgba(255,255,255,.025));
  display:grid;
  place-items:center;
  font-size:clamp(90px,14vw,170px);
  color:var(--gold)
}
.about-short h2 {
  font-size:clamp(32px,4vw,52px)
}
.about-short p {
  color:var(--muted);
  line-height:1.75;
  font-size:17px
}
.contact-band {
  border:1px solid rgba(216,178,93,.35);
  border-radius:38px;
  padding:42px;
  background:linear-gradient(135deg,rgba(216,178,93,.2),rgba(255,255,255,.045)),radial-gradient(circle at 82% 20%,rgba(255,255,255,.1),transparent 34%);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px
}
.contact-band h2 {
  font-size:clamp(30px,4vw,52px)
}
.contact-band p {
  color:var(--muted);
  max-width:640px;
  line-height:1.6
}
footer {
  margin-top:52px;
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.28);
  padding:44px 0 28px
}
.social-widget {
  width:min(var(--max),calc(100% - 40px));
  margin:0 auto
}
.social-widget h3 {
  font-size:22px;
  margin-bottom:18px;
  letter-spacing:-.03em
}
.social-links {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center
}
.social-btn,.selected {
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.055);
  color:var(--text);
  font-size:14px;
  font-weight:750;
  cursor:pointer;
  transition:.2s ease
}
.social-btn:hover,.selected:hover {
  border-color:rgba(216,178,93,.4);
  background:rgba(216,178,93,.13);
  transform:translateY(-2px)
}
.social-dropdown {
  position:relative
}
.dropdown-menu {
  display:none;
  position:absolute;
  left:0;
  bottom:calc(100% + 8px);
  width:210px;
  padding:8px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(18,18,20,.98);
  box-shadow:var(--shadow);
  z-index:10
}
.social-dropdown:hover .dropdown-menu {
  display:grid;
  gap:4px
}
.dropdown-item {
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  cursor:pointer
}
.dropdown-item:hover {
  color:var(--text);
  background:rgba(255,255,255,.07)
}
footer p {
  width:min(var(--max),calc(100% - 40px));
  margin:24px auto 0;
  color:var(--muted);
  font-size:14px
}
.profiles-grid {
  display:grid;
  grid-template-columns:1.1fr repeat(3,1fr);
  gap:16px
}
.profiles-intro {
  border:1px solid rgba(216,178,93,.35);
  background:linear-gradient(135deg,rgba(216,178,93,.18),rgba(255,255,255,.045));
  border-radius:30px;
  padding:28px
}
.profiles-kicker {
  color:var(--gold);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:12px
}
.profiles-intro h2 {
  font-size:clamp(30px,4vw,48px);
  line-height:1.02
}
.profiles-intro p {
  color:var(--muted);
  line-height:1.65;
  margin:16px 0 0
}
.profile-tile {
  position:relative;
  min-height:210px;
  border:1px solid var(--line);
  border-radius:30px;
  background:rgba(255,255,255,.045);
  padding:24px;
  overflow:hidden;
  transition:.2s ease
}
.profile-tile:hover {
  transform:translateY(-4px);
  background:rgba(255,255,255,.075);
  border-color:rgba(216,178,93,.34)
}
.profile-tile:after {
  content:attr(data-symbol);
  position:absolute;
  right:14px;
  bottom:-22px;
  font-size:112px;
  color:rgba(255,255,255,.045);
  line-height:1
}
.profile-tile h3 {
  font-size:24px;
  margin-bottom:12px
}
.profile-tile ul {
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
  color:var(--muted)
}
.profile-tile li {
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  padding-bottom:9px
}
.profile-tile li:last-child {
  border-bottom:0;
  padding-bottom:0
}
.profile-tile strong {
  color:var(--text);
  font-weight:850
}
.mini-note {
  margin-top:14px;
  color:var(--muted);
  font-size:13px;
  line-height:1.45
}
@media(max-width:980px) {
  .profiles-grid {
    grid-template-columns:1fr 1fr
  }
  .profiles-intro {
    grid-column:1/-1
  }
}
@media(max-width:640px) {
  .profiles-grid {
    grid-template-columns:1fr
  }
  .profiles-intro,.profile-tile {
    border-radius:26px;
    padding:24px
  }
}
@media(max-width:980px) {
  .menu,.nav-cta {
    display:none
  }
  .mobile-toggle {
    display:inline-flex
  }
  .nav-inner {
    height:70px
  }
  .hero-grid,.split,.fide-box,.about-short {
    grid-template-columns:1fr
  }
  .hero-panel {
    min-height:440px
  }
  .cards {
    grid-template-columns:1fr
  }
  .links-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .section-head {
    display:block
  }
  .section-head p {
    margin-top:16px
  }
  .contact-band {
    display:block
  }
  .contact-band .btn {
    margin-top:16px
  }
}
@media(max-width:640px) {
  .wrap {
    width:min(100% - 28px,var(--max))
  }
  .hero {
    padding-top:58px
  }
  section {
    padding:52px 0
  }
  .hero-panel {
    min-height:380px;
    padding:18px;
    border-radius:30px
  }
  .board {
    inset:36px 18px 118px
  }
  .stat-card {
    grid-template-columns:1fr
  }
  .stat {
    padding:12px 14px
  }
  .piece.king {
    right:20px;
    top:82px
  }
  .piece.knight {
    left:20px;
    bottom:150px
  }
  .result {
    grid-template-columns:1fr;
    align-items:start
  }
  .links-grid {
    grid-template-columns:1fr
  }
  .contact-band,.about-short,.feature,.card {
    padding:24px;
    border-radius:26px
  }
}
.content-section {
  max-width:780px;
  margin:0 auto;
  border:1px solid rgba(216,178,93,.35);
  border-radius:38px;
  padding:42px;
  background:linear-gradient(135deg,rgba(216,178,93,.18),rgba(255,255,255,.045)),radial-gradient(circle at 86% 8%,rgba(255,255,255,.1),transparent 34%);
  box-shadow:var(--shadow)
}
.content-section h2 {
  font-size:clamp(32px,4vw,52px);
  line-height:1;
  margin-bottom:28px
}
.contentForm {
  display:grid;
  gap:12px
}
.contentForm label {
  display:block;
  color:var(--text);
  font-size:14px;
  font-weight:800
}
.formField {
  width:100%;
  min-height:52px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(9,9,11,.62);
  color:var(--text);
  font:inherit;
  font-size:16px;
  padding:0 16px;
  outline:none;
  transition:.2s ease
}
.formField:focus {
  border-color:rgba(216,178,93,.62);
  box-shadow:0 0 0 4px rgba(216,178,93,.12);
  background:rgba(9,9,11,.82)
}
textarea.formField {
  min-height:150px;
  padding:14px 16px;
  resize:vertical;
  line-height:1.55
}
#formContactState:empty {
  display:none
}
#formContactState {
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.055);
  color:var(--muted);
  line-height:1.55
}
#checkboxAgreeDiv {
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  align-items:start;
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
  line-height:1.55
}
#checkboxAgreeDiv input {
  width:20px;
  height:20px;
  margin:1px 0 0;
  accent-color:var(--gold)
}
#checkboxAgreeDiv label {
  color:var(--muted);
  font-size:13px;
  font-weight:600
}
#sendBtn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  margin-top:10px;
  padding:0 24px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,#f6d98d,#b98b35);
  color:#0a0a0b;
  font:inherit;
  font-weight:850;
  cursor:pointer;
  box-shadow:0 16px 44px rgba(216,178,93,.2);
  transition:.2s ease
}
#sendBtn:hover {
  transform:translateY(-2px)
}
#sendBtn:focus-visible {
  outline:3px solid rgba(216,178,93,.45);
  outline-offset:3px
}
@media(max-width:640px) {
  .content-section {
    padding:24px;
    border-radius:26px
  }
  .content-section h2 {
    margin-bottom:22px
  }
  .formField {
    border-radius:16px
  }
  #checkboxAgreeDiv {
    grid-template-columns:1fr
  }
  #checkboxAgreeDiv input {
    margin:0
  }
}

.about-short a
{
  color: #e0bd71 !important;
}