:root {
  --navy: #0B0D26;
  --navy-2: #111642;
  --pink: #E6007A;
  --orange: #FF8A00;
  --teal: #00B39E;
  --blue-soft: #EEF6FF;
  --light: #F6F8FC;
  --white: #FFFFFF;
  --text: #14172E;
  --muted: #667085;
  --border: #E7EAF2;
  --shadow: 0 24px 80px rgba(11, 13, 38, .10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; }
.container { width: min(1200px, 92%); margin: auto; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  padding: 9px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar strong { color: var(--teal); }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231,234,242,.9);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 10px solid var(--navy);
  border-right-color: transparent;
  position: relative;
  flex: 0 0 auto;
  background: white;
}
.brand-mark::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 11px;
  width: 35px;
  height: 7px;
  border-radius: 99px;
  background: var(--pink);
  box-shadow: 0 12px 0 var(--orange), 0 24px 0 var(--teal);
}
.brand-text { line-height: 1; }
.brand-text strong { display: block; font-size: 17px; font-weight: 950; letter-spacing: -.05em; }
.brand-text span { display: block; color: var(--muted); font-size: 12px; font-weight: 700; margin-top: 5px; }

.navlinks { display: flex; align-items: center; gap: 26px; }
.navlinks a { text-decoration: none; font-size: 14px; font-weight: 800; color: #30344D; }
.navlinks a:hover { color: var(--teal); }

.actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 19px;
  border: 0;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: white; box-shadow: 0 14px 34px rgba(11,13,38,.22); }
.btn-secondary { background: #EEF2F8; color: var(--navy); }
.btn-teal { background: var(--teal); color: white; box-shadow: 0 14px 34px rgba(0,179,158,.24); }
.btn-white { background: white; color: var(--navy); }

.hero {
  color: white;
  background:
    radial-gradient(circle at 16% 20%, rgba(230,0,122,.30), transparent 28%),
    radial-gradient(circle at 72% 18%, rgba(0,179,158,.28), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(255,138,0,.18), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 58%, #091128 100%);
  padding: 72px 0 34px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 48px;
  align-items: center;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: #D8FFF8;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 20px;
}
.label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

h1 {
  font-size: clamp(46px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -.075em;
  max-width: 800px;
  margin-bottom: 24px;
}
.hero-lead { color: #D7DAEA; font-size: 20px; max-width: 650px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 14px;
}
.trust-row span { display: inline-flex; gap: 8px; align-items: center; }

.dashboard {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  padding: 18px;
  box-shadow: 0 40px 100px rgba(0,0,0,.26);
  backdrop-filter: blur(18px);
}
.dash-top {
  background: white;
  color: var(--navy);
  border-radius: 26px;
  padding: 24px;
  margin-bottom: 14px;
}
.dash-top small { color: var(--muted); font-weight: 800; }
.dash-top h2 { font-size: 38px; letter-spacing: -.06em; line-height: .98; margin: 8px 0 18px; }
.progress { height: 11px; border-radius: 999px; background: #EEF2F8; overflow: hidden; }
.progress span { display: block; height: 100%; width: 72%; background: linear-gradient(90deg, var(--pink), var(--orange), var(--teal)); border-radius: inherit; }
.dash-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.dash-card {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  padding: 19px;
}
.dash-card strong { display: block; color: white; font-size: 28px; letter-spacing: -.05em; }
.dash-card span { color: #CAD0EA; font-size: 13px; font-weight: 700; }

.search-panel {
  margin-top: -36px;
  position: relative;
  z-index: 5;
}
.search-box {
  background: white;
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 12px;
  border: 1px solid var(--border);
}
.field {
  background: #F7F8FC;
  border: 1px solid #EEF1F7;
  border-radius: 18px;
  padding: 13px 15px;
}
.field label { display: block; color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.field strong { font-size: 15px; }

section { padding: 72px 0; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 30px; }
.section-head h2 { font-size: clamp(34px, 4.5vw, 56px); line-height: .96; letter-spacing: -.065em; }
.section-head p { color: var(--muted); max-width: 540px; font-size: 16px; }

.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature {
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 16px 46px rgba(11,13,38,.05);
  min-height: 255px;
}
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 20px; color: white; font-size: 25px; margin-bottom: 23px; }
.feature h3 { font-size: 24px; letter-spacing: -.04em; margin-bottom: 10px; }
.feature p { color: var(--muted); }
.pink { background: var(--pink); } .orange { background: var(--orange); } .teal { background: var(--teal); }

.content-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.article-large {
  min-height: 470px;
  border-radius: 34px;
  padding: 32px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(11,13,38,.12), rgba(11,13,38,.92)),
    radial-gradient(circle at 70% 20%, rgba(0,179,158,.55), transparent 25%),
    linear-gradient(135deg, #25305F, #0B0D26);
  overflow: hidden;
  position: relative;
}
.article-large::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -52px;
  top: -52px;
  border-radius: 50%;
  border: 42px solid rgba(255,255,255,.08);
}
.article-large h3 { font-size: 42px; line-height: 1; letter-spacing: -.06em; margin-bottom: 12px; position: relative; }
.article-large p { color: #D7DAEA; max-width: 560px; position: relative; }
.article-list { display: grid; gap: 16px; }
.article-mini {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 22px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
}
.thumb { width: 72px; height: 72px; border-radius: 20px; background: linear-gradient(135deg, var(--pink), var(--orange), var(--teal)); }
.article-mini small { color: var(--teal); font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.article-mini h3 { font-size: 19px; letter-spacing: -.03em; }

.agenda-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; }
.calendar-card {
  background: var(--navy);
  color: white;
  border-radius: 32px;
  padding: 28px;
  min-height: 420px;
}
.calendar-card h3 { font-size: 34px; letter-spacing: -.055em; line-height: 1; margin-bottom: 20px; }
.month-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 8px; margin-top: 22px; }
.day { aspect-ratio: 1; display: grid; place-items: center; border-radius: 13px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.75); font-size: 13px; font-weight: 800; }
.day.active { background: var(--teal); color: white; }
.event-list { display: grid; gap: 14px; }
.event {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 20px;
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 18px;
  align-items: center;
}
.date {
  height: 84px;
  border-radius: 22px;
  background: #F1F4FA;
  color: var(--navy);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 950;
  font-size: 25px;
}
.date span { display: block; color: var(--pink); font-size: 12px; letter-spacing: .08em; }
.event h3 { letter-spacing: -.03em; }
.event p { color: var(--muted); }
.tag { border-radius: 999px; padding: 8px 12px; background: #EEF9F7; color: var(--teal); font-size: 12px; font-weight: 950; }

.forum {
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.forum-top { background: var(--navy); color: white; padding: 26px; display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.forum-top h3 { font-size: 30px; letter-spacing: -.05em; }
.topic {
  display: grid;
  grid-template-columns: 1fr 130px 110px;
  gap: 16px;
  padding: 22px 26px;
  border-top: 1px solid var(--border);
  align-items: center;
}
.topic h4 { font-size: 19px; letter-spacing: -.03em; }
.topic p, .topic span { color: var(--muted); font-size: 14px; }

.partner-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.partner {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 14px 38px rgba(11,13,38,.045);
}
.partner-mark { width: 74%; height: 38px; border-radius: 13px; background: linear-gradient(90deg, var(--pink), var(--orange), var(--teal)); opacity: .95; }
.partner h3 { letter-spacing: -.03em; }
.partner p { color: var(--muted); font-size: 14px; }

.newsletter {
  border-radius: 38px;
  padding: 46px;
  color: white;
  background:
    radial-gradient(circle at 20% 0%, rgba(230,0,122,.34), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(0,179,158,.28), transparent 33%),
    var(--navy);
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
  align-items: center;
}
.newsletter h2 { font-size: clamp(32px, 4vw, 54px); line-height: .98; letter-spacing: -.065em; }
.newsletter p { color: #D7DAEA; margin-top: 12px; }
.signup { background: white; border-radius: 24px; padding: 16px; display: flex; gap: 10px; }
.signup input { flex: 1; border: 0; background: #F3F5FA; border-radius: 16px; padding: 0 16px; font-size: 15px; outline: none; }

footer { padding: 46px 0; color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-weight: 800; }
.footer-links a { text-decoration: none; }

@media (max-width: 960px) {
  .navlinks, .actions .btn-secondary { display: none; }
  .hero-grid, .search-box, .feature-grid, .content-grid, .agenda-wrap, .newsletter { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2,1fr); }
  .event { grid-template-columns: 74px 1fr; }
  .event .tag { grid-column: 2; width: fit-content; }
  .topic { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
}

@media (max-width: 560px) {
  .topbar { display: none; }
  .brand-text span { display: none; }
  .dash-grid, .partner-grid { grid-template-columns: 1fr; }
  .newsletter, .calendar-card { padding: 28px; }
  .signup { flex-direction: column; }
  .signup input { min-height: 48px; }
  section { padding: 54px 0; }
}

