@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --ink: #07151d;
  --ink-soft: #102630;
  --ink-blue: #183848;
  --gold: #c88a18;
  --gold-bright: #e0a42a;
  --gold-pale: #f0d9a8;
  --blue-logistikos: #049B9F;
  --cream: #f4efe7;
  --paper: #fffdf9;
  --white: #ffffff;
  --text: #111d23;
  --muted: #5e676c;
  --line: rgba(200, 138, 24, 0.3);
  --shadow: 0 28px 80px rgba(3, 11, 15, 0.22);
  --radius: 24px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-locked {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

section {
  position: relative;
  scroll-margin-top: 82px;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  position: relative;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--gold-bright);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-bright);
}

.eyebrow--light span {
  display: inline-block;
  width: 32px;
  height: 1px;
  margin-right: 10px;
  background: currentColor;
  vertical-align: middle;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--gold-bright);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 32px rgba(200, 138, 24, 0.22);
  color: #111a1e;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  box-shadow: 0 16px 38px rgba(200, 138, 24, 0.34);
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(6, 18, 25, 0.22);
  box-shadow: none;
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: var(--gold-bright);
  background: rgba(200, 138, 24, 0.12);
}

.button--dark-outline {
  border-color: var(--ink);
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.button--small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 0.76rem;
}

.button--wide {
  width: 100%;
}

.text-link {
  margin-top: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(224, 164, 42, 0.5);
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  gap: 15px;
  border-color: var(--gold-bright);
}

.text-link--dark {
  color: var(--ink);
}

.section-light {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
}

.section-heading__line {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.section-heading__line>span {
  padding-top: 2px;
  color: var(--gold);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 0.94;
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading--light h2 {
  color: var(--white);
}

.ornament {
  width: min(100%, 520px);
  margin-top: 22px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ornament i {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  flex: 1;
}

.ornament i:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament b {
  font-size: 0.9rem;
  font-weight: 400;
}

.section-intro {
  max-width: 650px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

.section-intro--left {
  margin-left: 0;
  text-align: left;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease var(--delay, 0ms), transform 0.75s cubic-bezier(0.2, 0.65, 0.3, 1) var(--delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Header */
.site-header {
  width: 100%;
  height: 86px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background 0.3s ease, height 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header--scrolled {
  height: 72px;
  border-color: rgba(200, 138, 24, 0.22);
  background: rgba(5, 18, 25, 0.92);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header-shell {
  width: min(calc(100% - 40px), 1320px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  min-width: 170px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-brand img {
  width: 37px;
  height: 53px;
  object-fit: contain;
}

.header-brand span {
  display: grid;
  line-height: 1;
}

.header-brand small {
  font-family: "Oswald", sans-serif;
  color: var(--gold-bright);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-brand b {
  margin-top: 5px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.65vw, 28px);
}

.main-nav>a {
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 600;
  position: relative;
}

.main-nav>a.nav-cta {
  color: black;
}

.main-nav>a::after {
  height: 2px;
  position: absolute;
  right: 50%;
  bottom: 2px;
  left: 50%;
  background: var(--gold-bright);
  content: "";
  transition: left 0.2s ease, right 0.2s ease;
}

.main-nav>a:hover,
.main-nav>a.active {
  color: var(--white);
}

.main-nav>a:hover::after,
.main-nav>a.active::after {
  right: 0;
  left: 0;
}

.main-nav>a.button::after,
.main-nav>a.nav-cta::after {
  display: none !important;
  content: none !important;
}

.main-nav>a.button:hover,
.main-nav>a.nav-cta:hover {
  text-decoration: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(4, 17, 23, 0.35);
  cursor: pointer;
  display: none;
  place-items: center;
  align-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 19px;
  height: 1px;
  background: var(--white);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle--open span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle--open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle--open span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 1000px;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero__background,
.hero__veil,
.hero__glow {
  position: absolute;
  inset: 0;
}

.hero__background {
  width: 100%;
  height: 100%;
  z-index: -4;
  filter: saturate(0.82) contrast(1.04);
  object-fit: cover;
  object-position: center 35%;
}

.hero__veil {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 12, 17, 0.96) 0%, rgba(3, 12, 17, 0.86) 38%, rgba(3, 12, 17, 0.27) 73%, rgba(3, 12, 17, 0.52) 100%),
    linear-gradient(0deg, rgba(4, 14, 19, 0.92) 0%, transparent 55%, rgba(3, 12, 17, 0.35) 100%);
}

.hero__glow {
  z-index: -2;
  background: radial-gradient(circle at 73% 40%, rgba(222, 163, 41, 0.22), transparent 27%);
}

.hero::after {
  width: 420px;
  height: 420px;
  position: absolute;
  right: -180px;
  bottom: 100px;
  border: 1px solid rgba(223, 163, 42, 0.24);
  border-radius: 50%;
  content: "";
}

.hero__content {
  min-height: 780px;
  padding-top: 138px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.86fr);
  align-items: center;
  gap: 25px;
}

.hero__copy {
  max-width: 700px;
  z-index: 3;
}

.hero h1 {
  margin-bottom: 24px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(4rem, 7vw, 6.9rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.91;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--gold-bright);
  font-style: normal;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.23rem);
  line-height: 1.75;
}

.hero__lead strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  min-height: 620px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__seal {
  width: 125px;
  height: 125px;
  position: absolute;
  top: 42px;
  left: 10px;
  z-index: 4;
  border: 1px solid rgba(224, 164, 42, 0.58);
  border-radius: 50%;
  background: rgba(5, 18, 25, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
}

.hero__seal img {
  width: 70px;
  height: 100px;
  object-fit: contain;
}

.phone-halo {
  width: 420px;
  height: 420px;
  position: absolute;
  border: 1px solid rgba(224, 164, 42, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(224, 164, 42, 0.14), inset 0 0 70px rgba(224, 164, 42, 0.08);
}

.phone {
  height: auto;
  filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.42));
}

.phone--hero {
  width: min(520px, 43vw);
  position: relative;
  z-index: 3;
  animation: float-phone 6s ease-in-out infinite;
}

.hero__annotation {
  position: absolute;
  right: -10px;
  bottom: 105px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right bottom;
}

.hero__annotation i {
  width: 58px;
  height: 1px;
  margin-right: 12px;
  background: var(--gold);
  display: inline-block;
  vertical-align: middle;
}

.hero__pillars {
  height: 135px;
  position: absolute;
  right: 0;
  bottom: 50px;
  left: 0;
  z-index: 5;
  border-top: 1px solid rgba(224, 164, 42, 0.28);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero__pillars article {
  min-width: 0;
  padding: 26px clamp(16px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__pillars article:last-child {
  border-right: 0;
}

.hero__pillars svg {
  min-width: 32px;
  color: var(--gold-bright);
}

.hero__pillars p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero__pillars strong {
  color: var(--white);
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero__curve {
  height: 54px;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 6;
  border-top: 8px solid var(--gold);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--paper);
  transform: translateY(30px);
}

@keyframes float-phone {

  0%,
  100% {
    transform: translateY(0) rotate(0.4deg);
  }

  50% {
    transform: translateY(-12px) rotate(-0.4deg);
  }
}

/* Project */
.project {
  min-height: 860px;
  padding: 110px 0 85px;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.project__background,
.project__overlay {
  position: absolute;
  inset: 0;
}

.project__background {
  width: 100%;
  height: 100%;
  z-index: -3;
  object-fit: cover;
}

.project__overlay {
  z-index: -2;
  background: linear-gradient(90deg, rgba(3, 15, 21, 0.98) 0%, rgba(3, 15, 21, 0.91) 47%, rgba(3, 15, 21, 0.48) 75%, rgba(3, 15, 21, 0.64) 100%);
}

.project::before {
  width: 48%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-left: 1px solid rgba(224, 164, 42, 0.26);
  background: rgba(10, 30, 39, 0.25);
  content: "";
  transform: skewX(-6deg) translateX(60px);
}

.project__content {
  display: grid;
  grid-template-columns: 0.95fr 0.85fr;
  align-items: center;
  gap: 80px;
}

.project__copy {
  max-width: 620px;
}

.project__copy>p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.85;
}

.project__copy .project__highlight {
  margin-top: 32px;
  color: var(--gold-bright);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.55;
}

.project__visual {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project__ring {
  width: 480px;
  height: 480px;
  position: absolute;
  border: 1px solid rgba(224, 164, 42, 0.38);
  border-radius: 50%;
}

.project__ring::after {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  content: "";
}

.phone--map {
  width: min(520px, 45vw);
  position: relative;
  z-index: 2;
  transform: rotate(3deg);
}

.floating-note {
  min-width: 240px;
  padding: 15px 20px;
  position: absolute;
  right: -30px;
  bottom: 75px;
  z-index: 4;
  border: 1px solid rgba(224, 164, 42, 0.34);
  border-radius: 16px;
  background: rgba(5, 20, 27, 0.88);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.floating-note svg {
  color: var(--gold-bright);
}

.floating-note span {
  font-size: 0.75rem;
  font-weight: 600;
}

.floating-note small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
}

/* Features */
.features {
  padding: 120px 0 130px;
  overflow: hidden;
}

.features .section-heading {
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.features .section-heading h2 {
  white-space: nowrap;
}

.features .section-heading__line,
.features .ornament {
  justify-content: center;
  margin-inline: auto;
}

.feature-grid {
  margin-top: 66px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 285px;
  padding: 38px 34px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.78);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  position: relative;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::after {
  width: 0;
  height: 3px;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  background: var(--gold);
  content: "";
  transition: width 0.3s ease;
}

.feature-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(13, 29, 36, 0.12);
}

.feature-card:hover::after {
  width: 100%;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 18px;
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.feature-card:hover .feature-card__icon {
  background: var(--gold);
  color: var(--white);
}

.feature-card span {
  color: rgba(200, 138, 24, 0.65);
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.75;
}

/* Benefits */
.benefits {
  padding: 130px 0 120px;
  background: var(--cream);
  isolation: isolate;
  overflow: hidden;
}

.benefits__image-band {
  width: 44%;
  height: 500px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  clip-path: ellipse(78% 67% at 76% 5%);
  opacity: 0.36;
}

.benefits__image-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 239, 231, 0), var(--cream));
  content: "";
}

.benefits__image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits__top {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  align-items: end;
  gap: 75px;
}

.benefits blockquote {
  margin-bottom: 8px;
  padding: 34px 34px 32px;
  border-radius: 22px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
}

.benefits blockquote>span {
  height: 38px;
  color: var(--gold-bright);
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 4.5rem;
  line-height: 1;
}

.benefits blockquote strong {
  color: var(--gold-bright);
}

.benefits__layout {
  margin-top: 75px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 55px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
}

.benefit-list article {
  min-height: 174px;
  padding: 26px 0;
  border-top: 1px solid rgba(7, 21, 29, 0.16);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
}

.benefit-list article>span {
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.benefit-list h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.benefits__phone {
  min-height: 730px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits__arch {
  width: 370px;
  height: 610px;
  position: absolute;
  bottom: 15px;
  border-radius: 190px 190px 26px 26px;
  background: linear-gradient(165deg, var(--ink-soft), var(--ink));
  box-shadow: var(--shadow);
}

.benefits__arch::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(224, 164, 42, 0.3);
  border-radius: inherit;
  content: "";
}

.phone--food {
  width: 460px;
  position: relative;
  z-index: 2;
  transform: rotate(2deg);
}

.benefits__badge {
  padding: 14px 18px;
  position: absolute;
  right: -20px;
  bottom: 70px;
  z-index: 3;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.benefits__badge b,
.benefits__badge span {
  display: block;
}

.benefits__badge b {
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.benefits__badge span {
  color: var(--muted);
  font-size: 0.66rem;
}

/* Vision */
.vision {
  padding: 130px 0 70px;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.vision__background,
.vision__overlay {
  position: absolute;
  inset: 0;
}

.vision__background {
  width: 100%;
  height: 100%;
  z-index: -3;
  filter: saturate(0.72);
  object-fit: cover;
}

.vision__overlay {
  z-index: -2;
  background: linear-gradient(90deg, rgba(3, 14, 20, 0.98), rgba(3, 14, 20, 0.82)), linear-gradient(0deg, rgba(3, 14, 20, 0.94), transparent 60%);
}

.vision__intro {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.vision__layout {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 68px;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 38px;
}

.future-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 16px;
}

.future-grid__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--gold);
  display: grid;
  place-items: center;
}

.future-grid h3 {
  margin-bottom: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.future-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  line-height: 1.7;
}

.vision__quote {
  padding: 35px 0 0 38px;
  border-left: 1px solid rgba(224, 164, 42, 0.52);
}

.vision__quote>span {
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vision__quote p {
  margin-top: 24px;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: 1.45;
}

.vision__quote strong {
  color: var(--gold-bright);
}

.impact-panel {
  margin-top: 85px;
  padding: 26px 35px;
  border-radius: 26px 26px 0 0;
  background: var(--paper);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.25);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  align-items: center;
  gap: 38px;
}

.impact-panel__brand {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
}

.impact-panel__brand img {
  width: 60px;
  height: 82px;
  object-fit: contain;
}

.impact-panel__brand p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.55;
  text-transform: uppercase;
}

.impact-panel__brand strong {
  color: var(--gold);
}

.impact-panel__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.impact-panel__items div {
  text-align: center;
}

.impact-panel__items svg {
  margin: 0 auto 8px;
  color: var(--ink);
}

.impact-panel__items span {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
}

/* Partners */
.partners {
  padding: 125px 0;
}

.partners::before {
  width: 44%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(200, 138, 24, 0.05));
  content: "";
  pointer-events: none;
}

.partners__heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.partners__heading h2,
.faq__intro h2,
.contact__details h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.partners__heading>p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.partner-types {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.partner-types article {
  min-height: 220px;
  padding: 34px 28px;
  border: 1px solid rgba(7, 21, 29, 0.12);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 21, 29, 0.05);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.partner-types article:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.partner-types svg {
  margin: 0 auto 24px;
  color: var(--gold);
}

.partner-types h3 {
  margin-bottom: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
}

.partner-types p {
  color: var(--muted);
  font-size: 0.72rem;
}

.public-authority {
  max-width: 980px;
  margin: 58px auto 18px;
  padding: 28px 32px;
  border: 1px solid rgba(200, 138, 24, 0.32);
  border-radius: 22px;
  background: linear-gradient(135deg, #07151d, #102b37);
  box-shadow: 0 20px 50px rgba(7, 21, 29, 0.12);
  color: var(--white);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 32px;
}

.public-authority__heading {
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  gap: 16px;
}

.public-authority__heading svg {
  color: var(--gold-bright);
  flex: 0 0 auto;
}

.public-authority__heading span,
.public-authority__institutions small {
  color: var(--gold-pale);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.public-authority__heading h3 {
  margin: 4px 0 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  font-weight: 500;
  text-transform: uppercase;
}

.public-authority__institutions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  gap: 14px;
}

.public-authority__institutions article {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.public-authority__institutions article > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.public-authority__institutions img {
  display: block;
  width: auto;
  max-width: 165px;
  height: auto;
  max-height: 105px;
  object-fit: contain;
  object-position: center;
}

.public-authority__institutions article + article {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-types--three {
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.partners__actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Closing */
.closing {
  min-height: 750px;
  padding: 100px 0 80px;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.closing__background,
.closing__overlay {
  position: absolute;
  inset: 0;
}

.closing__background {
  width: 100%;
  height: 100%;
  z-index: -3;
  filter: saturate(0.55);
  object-fit: cover;
}

.closing__overlay {
  z-index: -2;
  background: linear-gradient(90deg, rgba(3, 14, 20, 0.98) 0%, rgba(3, 14, 20, 0.87) 53%, rgba(35, 25, 10, 0.42) 100%);
}

.closing::before {
  width: 2px;
  height: 115%;
  position: absolute;
  top: -8%;
  right: 43%;
  z-index: -1;
  background: linear-gradient(transparent, var(--gold), transparent);
  content: "";
  transform: rotate(-13deg);
  transform-origin: top;
}

.closing__content {
  display: grid;
  grid-template-columns: 1.05fr 0.78fr;
  align-items: center;
  gap: 65px;
}

.closing__copy h2 {
  margin-bottom: 30px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 5.7vw, 5.4rem);
  font-weight: 500;
  line-height: 1.02;
  text-transform: uppercase;
}

.closing__copy>p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.8;
}

.closing__copy strong {
  color: var(--gold-bright);
}

.closing__visual {
  min-height: 590px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.closing__orbit {
  width: 440px;
  height: 440px;
  position: absolute;
  border: 1px solid rgba(224, 164, 42, 0.33);
  border-radius: 50%;
}

.closing__orbit::after {
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  content: "";
}

.phone--access {
  width: min(480px, 42vw);
  position: relative;
  z-index: 2;
  transform: rotate(1deg);
}

/* FAQ */
.faq {
  padding: 120px 0;
  background: var(--cream);
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: start;
  gap: 90px;
}

.faq__intro {
  position: sticky;
  top: 110px;
}

.faq__intro>p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.accordion {
  border-top: 1px solid rgba(7, 21, 29, 0.18);
}

.accordion__item {
  border-bottom: 1px solid rgba(7, 21, 29, 0.18);
}

.accordion__item h3 {
  margin: 0;
}

.accordion__item button {
  width: 100%;
  min-height: 96px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  grid-template-columns: 45px 1fr 28px;
  align-items: center;
  gap: 14px;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
}

.accordion__item button span {
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
}

.accordion__item button i {
  width: 20px;
  height: 20px;
  position: relative;
}

.accordion__item button i::before,
.accordion__item button i::after {
  width: 14px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 3px;
  background: var(--ink);
  content: "";
  transition: transform 0.25s ease;
}

.accordion__item button i::after {
  transform: rotate(90deg);
}

.accordion__item--open button i::after {
  transform: rotate(0);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.32s ease;
}

.accordion__panel p {
  min-height: 0;
  margin: 0;
  padding: 0 48px 0 59px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.8;
  overflow: hidden;
  transition: padding 0.32s ease;
}

.accordion__item--open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__item--open .accordion__panel p {
  padding-bottom: 28px;
}

/* Contact */
.contact {
  padding: 120px 0;
  overflow: hidden;
}

.contact::before {
  width: 340px;
  height: 340px;
  position: absolute;
  right: -150px;
  bottom: -100px;
  border: 1px solid rgba(200, 138, 24, 0.2);
  border-radius: 50%;
  content: "";
}

.contact__shell {
  padding: clamp(28px, 5vw, 68px);
  border: 2px solid var(--gold);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(7, 21, 29, 0.1);
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  align-items: start;
  gap: 72px;
}

.contact__details>p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.contact__links {
  margin-top: 35px;
  display: grid;
  gap: 14px;
}

.contact__links a {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact__links a>span {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(7, 21, 29, 0.17);
  border-radius: 50%;
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact__links a:hover>span {
  background: var(--gold);
  color: var(--white);
}

.contact__links small,
.contact__links b {
  display: block;
}

.contact__links small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__links b {
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.contact__statement {
  margin-top: 35px;
  padding: 25px;
  border-radius: 20px;
  background: #f8e8c6;
}

.contact__statement img {
  width: 155px;
  height: 66px;
  margin-bottom: 13px;
  object-fit: contain;
  object-position: left center;
}

.contact__statement p {
  margin-bottom: 12px;
  color: #4b4031;
  font-size: 0.74rem;
  line-height: 1.7;
}

.contact__statement strong {
  color: #a66c10;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.contact-form {
  padding: 36px;
  border-radius: 25px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
}

.contact-form__heading span {
  color: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form__heading h3 {
  margin: 7px 0 28px;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row {
  min-width: 0;
  margin-bottom: 14px;
}

.form-row label {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.78rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-row input,
.form-row select {
  height: 49px;
  padding: 0 14px;
}

.form-row textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-row select option {
  background: var(--ink);
  color: var(--white);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.09);
}

.form-row [aria-invalid="true"] {
  border-color: #f2a99f;
}

.field-error {
  min-height: 14px;
  margin: 5px 0 0;
  color: #ffc3bb;
  font-size: 0.6rem;
}

.form-row--consent label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  font-weight: 400;
  line-height: 1.5;
}

.form-row--consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--gold-bright);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.58rem;
  line-height: 1.6;
  text-align: center;
}

/* Download app */
.app-download {
  min-height: 760px;
  padding: 110px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 45%, rgba(200, 138, 24, .2), transparent 34%), linear-gradient(135deg, #041118 0%, #0b2430 55%, #06141b 100%);
  color: var(--white);
}

.app-download::before {
  width: 460px;
  height: 460px;
  position: absolute;
  right: -150px;
  top: -180px;
  border: 1px solid rgba(224, 164, 42, .18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(224, 164, 42, .025), 0 0 0 140px rgba(224, 164, 42, .02);
}

.app-download__shell {
  display: grid;
  grid-template-columns: .85fr 1.05fr;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
}

.app-download__visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.app-download__visual>img {
  width: min(510px, 44vw);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 40px 55px rgba(0, 0, 0, .5));
  transform: rotate(-4deg);
}

.app-download__halo {
  width: 420px;
  height: 420px;
  position: absolute;
  border: 1px solid rgba(224, 164, 42, .45);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 164, 42, .16), transparent 65%);
}

.app-download__mini-card {
  padding: 15px 18px;
  position: absolute;
  right: 0;
  bottom: 90px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(6, 20, 27, .84);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
}

.app-download__mini-card svg {
  color: var(--gold-bright);
}

.app-download__mini-card span {
  display: grid;
  font-size: .72rem;
  font-weight: 700;
}

.app-download__mini-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .48);
  font-size: .56rem;
  font-weight: 400;
}

.app-download__copy {
  max-width: 650px;
}

.app-download__copy h2 {
  margin-bottom: 24px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .96;
  text-transform: uppercase;
}

.app-download__copy h2 em {
  color: var(--gold-bright);
  font-style: normal;
}

.app-download__copy>p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, .68);
  font-size: .95rem;
  line-height: 1.8;
}

.app-download__actions {
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  min-width: 190px;
  min-height: 62px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color .2s ease, transform .2s ease;
}

.store-button:hover {
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.store-button span {
  display: grid;
  color: rgba(255, 255, 255, .58);
  font-size: .52rem;
}

.store-button strong {
  margin-top: 1px;
  color: var(--white);
  font-size: .95rem;
}

.app-download__qr-row {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  gap: 20px;
}

.sample-qr {
  width: 118px;
  height: 118px;
  padding: 9px;
  position: relative;
  flex: 0 0 118px;
  border: 5px solid var(--white);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.sample-qr__finder {
  width: 25px;
  height: 25px;
  position: absolute;
  z-index: 2;
  border: 5px solid var(--ink);
  box-shadow: inset 0 0 0 4px var(--white), inset 0 0 0 8px var(--ink);
}

.sample-qr__finder--one {
  top: 7px;
  left: 7px;
}

.sample-qr__finder--two {
  top: 7px;
  right: 7px;
}

.sample-qr__finder--three {
  bottom: 7px;
  left: 7px;
}

.app-download__qr-row p {
  margin: 0;
  display: grid;
}

.app-download__qr-row strong {
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.app-download__qr-row span {
  color: rgba(255, 255, 255, .62);
  font-size: .68rem;
}

.app-download__qr-row small {
  margin-top: 6px;
  color: var(--gold-pale);
  font-size: .54rem;
}

.button--founders {
  border-color: rgba(255, 255, 255, .34);
  background: transparent;
  box-shadow: none;
  color: var(--white);
}

.button--founders svg {
  color: var(--gold-bright);
}

/* Founders club */
.founder-modal-open {
  overflow: hidden;
}

.club-page {
  background: #07151d;
  color: var(--white);
}

.club-header {
  width: 100%;
  height: 82px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.club-header--scrolled {
  height: 72px;
  border-color: rgba(224, 164, 42, 0.22);
  background: rgba(11, 11, 11, 0.65);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}


.club-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.club-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.club-brand img {
  width: 38px;
  height: 54px;
  object-fit: contain;
}

.club-brand span {
  display: grid;
  font-size: .68rem;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.club-brand small {
  font-family: "Oswald", sans-serif;
  color: var(--gold-bright);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.club-brand b {
  margin-top: 5px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.club-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.club-header nav a {
  color: rgba(255, 255, 255, .68);
  font-size: .7rem;
  font-weight: 600;
}

.club-header nav a:hover {
  color: var(--gold-bright);
}

.club-header .club-back {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 99px;
  color: var(--white);
}

.club-hero {
  min-height: 920px;
  padding: 150px 0 170px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.club-hero>img,
.club-hero__veil {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.club-hero>img {
  object-position: center;
  filter: saturate(.7) contrast(1.08);
}

.club-hero__veil {
  background: radial-gradient(circle at 70% 40%, rgba(200, 138, 24, .14), transparent 26%), linear-gradient(90deg, rgba(3, 13, 18, .98) 0%, rgba(3, 13, 18, .83) 50%, rgba(3, 13, 18, .45) 100%);
}

.club-hero__veil::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
}

.club-hero__content {
  z-index: 2;
}

.club-hero__seal {
  width: fit-content;
  margin-bottom: 36px;
  padding: 11px 16px;
  border: 1px solid rgba(224, 164, 42, .4);
  border-radius: 12px;
  background: rgba(5, 19, 25, .48);
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-bright);
  backdrop-filter: blur(8px);
}

.club-hero__seal span {
  display: grid;
  color: var(--white);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.club-hero__seal small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .5);
  font-size: .5rem;
  font-weight: 400;
}

.club-hero h1 {
  margin-bottom: 28px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(5.5rem, 11vw, 10rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .78;
  text-transform: uppercase;
}

.club-hero h1 em {
  color: var(--gold-bright);
  font-style: normal;
}

.club-hero__content>p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .73);
  font-size: 1rem;
  line-height: 1.8;
}

.club-hero__numbers {
  padding: 28px 0;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.club-hero__numbers div {
  padding-left: 35px;
  border-left: 1px solid rgba(255, 255, 255, .13);
  display: flex;
  align-items: center;
  gap: 17px;
}

.club-hero__numbers strong {
  color: var(--gold-bright);
  font-family: "Oswald", sans-serif;
  font-size: 2.7rem;
}

.club-hero__numbers span {
  max-width: 130px;
  color: rgba(255, 255, 255, .54);
  font-size: .64rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.club-manifesto {
  padding: 120px 0;
  background: var(--paper);
  color: var(--ink);
}

.club-manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.club-manifesto h2,
.founders h2,
.founder-series h2,
.club-cta h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.5rem, 6.5vw, 6.3rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .95;
  text-transform: uppercase;
}

.club-manifesto h2 em,
.founders h2 em,
.founder-series h2 em {
  color: var(--gold);
  font-style: normal;
}

.club-manifesto__grid>div:last-child>p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.9;
}

.club-manifesto blockquote {
  margin: 35px 0 0;
  padding: 25px 0 25px 28px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  line-height: 1.45;
}

.club-tiers {
  margin-top: 85px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.club-tier {
  min-height: 330px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 21, 29, .12);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(7, 21, 29, .07);
}

.club-tier>span {
  position: absolute;
  right: 25px;
  top: 18px;
  color: rgba(7, 21, 29, .09);
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
}

.club-tier svg {
  margin-bottom: 35px;
  color: var(--gold);
}

.club-tier h3 {
  margin-bottom: 2px;
  font-family: "Oswald", sans-serif;
  font-size: 2.1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.club-tier strong {
  color: var(--gold);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.club-tier p {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.75;
}

.club-tier--diamante {
  background: linear-gradient(145deg, #f9fbfc, #dfe7ea);
}

.club-tier--ouro {
  background: linear-gradient(145deg, #fffdf7, #f6e3b7);
}

.club-tier--prata {
  background: linear-gradient(145deg, #fff, #ecedef);
}

.founders {
  padding: 120px 0;
  background: #06151c;
}

.founders__heading {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 80px;
}

.founders__heading>p {
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  line-height: 1.8;
}

.founders h2 {
  margin-bottom: 0;
}

.founders h2 em {
  color: var(--gold-bright);
}

.founders__filters {
  margin-bottom: 35px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 99px;
  display: inline-flex;
  gap: 5px;
  background: rgba(255, 255, 255, .035);
}

.founders__filters button {
  padding: 11px 19px;
  border: 0;
  border-radius: 99px;
  background: transparent;
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  font-size: .67rem;
  font-weight: 700;
}

.founders__filters button.active {
  background: var(--gold-bright);
  color: var(--ink);
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.founder-card {
  min-height: 420px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}

.founder-card:hover {
  border-color: var(--tier, var(--gold));
  transform: translateY(-5px);
}

.founder-card--diamante {
  --tier: #dbeef4;
}

.founder-card--ouro {
  --tier: #e0a42a;
}

.founder-card--prata {
  --tier: #abb5ba;
}

.founder-card__top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .3);
  font-family: "Oswald", sans-serif;
  font-size: .7rem;
}

.founder-card__top i {
  color: var(--tier);
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Oswald", sans-serif;
  font-size: .52rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.founder-card__logo {
  height: 120px;
  margin: 26px 0;
  border: 1px dashed rgba(255, 255, 255, .16);
  border-radius: 12px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  color: rgba(255, 255, 255, .25);
}

.founder-card__logo b {
  font-family: "Oswald", sans-serif;
  font-size: 2.3rem;
}

.founder-card__logo span {
  font-size: .48rem;
  letter-spacing: .14em;
}

.founder-card>p {
  margin: 0 0 7px;
  color: var(--tier);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.founder-card h3 {
  margin-bottom: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
}

.founder-card>strong {
  color: rgba(255, 255, 255, .45);
  font-size: .62rem;
  font-weight: 400;
  line-height: 1.5;
}

.founder-card>button {
  margin-top: auto;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: none;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: .64rem;
  font-weight: 700;
}

.founder-series {
  padding: 120px 0;
  overflow: hidden;
  background: radial-gradient(circle at 20% 50%, rgba(200, 138, 24, .2), transparent 30%), #0e2631;
}

.founder-series__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 85px;
}

.founder-series__video {
  aspect-ratio: 16/11;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(0, 0, 0, .24)), url('../assets/images/praca-tiradentes.webp') center/cover;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .32);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.founder-series__video>div {
  margin: auto;
  display: grid;
  place-items: center;
  gap: 10px;
}

.founder-series__video>div span {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  background: rgba(5, 19, 25, .5);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  backdrop-filter: blur(8px);
}

.founder-series__video small {
  font-size: .55rem;
  letter-spacing: .12em;
}

.founder-series__video>p {
  margin: 0;
  font-size: .64rem;
}

.founder-series h2 {
  margin-bottom: 25px;
}

.founder-series>.container>div:last-child>p:not(.eyebrow) {
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
}

.founder-series ul {
  margin: 28px 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.founder-series li {
  color: rgba(255, 255, 255, .8);
  font-size: .76rem;
}

.founder-series li::before {
  margin-right: 10px;
  color: var(--gold-bright);
  content: "✦";
}

.club-cta {
  padding: 125px 0;
  text-align: center;
  background: var(--paper);
  color: var(--ink);
}

.club-cta svg {
  margin-bottom: 20px;
  color: var(--gold);
}

.club-cta h2 {
  margin-bottom: 25px;
}

.club-cta>.container>p:not(.eyebrow) {
  max-width: 630px;
  margin: 0 auto 30px;
  color: var(--muted);
  line-height: 1.8;
}

.club-footer {
  padding: 30px 0;
  border-top: 2px solid var(--gold);
  background: #031017;
}

.club-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.club-footer img {
  width: 43px;
  height: 59px;
  object-fit: contain;
}

.club-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .38);
  font-size: .58rem;
}

.club-footer div div {
  display: flex;
  gap: 20px;
}

.club-footer a {
  color: rgba(255, 255, 255, .58);
  font-size: .62rem;
}

.founder-modal {
  padding: 24px;
  position: fixed;
  inset: 0;
  z-index: 500;
  overflow-y: auto;
  background: rgba(1, 8, 11, .86);
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
}

.founder-modal__panel {
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  position: relative;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: #0a202a;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  box-shadow: 0 45px 100px rgba(0, 0, 0, .6);
}

.founder-modal__close {
  width: 43px;
  height: 43px;
  position: absolute;
  right: 17px;
  top: 17px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(0, 0, 0, .28);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

.founder-modal__hero {
  min-height: 620px;
  padding: 30px;
  background: linear-gradient(160deg, rgba(224, 164, 42, .22), rgba(6, 20, 27, .2)), url('../assets/images/hero-ouro-preto.webp') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.founder-modal__hero>span {
  color: var(--gold-pale);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.founder-modal__logo {
  width: 150px;
  height: 150px;
  margin: auto;
  border: 1px dashed rgba(255, 255, 255, .45);
  border-radius: 50%;
  background: rgba(4, 16, 22, .58);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .55);
  font-size: .65rem;
  line-height: 1.5;
  text-align: center;
  backdrop-filter: blur(8px);
}

.founder-modal__body {
  padding: 55px 45px;
}

.founder-modal__body h2 {
  margin-bottom: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.founder-modal__body h3 {
  color: var(--gold-bright);
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.founder-modal__body>p:not(.eyebrow) {
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
  line-height: 1.8;
}

.founder-modal__media {
  margin: 25px 0;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.founder-modal__media>span {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
}

.founder-modal__media div {
  display: grid;
}

.founder-modal__media b {
  font-size: .72rem;
}

.founder-modal__media small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .4);
  font-size: .55rem;
}

.founder-modal__facts {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.founder-modal__facts div {
  padding: 13px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .05);
  display: grid;
}

.founder-modal__facts b {
  color: rgba(255, 255, 255, .38);
  font-size: .48rem;
  text-transform: uppercase;
}

.founder-modal__facts span {
  margin-top: 5px;
  font-size: .65rem;
}

/* Footer and floating actions */
.site-footer {
  padding: 65px 0 24px;
  border-top: 3px solid var(--gold);
  background: #041118;
  color: var(--white);
}

.site-footer__top {
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr 0.55fr;
  align-items: start;
  gap: 55px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__brand img {
  width: 64px;
  height: 87px;
  object-fit: contain;
}

.site-footer__brand p {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.68rem;
}

.site-footer__brand strong {
  color: var(--gold-bright);
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 26px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
}

.site-footer nav a:hover {
  color: var(--gold-bright);
}

.site-footer__contact {
  display: grid;
  gap: 6px;
}

.site-footer__legal {
  display: grid;
  gap: 6px;
}

.site-footer__contact span,
.site-footer__legal span {
  margin-bottom: 5px;
  color: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__contact a,
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  overflow-wrap: anywhere;
}

.site-footer__legal a:hover {
  color: var(--gold-bright);
}

.site-footer__bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-maker {
  display: flex;
  align-items: center;
  gap: 0px;
}

.footer-maker b {
  color: var(--blue-logistikos);
}

.footer-maker img {
  width: 165px;
  height: 45px;
  padding: 4px 7px;
  border-radius: 6px;
  object-fit: contain;
}

.footer-maker span,
.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.58rem;
}

/* Legal pages */
.legal-header {
  padding: 18px 0;
  border-bottom: 1px solid rgba(200, 138, 24, 0.25);
  background: var(--ink);
  color: var(--gold-bright);
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header img {
  width: 52px;
  height: 70px;
  object-fit: contain;
}

.legal-home-link {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 600;
}

.legal-main {
  padding: 92px 0 110px;
  background: var(--paper);
}

.legal-article {
  max-width: 900px;
}

.legal-article h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.72rem;
}

.legal-intro {
  max-width: 760px;
  margin: 34px 0 52px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.85;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid rgba(7, 21, 29, 0.12);
}

.legal-section h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  text-transform: uppercase;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.85;
}

.legal-section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  margin-top: 0;
}

.whatsapp-float,
.back-to-top {
  width: 52px;
  height: 52px;
  position: fixed;
  right: 22px;
  z-index: 80;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  display: grid;
  place-items: center;
}

.whatsapp-float {
  bottom: 24px;
  background: #1f9d63;
  color: var(--white);
}

.back-to-top {
  bottom: 88px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 1.15rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.toast {
  max-width: min(420px, calc(100% - 32px));
  padding: 15px 20px;
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 200;
  border-left: 3px solid var(--gold-bright);
  border-radius: 10px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: 0.75rem;
  line-height: 1.6;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast--visible {
  opacity: 1;
  transform: none;
}

.founder-tier-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px color-mix(in srgb, currentColor 45%, transparent));
}

.founder-card--diamante .founder-tier-icon {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 13px;
  }

  .main-nav>a {
    font-size: 0.64rem;
  }

  .nav-cta {
    display: none;
  }

  .hero__content {
    grid-template-columns: 1fr 0.78fr;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7vw, 5.8rem);
  }

  .project__content {
    gap: 30px;
  }

  .benefits__layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 25px;
  }

  .benefits__arch {
    width: 330px;
  }

  .benefits__phone {
    min-height: 660px;
  }

  .contact__shell {
    gap: 42px;
  }

  .founder-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 920px) {

  .site-header,
  .site-header--scrolled {
    height: 72px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    width: min(380px, 100%);
    height: 100dvh;
    padding: 110px 32px 40px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    background: rgba(4, 17, 24, 0.98);
    box-shadow: -25px 0 65px rgba(0, 0, 0, 0.32);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .main-nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav>a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
  }

  .main-nav>a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 20px;
    display: inline-flex;
  }

  .hero {
    min-height: 1120px;
  }

  .hero__content {
    min-height: auto;
    padding-top: 125px;
    grid-template-columns: 1fr 0.72fr;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 8vw, 5rem);
  }

  .hero__visual {
    min-height: 560px;
  }

  .hero__seal {
    top: 55px;
    left: -10px;
  }

  .phone--hero {
    width: min(490px, 50vw);
  }

  .hero__pillars {
    height: 125px;
  }

  .hero__pillars article {
    padding: 20px 13px;
    gap: 9px;
  }

  .hero__pillars svg {
    min-width: 27px;
    width: 27px;
  }

  .hero__pillars p {
    font-size: 0.63rem;
  }

  .hero__pillars strong {
    font-size: 0.71rem;
  }

  .project__content {
    grid-template-columns: 1fr 0.85fr;
  }

  .project__copy>p {
    font-size: 0.9rem;
  }

  .project__visual {
    min-height: 550px;
  }

  .project__ring {
    width: 390px;
    height: 390px;
  }

  .phone--map {
    width: min(470px, 48vw);
  }

  .floating-note {
    right: -10px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits__top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .benefits blockquote {
    max-width: 560px;
  }

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

  .benefits__phone {
    min-height: 700px;
    order: -1;
  }

  .benefits__arch {
    width: 390px;
  }

  .phone--food {
    width: 480px;
  }

  .benefit-list {
    gap: 0 35px;
  }

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

  .vision__quote {
    max-width: 650px;
  }

  .impact-panel {
    grid-template-columns: 1fr;
  }

  .partner-types {
    grid-template-columns: repeat(2, 1fr);
  }

  .public-authority {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .public-authority__heading {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .partner-types--three {
    grid-template-columns: repeat(3, 1fr);
  }

  .closing__content {
    grid-template-columns: 1fr 0.68fr;
  }

  .closing__copy h2 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
  }

  .faq__layout {
    gap: 45px;
  }

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

  .contact__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 35px;
  }

  .contact__details>.eyebrow,
  .contact__details>h2,
  .contact__details>p {
    grid-column: 1 / -1;
  }

  .contact__statement {
    margin-top: 35px;
  }

  .app-download__shell {
    grid-template-columns: .8fr 1.2fr;
    gap: 25px;
  }

  .club-header nav>a:not(.club-back) {
    display: none;
  }

  .club-manifesto__grid,
  .founders__heading,
  .founder-series__grid {
    gap: 45px;
  }

  .founder-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {

  .container,
  .header-shell {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-heading__line {
    gap: 10px;
  }

  .section-heading__line>span {
    font-size: 2.6rem;
  }

  .section-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .button {
    min-height: 50px;
    padding-inline: 20px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero__background {
    object-position: 51% 20%;
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(3, 12, 17, 0.95) 0%, rgba(3, 12, 17, 0.78) 55%, rgba(3, 12, 17, 0.96) 100%);
  }

  .hero__content {
    padding-top: 115px;
    padding-bottom: 0;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hero__copy {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    min-height: 580px;
  }

  .phone--hero {
    width: min(520px, 94vw);
  }

  .hero__seal {
    width: 105px;
    height: 105px;
    top: 65px;
    left: 0;
  }

  .hero__seal img {
    width: 58px;
    height: 80px;
  }

  .phone-halo {
    width: 330px;
    height: 330px;
  }

  .hero__annotation {
    display: none;
  }

  .hero__pillars {
    height: auto;
    margin-top: -10px;
    padding-bottom: 75px;
    position: relative;
    bottom: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__pillars article {
    min-height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero__pillars article:nth-child(2) {
    border-right: 0;
  }

  .hero__curve {
    height: 38px;
  }

  .project {
    padding: 100px 0 65px;
  }

  .project::before {
    display: none;
  }

  .project__overlay {
    background: linear-gradient(180deg, rgba(3, 15, 21, 0.97) 0%, rgba(3, 15, 21, 0.9) 60%, rgba(3, 15, 21, 0.78) 100%);
  }

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

  .project__copy {
    max-width: none;
  }

  .project__visual {
    min-height: 610px;
  }

  .project__ring {
    width: min(390px, 86vw);
    height: min(390px, 86vw);
  }

  .phone--map {
    width: min(500px, 94vw);
  }

  .public-authority {
    padding: 24px;
  }

  .public-authority__institutions {
    grid-template-columns: 1fr;
  }

  .public-authority__institutions article + article {
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .partner-types--three {
    grid-template-columns: 1fr;
  }

  .floating-note {
    right: 0;
    bottom: 50px;
  }

  .features {
    padding: 95px 0;
  }

  .features .section-heading__line {
    gap: 6px;
  }

  .features .section-heading__line>span {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .features .section-heading h2 {
    font-size: clamp(1.15rem, 5.8vw, 2.25rem);
  }

  .feature-grid {
    margin-top: 50px;
    border: 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    min-height: 0;
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .benefits {
    padding: 100px 0 90px;
  }

  .benefits__top {
    gap: 30px;
  }

  .benefits blockquote {
    padding: 28px 25px;
  }

  .benefits__layout {
    margin-top: 45px;
  }

  .benefits__phone {
    min-height: 620px;
  }

  .benefits__arch {
    width: min(360px, 90vw);
    height: 530px;
  }

  .phone--food {
    width: min(450px, 100vw);
  }

  .benefits__badge {
    right: 0;
    bottom: 55px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .benefit-list article {
    min-height: 0;
  }

  .vision {
    padding: 100px 0 45px;
  }

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

  .vision__quote {
    padding-left: 24px;
  }

  .impact-panel {
    margin-top: 65px;
    padding: 24px;
  }

  .impact-panel__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .partners {
    padding: 95px 0;
  }

  .partner-types {
    grid-template-columns: 1fr;
  }

  .partner-types article {
    min-height: 0;
  }

  .partners__actions {
    flex-direction: column;
  }

  .closing {
    padding: 95px 0 60px;
  }

  .closing::before {
    right: 15%;
    opacity: 0.4;
  }

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

  .closing__copy {
    text-align: center;
  }

  .closing__copy h2 {
    font-size: clamp(2.75rem, 12vw, 4.4rem);
  }

  .closing__copy>p:not(.eyebrow) {
    margin-inline: auto;
  }

  .closing__visual {
    min-height: 580px;
  }

  .closing__orbit {
    width: min(420px, 88vw);
    height: min(420px, 88vw);
  }

  .phone--access {
    width: min(470px, 94vw);
  }

  .faq {
    padding: 95px 0;
  }

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

  .faq__intro {
    position: static;
  }

  .accordion__item button {
    min-height: 84px;
    grid-template-columns: 36px 1fr 26px;
    font-size: 0.82rem;
  }

  .accordion__panel p {
    padding-left: 50px;
  }

  .contact {
    padding: 85px 0;
  }

  .contact__shell {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .contact__details {
    display: block;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .app-download {
    padding: 90px 0;
  }

  .app-download__shell {
    grid-template-columns: 1fr;
  }

  .app-download__visual {
    min-height: 510px;
    order: 2;
  }

  .app-download__visual>img {
    width: min(500px, 94vw);
  }

  .app-download__copy {
    text-align: center;
  }

  .app-download__copy>p:not(.eyebrow) {
    margin-inline: auto;
  }

  .app-download__actions,
  .app-download__qr-row {
    justify-content: center;
    text-align: left;
  }

  .app-download__mini-card {
    right: 5%;
  }

  .club-header nav {
    gap: 10px;
  }

  .club-header .club-back {
    padding: 10px 13px;
    font-size: .6rem;
  }

  .club-hero {
    min-height: 860px;
    padding: 130px 0 210px;
  }

  .club-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(3.2rem, 16vw, 5.3rem);
    line-height: 0.88;
    overflow-wrap: normal;
  }

  .club-hero__numbers {
    padding: 20px 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .club-hero__numbers div {
    padding: 0 0 0 15px;
  }

  .club-hero__numbers strong {
    font-size: 1.75rem;
  }

  .club-manifesto {
    padding: 90px 0;
  }

  .club-manifesto__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .club-tiers {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .club-tier {
    min-height: 270px;
  }

  .founders {
    padding: 90px 0;
  }

  .founders__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .founders__filters {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 14px;
  }

  .founders__filters button {
    white-space: nowrap;
  }

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

  .founder-card {
    min-height: 390px;
  }

  .founder-series {
    padding: 90px 0;
  }

  .founder-series__grid {
    grid-template-columns: 1fr;
  }

  .founder-series__video {
    order: 2;
  }

  .club-cta {
    padding: 90px 0;
  }

  .club-footer .container {
    flex-direction: column;
    text-align: center;
  }

  .club-footer div div {
    flex-wrap: wrap;
    justify-content: center;
  }

  .founder-modal {
    padding: 10px;
  }

  .founder-modal__panel {
    max-height: calc(100vh - 20px);
    grid-template-columns: 1fr;
  }

  .founder-modal__hero {
    min-height: 280px;
  }

  .founder-modal__body {
    padding: 35px 22px;
  }

  .founder-modal__body h2 {
    font-size: 2.6rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float,
  .back-to-top {
    right: 14px;
  }

  .toast {
    right: 16px;
    bottom: 88px;
  }
}

@media (max-width: 420px) {
  .header-brand span {
    display: none;
  }

  .hero__actions,
  .partners__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 520px;
  }

  .hero__seal {
    left: -10px;
  }

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

  .hero__pillars article {
    border-right: 0;
  }

  .feature-card {
    grid-template-columns: 49px 1fr;
    gap: 15px;
  }

  .feature-card__icon {
    width: 48px;
    height: 48px;
  }

  .project__visual {
    min-height: 540px;
  }

  .floating-note {
    min-width: 220px;
    padding: 13px;
  }

  .benefits__phone {
    min-height: 550px;
  }

  .impact-panel__brand {
    grid-template-columns: 52px 1fr;
  }

  .impact-panel__brand img {
    width: 49px;
    height: 67px;
  }

  .contact__links b {
    font-size: 0.7rem;
  }

  .app-download__actions {
    display: grid;
  }

  .store-button {
    width: 100%;
  }

  .app-download__qr-row {
    align-items: flex-start;
  }

  .sample-qr {
    width: 100px;
    height: 100px;
    flex-basis: 100px;
  }

  .club-brand span {
    display: none;
  }

  .club-header .club-back {
    max-width: 125px;
    text-align: center;
  }
  
  .club-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
    letter-spacing: -0.045em;
  }

  .founder-modal__facts {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Ajustes da versão estática */
[hidden] {
  display: none !important;
}

.sample-qr>i {
  width: 25px;
  height: 25px;
  position: absolute;
  border: 5px solid var(--ink);
  box-shadow: inset 0 0 0 4px var(--white), inset 0 0 0 8px var(--ink);
}

.sample-qr>i:nth-child(1) {
  top: 7px;
  left: 7px;
}

.sample-qr>i:nth-child(2) {
  top: 7px;
  right: 7px;
}

.sample-qr>i:nth-child(3) {
  bottom: 7px;
  left: 7px;
}

.sample-qr>b {
  width: 45px;
  height: 45px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: repeating-conic-gradient(var(--ink) 0 25%, transparent 0 50%) 0/10px 10px;
}

.club-tier>b,
.club-cta__diamond {
  display: block;
  color: var(--gold);
  font-size: 2.2rem;
}

.club-tier>b {
  margin-bottom: 35px;
}

.legal-mini-footer {
  min-height: 100px;
  padding: 30px;
  border-top: 3px solid var(--gold);
  background: #041118;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, .68);
  font-size: .72rem;
}