:root {
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-soft: #eff6ff;
  --ink: #111827;
  --muted: #6b7280;
  --white: #ffffff;
  --surface: #f8fafc;
  --border: #e5e7eb;
  --border-strong: #dbe3ef;
  --navy: #071226;
  --navy-2: #0a1b36;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;

  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 24px 65px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 22px 50px rgba(37, 99, 235, 0.22);

  --container: 1200px;
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;

  color: var(--ink);
  background: var(--white);

  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: 18px;
  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: #ffffff;
  background: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;

  padding: 10px 14px;

  border-radius: 8px;

  color: #ffffff;
  background: var(--ink);

  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-muted {
  background: var(--surface);
}

.ambient-grid {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 50%;

  width: min(100%, 1500px);
  height: 850px;

  opacity: 0.45;

  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(37, 99, 235, 0.04) 1px,
      transparent 1px
    );

  background-size: 52px 52px;

  transform: translateX(-50%);
  mask-image: linear-gradient(to bottom, #000000 15%, transparent 90%);

  pointer-events: none;
}

.ambient-grid::before {
  content: "";

  position: absolute;
  inset: -180px 20% auto;

  height: 520px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(37, 99, 235, 0.11),
      transparent 68%
    );

  filter: blur(10px);
}

.cursor-glow {
  position: fixed;
  z-index: -1;

  width: 460px;
  height: 460px;

  border-radius: 50%;

  opacity: 0;

  background:
    radial-gradient(
      circle,
      rgba(37, 99, 235, 0.07),
      transparent 68%
    );

  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.25s ease;

  pointer-events: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;

  height: var(--header-height);

  border-bottom: 1px solid transparent;

  background: rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(229, 231, 235, 0.85);

  background: rgba(255, 255, 255, 0.92);

  box-shadow:
    0 8px 30px rgba(15, 23, 42, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 34px;

  height: 100%;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 180px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;

  margin-left: auto;
}

.desktop-nav a {
  position: relative;

  color: #4b5563;

  font-size: 14px;
  font-weight: 500;

  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;

  height: 2px;

  border-radius: 2px;

  background: var(--blue);

  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.desktop-cta {
  margin-left: 6px;
}

.menu-button,
.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 50px;
  padding: 0 22px;

  border: 1px solid transparent;
  border-radius: 12px;

  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.24);
  outline-offset: 3px;
}

.button svg {
  width: 19px;
  height: 19px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.2s ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;

  border-radius: 10px;

  font-size: 14px;
}

.button-large {
  min-height: 56px;
  padding-inline: 26px;
}

.button-primary {
  color: #ffffff;
  background: var(--blue);

  box-shadow:
    0 10px 28px rgba(37, 99, 235, 0.2);
}

.button-primary:hover {
  background: var(--blue-hover);
  box-shadow: var(--shadow-blue);
}

.button-secondary {
  color: var(--ink);

  border-color: var(--border);

  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
  border-color: #cbd5e1;
  background: #ffffff;

  box-shadow: var(--shadow-sm);
}

.button-light {
  color: var(--navy);
  background: #ffffff;

  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.18);
}

.button-light:hover {
  color: var(--blue-hover);
  background: #f8fbff;

  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.24);
}

.hero {
  display: flex;
  align-items: center;

  min-height: calc(100vh - var(--header-height));
  padding: 82px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(500px, 1.08fr);

  align-items: center;
  gap: 74px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 24px;
  padding: 8px 12px;

  border: 1px solid #dbeafe;
  border-radius: 999px;

  color: var(--blue-hover);
  background: rgba(239, 246, 255, 0.78);

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--blue);

  box-shadow:
    0 0 0 5px rgba(37, 99, 235, 0.11);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;

  font-size: clamp(48px, 5.15vw, 72px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h1 span,
h2 span {
  color: var(--blue);
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 34px;

  color: var(--muted);

  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;

  margin-top: 30px;

  color: #4b5563;

  font-size: 13px;
  font-weight: 500;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.proof-icon {
  display: grid;
  place-items: center;

  width: 19px;
  height: 19px;

  border-radius: 50%;

  color: var(--blue);
  background: var(--blue-soft);

  font-size: 11px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  padding: 28px 18px 36px;
}

.visual-frame {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-lg);

  background: #eef2f7;

  box-shadow: var(--shadow-md);
}

.visual-frame img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.visual-frame-hero {
  aspect-ratio: 1.07 / 1;

  transform:
    perspective(1200px)
    rotateY(-2.2deg)
    rotateX(1deg);

  transform-origin: center;
}

.visual-frame-hero img {
  object-position: 59% center;
}

.visual-frame-hero::before {
  content: "";

  position: absolute;
  z-index: 2;
  inset: 0;

  border-radius: inherit;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.65);

  pointer-events: none;
}

.image-vignette {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      125deg,
      rgba(9, 20, 39, 0.12),
      transparent 48%,
      rgba(37, 99, 235, 0.07)
    );

  pointer-events: none;
}

.floating-card {
  position: absolute;
  z-index: 4;

  padding: 16px 18px;

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.86);

  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.15);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.floating-card strong {
  display: block;

  color: var(--ink);

  font-size: 14px;
}

.floating-card p {
  margin: 2px 0 0;

  color: var(--muted);

  font-size: 12px;
}

.floating-card-top {
  top: 2px;
  right: -12px;

  min-width: 190px;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 8px;

  color: #64748b;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-line span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #22c55e;

  box-shadow:
    0 0 0 4px rgba(34, 197, 94, 0.12);
}

.floating-card-bottom {
  bottom: 4px;
  left: -16px;

  display: flex;
  align-items: center;
  gap: 12px;

  min-width: 220px;
}

.score-ring {
  display: grid;
  place-items: center;

  width: 50px;
  height: 50px;

  border-radius: 50%;

  background:
    conic-gradient(
      var(--blue) 0 68%,
      #dbeafe 68% 100%
    );
}

.score-ring::before {
  content: "";

  position: absolute;

  width: 39px;
  height: 39px;

  border-radius: 50%;

  background: #ffffff;
}

.score-ring span {
  position: relative;
  z-index: 1;

  color: var(--blue);

  font-size: 12px;
  font-weight: 700;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 62px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.narrow {
  max-width: 740px;
}

.section-kicker {
  display: inline-block;

  margin-bottom: 14px;

  color: var(--blue);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #93c5fd;
}

.section-kicker.neutral {
  color: #64748b;
}

h2 {
  margin-bottom: 22px;

  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p,
.split-copy > p {
  color: var(--muted);

  font-size: 19px;
  line-height: 1.72;
}

/* FUNDADOR */

.founder-section {
  overflow: hidden;

  border-top: 1px solid rgba(229, 231, 235, 0.75);
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);

  background:
    radial-gradient(
      circle at 12% 22%,
      rgba(37, 99, 235, 0.07),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff,
      #fbfdff
    );
}

.founder-grid {
  display: grid;
  grid-template-columns:
    minmax(390px, 0.82fr)
    minmax(0, 1.18fr);

  align-items: center;
  gap: 90px;
}

.founder-visual {
  position: relative;

  width: 100%;
  max-width: 510px;
}

.founder-photo-placeholder {
  position: relative;

  min-height: 570px;

  overflow: hidden;

  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 30px;

  background: #e5e7eb;

  box-shadow: var(--shadow-sm);
}

.founder-photo-placeholder::before {
  content: "";

  position: absolute;
  z-index: 1;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 58%,
      rgba(15, 23, 42, 0.18)
    );

  pointer-events: none;
}

.founder-photo-placeholder img {
  position: absolute;
  inset: 0;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;
}

.founder-signature-card {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 34px;

  min-width: 250px;
  padding: 18px 20px;

  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.92);

  box-shadow: var(--shadow-md);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.founder-signature-card span {
  display: block;

  margin-bottom: 5px;

  color: var(--blue);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-signature-card strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.founder-copy h2 {
  max-width: 760px;
}

.founder-copy > p {
  max-width: 720px;

  color: var(--muted);

  font-size: 18px;
  line-height: 1.75;
}

.founder-intro {
  color: #374151 !important;

  font-size: 21px !important;
  font-weight: 500;
}

.founder-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;

  margin-top: 34px;
}

.founder-values article {
  padding: 24px;

  border: 1px solid var(--border);
  border-radius: 18px;

  background: #ffffff;

  box-shadow:
    0 12px 34px rgba(15, 23, 42, 0.04);
}

.founder-values span {
  display: block;

  margin-bottom: 10px;

  color: var(--blue);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-values p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.65;
}

/* JORNADA */

.journey-section {
  background: var(--surface);
}

.journey-track {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 24px;

  background: #ffffff;

  box-shadow: var(--shadow-sm);
}

.journey-track::before {
  content: "";

  position: absolute;
  top: 56px;
  right: 12.5%;
  left: 12.5%;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      #bfdbfe,
      var(--blue),
      #bfdbfe
    );
}

.journey-track article {
  position: relative;

  min-height: 240px;
  padding: 36px 28px 30px;

  border-right: 1px solid var(--border);

  text-align: center;
}

.journey-track article:last-child {
  border-right: 0;
}

.journey-track article > span {
  position: relative;
  z-index: 2;

  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;
  margin: 0 auto 28px;

  border: 7px solid #ffffff;
  border-radius: 50%;

  color: #ffffff;
  background: var(--blue);

  box-sizing: content-box;

  font-size: 11px;
  font-weight: 700;

  box-shadow:
    0 0 0 1px #bfdbfe;
}

.journey-track strong {
  display: block;

  margin-bottom: 10px;

  font-size: 19px;
}

.journey-track p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.65;
}

/* PROBLEMA */

.problem-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(370px, 0.92fr);

  align-items: stretch;
  gap: 28px;
}

.problem-image {
  min-height: 620px;
  box-shadow: var(--shadow-sm);
}

.problem-image img {
  object-position: 50% center;
}

.problem-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(9, 18, 35, 0.48),
      transparent 45%
    );

  pointer-events: none;
}

.problem-overlay {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;

  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.problem-overlay span {
  padding: 8px 12px;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;

  color: #ffffff;
  background: rgba(9, 18, 35, 0.36);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.problem-cards {
  display: grid;
  gap: 16px;
}

.problem-card {
  position: relative;

  min-height: 188px;
  padding: 28px 72px 26px 26px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: #ffffff;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.problem-card:hover {
  border-color: #bfdbfe;

  transform: translateY(-4px);

  box-shadow: var(--shadow-sm);
}

.problem-card > span {
  position: absolute;
  top: 25px;
  right: 24px;

  color: #cbd5e1;

  font-size: 13px;
  font-weight: 700;
}

.problem-card h3 {
  margin: 16px 0 7px;

  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.problem-card p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.6;
}

.icon-box {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border-radius: 12px;

  color: var(--blue);
  background: var(--blue-soft);
}

.icon-box svg {
  width: 20px;
  height: 20px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* FILOSOFIA */

.split-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.86fr)
    minmax(480px, 1.14fr);

  align-items: center;
  gap: 84px;
}

.split-copy h2 {
  max-width: 640px;
}

.split-copy > p {
  max-width: 620px;
  margin-bottom: 18px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;

  margin-top: 38px;
}

.principles div {
  padding: 18px 16px;

  border: 1px solid var(--border);
  border-radius: 14px;

  background: #ffffff;
}

.principles strong {
  display: block;

  margin-bottom: 4px;

  font-size: 14px;
}

.principles span {
  display: block;

  color: var(--muted);

  font-size: 11px;
  line-height: 1.45;
}

.philosophy-image {
  aspect-ratio: 1 / 0.92;
  box-shadow: var(--shadow-sm);
}

.philosophy-image img {
  object-position: center;
}

.philosophy-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      transparent 50%,
      rgba(5, 17, 37, 0.32)
    );
}

.quote-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;

  width: min(260px, calc(100% - 48px));
  padding: 22px;

  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;

  color: #ffffff;
  background: rgba(7, 18, 38, 0.58);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.quote-card span {
  display: block;

  margin-bottom: 10px;

  color: #bfdbfe;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card strong {
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* PRODUTO */

.product-section {
  padding-block: 78px 120px;
}

.product-shell {
  position: relative;

  overflow: hidden;

  padding: 88px 70px 70px;

  border-radius: 36px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #071226 0%,
      #0a1b36 60%,
      #102b52 100%
    );

  box-shadow:
    0 40px 90px rgba(7, 18, 38, 0.22);
}

.product-shell::before {
  content: "";

  position: absolute;
  top: -320px;
  right: -170px;

  width: 720px;
  height: 720px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(37, 99, 235, 0.34),
      transparent 65%
    );
}

.product-shell::after {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.13;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    );

  background-size: 46px 46px;

  mask-image:
    linear-gradient(
      to bottom,
      #000000,
      transparent 72%
    );

  pointer-events: none;
}

.product-heading {
  position: relative;
  z-index: 2;

  max-width: 870px;
  margin-inline: auto;

  text-align: center;
}

.product-heading h2 {
  font-size: clamp(38px, 4.5vw, 60px);
}

.product-heading p {
  color: #aebdd2;
}

.product-heading .button {
  margin-top: 10px;
}

.product-mockup {
  position: relative;
  z-index: 2;

  max-width: 1020px;
  margin: 0 auto 54px;
}

.mockup-browser {
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;

  background: #0e1d34;

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.42);

  transform:
    perspective(1400px)
    rotateX(2deg);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;

  height: 42px;
  padding: 0 15px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);

  background: rgba(255, 255, 255, 0.04);
}

.browser-bar i {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.28);
}

.browser-bar span {
  margin-left: 9px;

  color: #7f94af;

  font-size: 10px;
  letter-spacing: 0.03em;
}

.mockup-browser img {
  width: 100%;
  max-height: 620px;

  object-fit: cover;
  object-position: center 55%;
}

.component-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.component-grid > div {
  min-height: 155px;
  padding: 20px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.055);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.component-grid > div:hover {
  border-color: rgba(147, 197, 253, 0.42);

  background: rgba(255, 255, 255, 0.085);

  transform: translateY(-4px);
}

.component-grid span {
  color: #60a5fa;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.component-grid strong {
  display: block;

  margin: 12px 0 6px;

  font-size: 15px;
}

.component-grid p {
  margin: 0;

  color: #93a4bb;

  font-size: 11px;
  line-height: 1.55;
}

.component-grid > div:last-child {
  grid-column: span 2;
}

/* MISSÕES */

.missions-section {
  padding-top: 120px;
}

.mission-roadmap {
  position: relative;

  overflow: hidden;

  max-width: 1050px;
  margin: 0 auto 48px;

  border: 1px solid var(--border);
  border-radius: 28px;

  background: var(--surface);

  box-shadow: var(--shadow-sm);
}

.mission-roadmap img {
  width: 100%;

  aspect-ratio: 2.15 / 1;

  object-fit: cover;
  object-position: center 55%;
}

.mission-roadmap::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      transparent 58%,
      rgba(7, 18, 38, 0.72)
    );

  pointer-events: none;
}

.roadmap-label {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 22px;
  left: 30px;

  display: flex;
  align-items: center;
  gap: 14px;

  color: #ffffff;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.roadmap-label i {
  flex: 1;

  height: 1px;

  background: rgba(255, 255, 255, 0.38);
}

.missions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.mission-card {
  position: relative;

  min-height: 280px;
  padding: 25px;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: #ffffff;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mission-card::before {
  content: "";

  position: absolute;
  top: -120px;
  right: -120px;

  width: 210px;
  height: 210px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(37, 99, 235, 0.08),
      transparent 68%
    );
}

.mission-card:hover {
  border-color: #bfdbfe;

  transform: translateY(-5px);

  box-shadow: var(--shadow-sm);
}

.mission-number {
  color: var(--blue);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mission-icon {
  display: grid;
  place-items: center;

  width: 52px;
  height: 52px;
  margin: 34px 0 24px;

  border: 1px solid #dbeafe;
  border-radius: 15px;

  color: var(--blue);
  background: var(--blue-soft);

  font-size: 14px;
  font-weight: 700;
}

.mission-card h3 {
  margin-bottom: 10px;

  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.mission-card p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.65;
}

.mission-card-highlight {
  color: #ffffff;

  border-color: var(--blue);

  background: var(--blue);

  box-shadow:
    0 24px 48px rgba(37, 99, 235, 0.22);
}

.mission-card-highlight::before {
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.18),
      transparent 68%
    );
}

.mission-card-highlight .mission-number,
.mission-card-highlight p {
  color: #dbeafe;
}

.mission-card-highlight .mission-icon {
  color: #ffffff;

  border-color: rgba(255, 255, 255, 0.25);

  background: rgba(255, 255, 255, 0.12);
}

/* TRANSFORMAÇÃO */

.transformation-section {
  overflow: hidden;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #071226,
      #0a1b36 62%,
      #102b52
    );
}

.transformation-section::before {
  content: "";

  position: absolute;
  top: -300px;
  right: -140px;

  width: 680px;
  height: 680px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(37, 99, 235, 0.32),
      transparent 67%
    );
}

.transformation-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns:
    minmax(0, 0.78fr)
    minmax(520px, 1.22fr);

  align-items: center;
  gap: 80px;
}

.transformation-copy h2 {
  max-width: 560px;
}

.transformation-copy p {
  max-width: 560px;

  color: #aebdd2;

  font-size: 18px;
}

.transformation-list {
  display: grid;
  gap: 12px;
}

.transformation-list article {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  align-items: center;
  gap: 18px;

  padding: 22px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.055);
}

.transformation-list article > span,
.transformation-list article div span {
  display: block;

  margin-bottom: 5px;

  color: #7f94af;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.transformation-list strong {
  display: block;

  font-size: 14px;
  line-height: 1.4;
}

.transformation-list article > i {
  color: #60a5fa;

  font-size: 22px;
  font-style: normal;
}

.transformation-list article div span {
  color: #93c5fd;
}

/* PARA QUEM */

.audience-section {
  padding-block: 100px;
}

.audience-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.83fr)
    minmax(500px, 1.17fr);

  align-items: center;
  gap: 88px;
}

.audience-grid.reverse {
  grid-template-columns:
    minmax(500px, 1.17fr)
    minmax(0, 0.83fr);
}

.audience-heading h2 {
  margin-bottom: 18px;
}

.audience-heading p {
  max-width: 600px;
  margin-bottom: 0;

  color: var(--muted);

  font-size: 18px;
}

.audience-list {
  display: grid;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.audience-list li {
  display: flex;
  align-items: center;
  gap: 15px;

  min-height: 76px;
  padding: 18px 22px;

  border: 1px solid var(--border);
  border-radius: 16px;

  color: #374151;
  background: #ffffff;

  font-size: 16px;
  font-weight: 500;

  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.035);
}

.audience-list li span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;

  width: 32px;
  height: 32px;

  border-radius: 10px;

  font-size: 16px;
  font-weight: 700;
}

.audience-list-positive li span {
  color: var(--blue);
  background: var(--blue-soft);
}

.audience-list-negative li {
  background: var(--surface);
}

.audience-list-negative li span {
  color: #475569;
  background: #e2e8f0;

  font-size: 22px;
  font-weight: 400;
}

.audience-section-negative {
  border-bottom: 1px solid var(--border);
}

/* MENTORIA */

.mentorship-section {
  padding-block: 55px;
}

.mentorship-callout {
  display: grid;
  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;

  align-items: center;
  gap: 26px;

  padding: 30px 34px;

  border: 1px solid #dbeafe;
  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      #eff6ff,
      #ffffff
    );
}

.mentorship-icon {
  display: grid;
  place-items: center;

  width: 62px;
  height: 62px;

  border-radius: 18px;

  color: #ffffff;
  background: var(--blue);

  font-size: 22px;
  font-weight: 700;

  box-shadow:
    0 14px 32px rgba(37, 99, 235, 0.2);
}

.mentorship-callout .section-kicker {
  margin-bottom: 5px;
}

.mentorship-callout h2 {
  margin-bottom: 7px;

  font-size: clamp(27px, 3vw, 38px);
}

.mentorship-callout p {
  margin: 0;

  color: var(--muted);

  font-size: 15px;
}

.mentorship-label {
  padding: 8px 12px;

  border: 1px solid #bfdbfe;
  border-radius: 999px;

  color: var(--blue-hover);
  background: rgba(255, 255, 255, 0.7);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* GARANTIA */

.guarantee-section {
  padding-block: 72px;
  background: var(--surface);
}

.guarantee-card {
  display: grid;
  grid-template-columns:
    auto
    minmax(0, 1fr);

  align-items: center;
  gap: 34px;

  max-width: 950px;
  margin: auto;
  padding: 48px 54px;

  border: 1px solid var(--border);
  border-radius: 28px;

  background: #ffffff;

  box-shadow: var(--shadow-sm);
}

.guarantee-icon {
  display: grid;
  place-items: center;

  width: 96px;
  height: 96px;

  border-radius: 26px;

  color: var(--blue);
  background: var(--blue-soft);
}

.guarantee-icon svg {
  width: 52px;
  height: 52px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guarantee-card .section-kicker {
  margin-bottom: 5px;
}

.guarantee-card h2 {
  margin-bottom: 10px;

  font-size: clamp(34px, 4vw, 48px);
}

.guarantee-card p {
  max-width: 650px;
  margin: 0;

  color: var(--muted);

  font-size: 18px;
}

/* COMUNIDADE */

.community-section {
  padding-block: 96px;
}

.community-shell {
  position: relative;

  overflow: hidden;

  display: grid;
  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;

  align-items: center;
  gap: 40px;

  padding: 64px;

  border-radius: 32px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #071226,
      #0a1b36 62%,
      #14345f
    );

  box-shadow:
    0 34px 80px rgba(7, 18, 38, 0.2);
}

.community-grid {
  position: absolute;
  inset: 0;

  opacity: 0.12;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px
    );

  background-size: 44px 44px;

  mask-image:
    linear-gradient(
      90deg,
      #000000,
      transparent 86%
    );
}

.community-mark,
.community-copy,
.community-badge {
  position: relative;
  z-index: 1;
}

.community-mark {
  display: grid;
  place-items: center;

  width: 96px;
  height: 96px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;

  color: #ffffff;
  background: rgba(37, 99, 235, 0.28);

  font-size: 36px;
  font-weight: 700;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.community-copy h2 {
  margin-bottom: 12px;
}

.community-copy p {
  max-width: 690px;
  margin: 0;

  color: #aebdd2;

  font-size: 17px;
}

.community-badge {
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 10px 14px;

  border: 1px solid rgba(147, 197, 253, 0.25);
  border-radius: 999px;

  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.12);

  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.community-badge span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #60a5fa;

  box-shadow:
    0 0 0 5px rgba(96, 165, 250, 0.12);
}

/* FAQ */

.faq-section {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.76fr)
    minmax(520px, 1.24fr);

  align-items: start;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.faq-heading p {
  max-width: 520px;

  color: var(--muted);

  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 16px;

  background: #ffffff;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: #bfdbfe;
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;

  padding: 22px 58px 22px 22px;

  color: #1f2937;

  font-size: 16px;
  font-weight: 600;

  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 24px;

  width: 14px;
  height: 2px;

  border-radius: 2px;

  background: var(--blue);

  transition: transform 0.2s ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}

/* CTA FINAL */

.final-cta {
  padding-top: 40px;
}

.cta-shell {
  position: relative;

  overflow: hidden;

  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(320px, 0.85fr);

  align-items: center;
  gap: 50px;

  padding: 70px;

  border-radius: 32px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--blue-hover),
      var(--blue) 58%,
      #3b82f6
    );

  box-shadow: var(--shadow-blue);
}

.cta-shell::before {
  content: "";

  position: absolute;
  top: -180px;
  right: -80px;

  width: 480px;
  height: 480px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;

  box-shadow:
    0 0 0 54px rgba(255, 255, 255, 0.04),
    0 0 0 108px rgba(255, 255, 255, 0.025);
}

.cta-grid {
  position: absolute;
  inset: 0;

  opacity: 0.12;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.18) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.18) 1px,
      transparent 1px
    );

  background-size: 42px 42px;

  mask-image:
    linear-gradient(
      90deg,
      #000000,
      transparent
    );
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  margin-bottom: 16px;

  font-size: clamp(36px, 4vw, 54px);
}

.cta-copy p {
  max-width: 680px;
  margin-bottom: 0;

  color: #dbeafe;

  font-size: 17px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.cta-actions .button {
  width: 100%;
}

.cta-actions > span {
  align-self: center;

  color: #bfdbfe;

  font-size: 11px;
}

/* RODAPÉ */

.site-footer {
  padding: 36px 0 52px;
}

.footer-wrap {
  display: grid;
  grid-template-columns:
    1fr
    auto
    auto;

  align-items: center;
  gap: 30px;

  padding-top: 28px;

  border-top: 1px solid var(--border);

  color: var(--muted);
}

.footer-brand img {
  width: 150px;
}

.footer-wrap p {
  margin: 0;

  font-size: 11px;
}

/* ANIMAÇÕES */

[data-reveal] {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);

  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

/* PROTEÇÃO */

.devtools-shield {
  position: fixed;
  z-index: 10000;
  inset: 0;

  display: grid;
  place-items: center;

  padding: 24px;

  color: var(--ink);
  background: rgba(248, 250, 252, 0.98);

  text-align: center;
}

.devtools-shield[hidden] {
  display: none;
}

.devtools-shield > div {
  max-width: 520px;
}

.devtools-shield img {
  width: 210px;
  margin: 0 auto 28px;
}

.devtools-shield h2 {
  margin-bottom: 12px;

  font-size: 30px;
}

.devtools-shield p {
  color: var(--muted);
}

/* RESPONSIVIDADE */

@media (max-width: 1100px) {
  :root {
    --container: 960px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .hero-visual {
    padding-inline: 0;
  }

  h1 {
    font-size: clamp(46px, 5vw, 60px);
  }

  .founder-grid {
    gap: 58px;
  }

  .founder-signature-card {
    right: -12px;
  }

  .problem-layout {
    grid-template-columns: 1fr 1fr;
  }

  .split-grid {
    gap: 48px;
  }

  .product-shell {
    padding-inline: 44px;
  }

  .missions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .component-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .component-grid > div:last-child {
    grid-column: auto;
  }

  .transformation-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }

  .audience-grid,
  .audience-grid.reverse {
    gap: 50px;
  }

  .community-shell {
    padding: 52px 42px;
  }

  .faq-grid {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 90px 0;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .nav-wrap {
    justify-content: space-between;
  }

  .brand img {
    width: 154px;
  }

  .menu-button {
    display: grid;
    place-content: center;
    gap: 6px;

    width: 44px;
    height: 44px;
    padding: 0;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: #ffffff;

    cursor: pointer;
  }

  .menu-button span {
    width: 19px;
    height: 1.5px;

    border-radius: 2px;

    background: var(--ink);

    transition: transform 0.2s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform:
      translateY(3.75px)
      rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform:
      translateY(-3.75px)
      rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;

    display: grid;
    gap: 4px;

    padding: 18px;

    border-bottom: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.98);

    box-shadow:
      0 20px 40px rgba(15, 23, 42, 0.08);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a:not(.button) {
    padding: 13px 12px;

    border-radius: 9px;

    color: #374151;

    font-size: 15px;
    font-weight: 500;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 90px;
  }

  .hero-grid,
  .split-grid,
  .cta-shell,
  .founder-grid,
  .transformation-grid,
  .audience-grid,
  .audience-grid.reverse,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-subtitle,
  .hero-copy h1 {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    width: min(680px, 100%);
    margin: auto;
  }

  .founder-grid {
    gap: 48px;
  }

  .founder-visual {
    width: min(560px, 100%);
    margin: auto;
  }

  .founder-copy {
    text-align: center;
  }

  .founder-copy h2,
  .founder-copy > p {
    margin-inline: auto;
  }

  .founder-values {
    text-align: left;
  }

  .journey-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-track::before {
    display: none;
  }

  .journey-track article:nth-child(2) {
    border-right: 0;
  }

  .journey-track article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .problem-layout {
    grid-template-columns: 1fr;
  }

  .problem-image {
    min-height: 470px;
  }

  .problem-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .problem-card {
    min-height: 250px;
    padding-right: 24px;
  }

  .problem-card > span {
    display: none;
  }

  .split-grid {
    gap: 50px;
  }

  .split-copy {
    text-align: center;
  }

  .split-copy h2,
  .split-copy > p {
    margin-inline: auto;
  }

  .principles {
    text-align: left;
  }

  .philosophy-image {
    width: min(720px, 100%);
    margin: auto;
  }

  .product-shell {
    padding: 68px 30px 38px;

    border-radius: 28px;
  }

  .component-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .missions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transformation-copy {
    text-align: center;
  }

  .transformation-copy h2,
  .transformation-copy p {
    margin-inline: auto;
  }

  .audience-grid {
    gap: 38px;
  }

  .audience-grid.reverse .audience-heading {
    grid-row: 1;
    text-align: center;
  }

  .audience-grid.reverse .audience-list {
    grid-row: 2;
  }

  .audience-heading {
    text-align: center;
  }

  .audience-heading p {
    margin-inline: auto;
  }

  .mentorship-callout {
    grid-template-columns: auto 1fr;
  }

  .mentorship-label {
    grid-column: 2;
    justify-self: start;
  }

  .community-shell {
    grid-template-columns: auto 1fr;
  }

  .community-badge {
    grid-column: 2;
    justify-self: start;
  }

  .faq-heading {
    position: static;
    text-align: center;
  }

  .faq-heading p {
    margin-inline: auto;
  }

  .cta-shell {
    padding: 52px 38px;

    text-align: center;
  }

  .cta-actions {
    width: min(430px, 100%);
    margin: auto;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    justify-items: center;

    text-align: center;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 46px;
  }

  .eyebrow {
    margin-bottom: 20px;

    font-size: 9px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 50px);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(34px, 9.5vw, 44px);
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;

    width: fit-content;
    margin-inline: auto;

    text-align: left;
  }

  .hero-visual {
    padding: 6px 0 28px;
  }

  .visual-frame-hero {
    aspect-ratio: 0.9 / 1;
    transform: none;
  }

  .visual-frame-hero img {
    object-position: 62% center;
  }

  .floating-card-top {
    top: -10px;
    right: 4px;

    min-width: 165px;
  }

  .floating-card-bottom {
    bottom: 0;
    left: 5px;

    min-width: 195px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading p,
  .split-copy > p {
    font-size: 16px;
  }

  .founder-photo-placeholder {
    min-height: 430px;
    padding: 0;
  }

  .founder-signature-card {
    right: 12px;
    bottom: 18px;
    left: 12px;

    min-width: 0;
  }

  .founder-values {
    grid-template-columns: 1fr;
  }

  .founder-intro {
    font-size: 18px !important;
  }

  .journey-track {
    grid-template-columns: 1fr;
  }

  .journey-track article {
    min-height: auto;

    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .journey-track article:last-child {
    border-bottom: 0;
  }

  .problem-image {
    min-height: 390px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: auto;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .philosophy-image {
    aspect-ratio: 0.84 / 1;
  }

  .philosophy-image img {
    object-position: 62% center;
  }

  .quote-card {
    right: 14px;
    bottom: 14px;
    left: 14px;

    width: auto;
  }

  .product-section {
    padding-top: 20px;
  }

  .product-shell {
    padding: 54px 18px 24px;

    border-radius: 24px;
  }

  .product-heading {
    margin-bottom: 42px;
  }

  .product-heading h2 {
    font-size: 35px;
  }

  .product-heading p {
    font-size: 15px;
  }

  .browser-bar {
    height: 34px;
  }

  .mockup-browser img {
    min-height: 330px;

    object-position: 55% center;
  }

  .component-grid {
    grid-template-columns: 1fr;
  }

  .component-grid > div {
    min-height: auto;
  }

  .mission-roadmap img {
    aspect-ratio: 1.25 / 1;
  }

  .missions-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    min-height: 245px;
  }

  .transformation-list article {
    grid-template-columns: 1fr;
    gap: 10px;

    text-align: center;
  }

  .transformation-list article > i {
    transform: rotate(90deg);
  }

  .audience-section {
    padding-block: 76px;
  }

  .audience-list li {
    min-height: 66px;
    padding: 15px;

    font-size: 14px;
  }

  .mentorship-callout {
    grid-template-columns: 1fr;

    padding: 26px 22px;

    text-align: center;
  }

  .mentorship-icon {
    margin: auto;
  }

  .mentorship-label {
    grid-column: auto;
    justify-self: center;
  }

  .guarantee-card {
    grid-template-columns: 1fr;

    padding: 36px 24px;

    text-align: center;
  }

  .guarantee-icon {
    margin: auto;
  }

  .community-shell {
    grid-template-columns: 1fr;

    padding: 42px 24px;

    text-align: center;
  }

  .community-mark {
    margin: auto;
  }

  .community-badge {
    grid-column: auto;
    justify-self: center;

    white-space: normal;
  }

  .faq-list summary {
    padding: 20px 52px 20px 18px;

    font-size: 15px;
  }

  .faq-list details p {
    padding: 0 18px 20px;
  }

  .cta-shell {
    padding: 46px 22px;

    border-radius: 24px;
  }

  .cta-copy h2 {
    font-size: 36px;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }
}