:root {
  --bg: #080B12;
  --surface: #111722;
  --surface-2: #182131;
  --text: #F5F7FA;
  --muted: #AAB3C2;
  --accent: #F2B84B;
  --blue: #1F5F7A;
  --green: #62A85C;
  --border: rgba(255,255,255,.10);
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0,0,0,.35);
}

.section-intro {
  max-width: 760px;
  color: #46505F;
  font-size: 19px;
  margin-bottom: 34px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section {
  padding: 100px 0;
}

.narrow {
  max-width: 820px;
  margin: auto;
  text-align: center;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8,11,18,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  padding: 4px;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #121212;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .25s ease;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242,184,75,.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  box-shadow: none;
}

.btn-small {
  padding: 10px 18px;
  font-size: 14px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  background:
    radial-gradient(circle at top right, rgba(31,95,122,.35), transparent 36%),
    radial-gradient(circle at bottom left, rgba(242,184,75,.16), transparent 34%),
    linear-gradient(180deg, #0A0E17 0%, #080B12 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}

.hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: white;
  padding: 8px;
  margin-bottom: 26px;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(48px, 7vw, 88px);
  line-height: .95;
  letter-spacing: -.07em;
  max-width: 850px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 22px;
}

h3 {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-content p {
  color: var(--muted);
  font-size: 20px;
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-quote {
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.hero-quote p {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.04em;
}

.manifesto {
  background: #F7F7F2;
  color: #10131A;
}

.manifesto p {
  font-size: 21px;
  color: #333B48;
  margin-bottom: 18px;
}

.highlight {
  font-size: 30px !important;
  font-weight: 900;
  color: #10131A !important;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 240px;
}

.card p {
  color: var(--muted);
}

.about {
  background: var(--surface);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.founder-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
}

.founder-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.founder-card p {
  color: var(--muted);
}

.magazine {
  background:
    radial-gradient(circle at top left, rgba(242,184,75,.12), transparent 35%),
    var(--bg);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading p {
  color: var(--muted);
  font-size: 19px;
}

.mag-feature {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 42px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.mag-cover {
  background: #05070D;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.mag-cover img {
  width: 100%;
  height: auto;
}

.mag-info span {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}

.mag-info h3 {
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -.05em;
  margin-top: 12px;
}

.mag-info p {
  color: var(--muted);
  font-size: 19px;
  margin: 20px 0;
}

.mag-info ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
}

.mag-info li {
  padding-left: 24px;
  position: relative;
  color: #DCE2EA;
}

.mag-info li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.news {
  background: #F7F7F2;
  color: #10131A;
}

.news .card {
  background: white;
  color: #10131A;
  border: 1px solid rgba(0,0,0,.08);
}

.news .card p {
  color: #46505F;
}

.date {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  display: inline-block;
  margin-bottom: 14px;
}

.testimonials {
  background: var(--surface);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

blockquote {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.cta {
  text-align: center;
  background:
    linear-gradient(rgba(8,11,18,.88), rgba(8,11,18,.92)),
    radial-gradient(circle at center, rgba(242,184,75,.22), transparent 40%);
}

.cta p {
  color: var(--muted);
  font-size: 20px;
  max-width: 720px;
  margin: 0 auto 32px;
}

.contact {
  background: #F7F7F2;
  color: #10131A;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.contact p {
  color: #46505F;
  font-size: 19px;
}

.contact-form {
  display: grid;
  gap: 14px;
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  padding: 16px 18px;
  border-radius: 16px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.pdf-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.pdf-modal.active {
  display: flex;
}

.pdf-modal-content {
  width: min(1100px, 96vw);
  height: 90vh;
  background: #111;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.pdf-modal iframe {
  width: 100%;
  height: 100%;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: #111;
  font-size: 28px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .mag-feature,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 74px 0;
  }

  .cards-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hero-quote p {
    font-size: 22px;
  }

  .mag-feature {
    padding: 20px;
  }

  .footer-content {
    display: block;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  background: white;
}

.testimonial-card p {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.testimonial-card small {
  display: block;
  color: var(--accent);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 800;
}

.news-link {
  color: inherit;
  text-decoration: none;
  transition: .25s ease;
}

.news-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.article-page {
  background: #F7F7F2;
  color: #10131A;
  min-height: 100vh;
  padding-top: 90px;
}

.article-hero {
  padding: 90px 0 50px;
  text-align: center;
}

.article-hero h1 {
  color: #10131A;
  margin-inline: auto;
}

.article-hero p {
  color: #46505F;
  font-size: 22px;
  margin-bottom: 18px;
}

.article-hero small {
  color: #1F5F7A;
  font-weight: 800;
}

.article-cover {
  margin-bottom: 50px;
}

.article-cover img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 28px;
}

.article-content {
  font-size: 20px;
  color: #253044;
  padding-bottom: 90px;
}

.article-back {
  margin-top: 50px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  transition: .25s ease;
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.social-links-contact {
  margin-top: 24px;
}

.social-links-contact a {
  color: #10131A;
  border-color: rgba(0,0,0,.12);
}

.contact-info {
  margin-top: 28px;
}

.contact-info p {
  margin-bottom: 8px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .social-links-nav {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }
}

.social-links i {
  font-size: 17px;
  line-height: 1;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
}

.founder-linkedin:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {

  .social-links-nav {
    display: none;
  }

  .navbar .container {
    gap: 14px;
  }

  .nav-logo span {
    font-size: 1.1rem;
    line-height: 1.1;
  }

  .btn-magazine {
    padding: 12px 18px;
    font-size: .9rem;
  }

}

@media (max-width: 920px) {
  .header .social-links-nav {
    display: none !important;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 15px;
    line-height: 1.1;
  }

  .btn-small {
    padding: 11px 16px;
    font-size: 13px;
  }
}
/* FIX MOBILE NAVBAR */
@media screen and (max-width: 1024px) {
  .social-links-nav,
  .nav-actions .social-links,
  header .social-links {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    max-width: 160px;
  }

  .brand strong {
    font-size: 14px;
    line-height: 1.1;
  }

  .btn-small {
    padding: 12px 18px;
    font-size: 13px;
    white-space: nowrap;
  }
}

.founder-phrase {
    display: block;
    margin-top: 12px;
    line-height: 1.7;
}

.founder-linkedin-wrap {
    margin-top: 16px;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F2B84B;
    font-weight: 700;
    transition: .2s ease;
}

.founder-linkedin:hover {
    transform: translateY(-2px);
    opacity: .9;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, rgba(242, 184, 75, .18), transparent 34%),
    #0B111B;
  transition: opacity .45s ease, visibility .45s ease;
}

.loader-card {
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
  animation: loaderFloat 1.8s ease-in-out infinite;
}

.loader-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.loader-card p {
  color: #F2B84B;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.03);
  }
}