/* ============================================================
   Vini Garcia · Apresentação privada de sociedade
   Stylesheet — paleta cream + grafite + laranja + roxo
   ============================================================ */

/* ==================== Tokens ==================== */
:root {
  --bg: #F2EDE4;
  --bg-elevated: #EAE3D6;
  --surface: #E2D9C9;
  --text: #141414;
  --text-2: #5A554E;
  --text-3: #8A857C;
  --accent: #FF4D1F;
  --accent-2: #3D2BD4;
  --green: #2E5C3A;
  --hairline: rgba(20, 20, 20, 0.12);
  --hairline-strong: rgba(20, 20, 20, 0.24);
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Inter Tight', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==================== Reset ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-elevated) 100%);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* ==================== Layout base ==================== */
.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .wrap { padding: 0 48px; } }
@media (min-width: 1024px) { .wrap { padding: 0 72px; } }

section {
  position: relative;
  padding-block: 64px;
}
@media (min-width: 768px) { section { padding-block: 88px; } }
@media (min-width: 1024px) { section { padding-block: 112px; } }

.section-elevated { background: var(--bg-elevated); }

/* ==================== Typography ==================== */
.display {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-feature-settings: "ss01", "ss02";
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.display strong {
  font-weight: 700;
  font-style: normal;
}
h1.display {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  letter-spacing: -0.025em;
  line-height: 0.95;
}
h2.display { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3.display { font-size: clamp(1.5rem, 2.6vw, 2.25rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-2);
}
.eyebrow .num {
  color: var(--accent);
  margin-right: 8px;
}

.lead {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-2);
  font-weight: 400;
  max-width: 60ch;
}

.body-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 64ch;
}
.body-text + .body-text { margin-top: 1.25rem; }

/* ==================== Nav ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(242, 237, 228, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--hairline);
}
@media (min-width: 768px) { .nav { padding: 24px 48px; } }
@media (min-width: 1024px) { .nav { padding: 28px 72px; } }

.nav-brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}
.nav-brand em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.nav-links {
  display: none;
  gap: 32px;
  align-items: center;
  font-size: 0.875rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  position: relative;
  color: var(--text-2);
  font-weight: 400;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--text);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}
.nav-cta .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-burger { display: none; } }
.nav-burger span {
  height: 1.5px;
  background: var(--text);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 32px;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1;
  color: var(--text);
}
.mobile-menu a em {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
  margin-right: 12px;
  font-size: 0.5em;
  vertical-align: super;
}

/* ==================== Hero ==================== */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
}
@media (min-width: 1024px) {
  .hero {
    max-height: 100vh;
    padding-top: 96px;
  }
}
@media (max-height: 749px) and (min-width: 1024px) {
  .hero { max-height: none; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
    gap: 80px;
  }
}

/* FIX CRÍTICO: .hero-text precisa de width definido para não colapsar no grid */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero-title {
  margin-bottom: 24px;
}
.hero-title em { white-space: nowrap; }
@media (max-width: 600px) { .hero-title em { white-space: normal; } }

.hero-lead {
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--text);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn-primary .arrow {
  transition: transform 0.4s var(--ease);
}
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.9375rem;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-ghost:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
  overflow: visible;
  perspective: 1200px;
  perspective-origin: center center;
}
@media (min-width: 1024px) {
  .hero-visual { max-width: 100%; }
}
.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  z-index: 2;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.04) saturate(0.92);
}

.hero-blob {
  position: absolute;
  z-index: 1;
  width: 170%;
  height: 150%;
  top: -25%;
  left: -35%;
  right: auto;
  pointer-events: none;
}
.hero-blob canvas {
  width: 100% !important;
  height: 100% !important;
  opacity: 0.85;
}
.hero-blob-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--accent) 0%, transparent 60%),
              radial-gradient(circle at 70% 70%, var(--accent-2) 0%, transparent 60%);
  filter: blur(40px);
  opacity: 0.45;
}

.hero-meta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  font-size: 0.8125rem;
  color: var(--text-2);
}
@media (min-width: 1024px) {
  .hero-meta { margin-top: 48px; }
}
.hero-meta div { display: flex; align-items: center; gap: 8px; }
.hero-meta strong {
  color: var(--text);
  font-weight: 500;
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
}

/* ==================== Section head ==================== */
.section-head {
  margin-bottom: 48px;
  max-width: 920px;
}
@media (min-width: 768px) { .section-head { margin-bottom: 64px; } }

.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.section-head .eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.section-head h2 { margin-bottom: 0; }

/* ==================== 01 · Truth-box ==================== */
.truth-box {
  border-top: 1px solid var(--hairline-strong);
  padding-top: 48px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .truth-box {
    grid-template-columns: 0.7fr 1fr;
    gap: 96px;
  }
}
.truth-box .truth-sub {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  color: var(--text);
}
.truth-box .truth-sub em {
  font-style: normal;
  color: var(--accent);
}

/* ==================== 02 · Cards 3 ==================== */
.cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
}
@media (min-width: 768px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.layer-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.4s var(--ease), transform 0.5s var(--ease);
}
@media (min-width: 1024px) {
  .layer-card { padding: 56px 40px; }
}
.layer-card:hover {
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

.layer-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  font-feature-settings: "ss01";
}
.layer-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.layer-card h3 em {
  font-style: italic;
  font-weight: 300;
}
.layer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.layer-list li {
  padding-left: 20px;
  position: relative;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-2);
}
.layer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
.layer-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.45;
  color: var(--text);
}

/* ==================== 03 · Provas (sticky) ==================== */
.provas-wrap {
  position: relative;
}
.provas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) {
  .provas-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 96px;
  }
}
.provas-sticky {
  position: relative;
  min-width: 0;
}
@media (min-width: 1024px) {
  .provas-sticky {
    position: sticky;
    top: 120px;
    align-self: start;
    height: fit-content;
    padding-bottom: 40px;
  }
}
.provas-content {
  min-width: 0;
  width: 100%;
}
.provas-sticky .eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.provas-sticky .eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--accent);
}
.provas-sticky h2 { margin-bottom: 32px; }
.provas-sticky .intro {
  color: var(--text-2);
  margin-bottom: 32px;
  max-width: 42ch;
}
.provas-quote {
  border-left: 2px solid var(--accent);
  padding: 16px 0 16px 24px;
  margin-top: 32px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text);
}
.provas-quote strong {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.proof-group {
  margin-bottom: 80px;
}
.proof-group:last-child { margin-bottom: 0; }
.proof-group-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--hairline-strong);
}
.proof-group-head .gnum {
  font-family: var(--display);
  font-weight: 500;
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.proof-group-head h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.proof-group-head h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-2);
}

.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 600px) { .projects { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 1024px) { .projects { gap: 32px; } }

.project {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project a {
  display: block;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 3;
  position: relative;
}
.project a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
}
.project a:hover img { transform: scale(1.05); filter: brightness(0.94); }
.project a::after {
  content: '↗';
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--bg);
  color: var(--text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}
.project a:hover::after { opacity: 1; transform: translateY(0); }
.project-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.project-meta .tag {
  color: var(--accent);
  font-weight: 500;
}
.project-meta .dot {
  width: 3px; height: 3px;
  background: var(--text-3);
  border-radius: 50%;
}
.project h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.project p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.55;
}

.project-no-link a {
  cursor: default;
  pointer-events: none;
}
.project-no-link a::after { display: none; }
.project-no-link h4::after {
  content: ' · demo ao vivo';
  color: var(--text-3);
  font-style: italic;
  font-weight: 300;
  font-size: 0.875rem;
}

/* ==================== 04 · Oferta ==================== */
.offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
}
@media (min-width: 1024px) { .offers { grid-template-columns: repeat(3, 1fr); } }

.offer {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.4s var(--ease), transform 0.5s var(--ease);
  position: relative;
}
@media (min-width: 1024px) { .offer { padding: 56px 40px; } }
.offer:hover {
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

.offer-letter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.offer h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.offer h3 em { font-style: italic; font-weight: 300; }
.offer-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.55;
}
.offer-model {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 0.8125rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.offer-model strong {
  color: var(--text);
  font-weight: 500;
}

/* ==================== 05 · Sociedade ==================== */
.roles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) { .roles { grid-template-columns: 1fr 1fr; gap: 48px; } }

.role {
  border-top: 1px solid var(--hairline-strong);
  padding-top: 32px;
}
.role-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.role h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.role h3 em {
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
}
.role ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.role ul li {
  padding-left: 24px;
  position: relative;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-2);
}
.role ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}

/* ==================== 06 · Plano 90 dias ==================== */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
}
@media (min-width: 1024px) { .timeline { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.4s var(--ease), transform 0.5s var(--ease);
}
@media (min-width: 1024px) { .step { padding: 56px 40px; } }
.step:hover {
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

.step-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
}
.step-range {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-3);
  font-weight: 500;
}
.step h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.step h3 em { font-style: italic; font-weight: 300; }
.step ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step ul li {
  padding-left: 20px;
  position: relative;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-2);
}
.step ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

/* ==================== 07 · Riscos ==================== */
.risks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .risks {
    grid-template-columns: 0.7fr 1fr;
    gap: 96px;
  }
}
.risks-intro {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  color: var(--text);
}
.risks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.risk-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.risk-item:first-child { border-top: 1px solid var(--hairline-strong); }
.risk-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  min-width: 32px;
}
.risk-text {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
}

/* ==================== 08 · Fechamento ==================== */
.closing {
  text-align: left;
  max-width: 920px;
  margin: 0 auto;
}
.closing h2 {
  margin-bottom: 32px;
}
.closing p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 48px;
  max-width: 60ch;
}
.closing-card {
  background: var(--text);
  color: var(--bg);
  padding: 48px 32px;
  border-radius: 4px;
  margin-top: 32px;
}
@media (min-width: 768px) { .closing-card { padding: 64px 56px; } }
.closing-card .closing-strong {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.2;
  color: var(--bg);
  margin-bottom: 24px;
}
.closing-card .closing-strong em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.closing-card .closing-explain {
  color: rgba(242, 237, 228, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 56ch;
}
.closing-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.closing-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.closing-btn:hover {
  background: var(--bg);
  color: var(--text);
  transform: translateY(-2px);
}
.closing-btn .arrow { transition: transform 0.4s var(--ease); }
.closing-btn:hover .arrow { transform: translateX(4px); }
.closing-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  color: rgba(242, 237, 228, 0.7);
  font-weight: 500;
  font-size: 0.9375rem;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.closing-ghost:hover {
  color: var(--bg);
  border-bottom-color: var(--bg);
}

/* ==================== Footer ==================== */
footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--hairline);
  color: var(--text-3);
  font-size: 0.8125rem;
}
footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  footer .wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
footer .footer-brand {
  font-family: var(--display);
  font-weight: 400;
  color: var(--text);
  font-size: 1rem;
}
footer .footer-brand em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
footer .footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
}

/* ==================== Animations base ==================== */
.word { display: inline-block; }
::selection { background: var(--accent); color: var(--bg); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
