:root {
  --bg: #000000;
  --bg-soft: #0f0f0f;
  --gold: #ffc400;
  --gold-2: #ffb300;
  --gold-3: #d99a00;
  --text: #ffffff;
  --muted: #cccccc;
  --line: rgba(255, 196, 0, 0.22);
  --panel: rgba(8, 8, 8, 0.88);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.72);
  --shadow-gold: 0 0 30px rgba(255, 196, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 179, 0, 0.07), transparent 30%),
    linear-gradient(180deg, #000 0%, #050505 32%, #000 100%);
}

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

button {
  font: inherit;
}

.landing-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 0 0 48px;
}

.page-glow {
  position: absolute;
  left: 50%;
  width: 72vw;
  height: 72vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(44px);
  transform: translateX(-50%);
}

.page-glow-top {
  top: -24vw;
  background: rgba(0, 0, 0, 0);
}

.page-glow-bottom {
  bottom: -22vw;
  background: rgba(217, 154, 0, 0.12);
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
  margin: 0 auto;
}

.brand-lockup {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: fit-content;
  margin: 0 auto;
  padding: 4px 18px 0;
}

.brand-mark {
  display: block;
  text-decoration: none;
  line-height: 0;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 126px;
  height: 126px;
  margin: -12px -10px -18px 0;
  object-fit: contain;
  vertical-align: top;
}

.brand-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-left: -18px;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.82;
  text-transform: uppercase;
}

.brand-title strong {
  font-size: clamp(1.6rem, 8vw, 2.5rem);
  letter-spacing: 0.06em;
  color: var(--text);
}

.brand-title strong:last-child {
  color: var(--gold);
}

.brand-title span {
  font-size: 0.8rem;
  line-height: 0.9;
  letter-spacing: 0.24em;
  color: #a8a8a8;
  transform: translateY(-1px);
  margin-left: 2px;
}

.brand-divider {
  width: min(82%, 360px);
  height: 1px;
  margin: 10px auto 0;
  background: linear-gradient(
    90deg,
    rgba(255, 196, 0, 0) 0%,
    rgba(255, 196, 0, 0.18) 18%,
    rgba(255, 196, 0, 0.5) 50%,
    rgba(255, 196, 0, 0.18) 82%,
    rgba(255, 196, 0, 0) 100%
  );
}

.hero-top-copy {
  position: relative;
  z-index: 5;
  padding: 12px 18px 0;
  text-align: center;
}

.hero-visual {
  position: relative;
  min-height: 53svh;
  overflow: hidden;
  margin-top: -112px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 196, 0, 0.14), transparent 30%),
    radial-gradient(circle at 50% 48%, rgba(255, 196, 0, 0.09), transparent 42%);
  pointer-events: none;
}

.hero-visual-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, transparent 0%, transparent 44%, rgba(0, 0, 0, 0.24) 84%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-mascot {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  mask-image:
    radial-gradient(circle at center, #000 56%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 80%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    radial-gradient(circle at center, #000 56%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 80%, transparent 100%);
  -webkit-mask-composite: source-in;
  filter:
    drop-shadow(0 26px 48px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 22px rgba(255, 196, 0, 0.12));
}

.hero-shadow {
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.92) 100%);
  z-index: 3;
}

.benefit-ticker {
  position: relative;
  z-index: 4;
  width: 100%;
  overflow: hidden;
  margin-top: -64px;
  background: linear-gradient(180deg, #ffd54a 0%, var(--gold) 52%, var(--gold-2) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.benefit-ticker-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  padding: 12px 0;
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: tickerMove 26s linear infinite;
}

.benefit-ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.benefit-ticker-track span::after {
  content: "■";
  font-size: 0.72rem;
}

.content-block {
  position: relative;
  z-index: 4;
  margin-top: 10px;
  padding: 0 18px 0;
  text-align: center;
}

.intro-badge {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 0 10px rgba(255, 196, 0, 0.3);
}

.main-headline {
  margin: 14px 0 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(3.1rem, 14vw, 5.3rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.82),
    0 10px 24px rgba(0, 0, 0, 0.78);
}

.main-headline > span {
  display: block;
}

.headline-top {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}

.headline-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 0.92em;
}

.headline-voice-inline {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 0.9em;
  transform: translateY(5px);
  margin-left: -18px;
}

.main-headline em {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 1.14em;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 800;
  font-style: normal;
  margin-top: 0;
  color: var(--gold);
  letter-spacing: 0.06em;
  transform: translateY(8px);
  text-shadow:
    0 0 14px rgba(255, 196, 0, 0.16),
    0 12px 28px rgba(0, 0, 0, 0.72);
}

.copy-stack {
  max-width: 34rem;
  margin: 18px auto 0;
}

.copy-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.copy-stack p + p {
  margin-top: 12px;
}

.copy-stack strong {
  color: var(--gold);
  font-weight: 800;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffd54a 0%, var(--gold) 54%, var(--gold-2) 100%);
  color: #000;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  box-shadow:
    0 18px 40px rgba(255, 196, 0, 0.26),
    0 0 22px rgba(255, 196, 0, 0.28);
  animation: pulse 1.6s infinite;
}

.cta-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.benefits-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
  margin-top: 18px;
  color: #e3e3e3;
  font-size: 0.83rem;
  line-height: 1.45;
}

.benefits-row span {
  position: relative;
  padding: 0 12px;
}

.benefits-row span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.benefits-row i {
  font-style: normal;
  color: var(--gold);
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 26px auto 0;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.94) 0%, rgba(10, 10, 10, 0.9) 100%);
  box-shadow: var(--shadow-deep), inset 0 0 0 1px rgba(255, 196, 0, 0.03);
}

.avatar-stack {
  display: flex;
  align-items: center;
  min-width: fit-content;
}

.avatar {
  position: relative;
  width: 46px;
  height: 46px;
  margin-left: -12px;
  border: 2px solid #000;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a2a 0%, #111 100%);
  box-shadow: 0 0 0 1px rgba(255, 196, 0, 0.24);
  overflow: hidden;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar img,
.avatar b {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.avatar img {
  object-fit: cover;
  background: #161616;
}

.avatar b {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.avatar.is-fallback b {
  display: flex;
}

.avatar.is-fallback img {
  display: none;
}

.social-copy {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.mini-logo {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 6px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 196, 0, 0.18), rgba(255, 196, 0, 0.06));
  box-shadow: inset 0 0 0 1px rgba(255, 196, 0, 0.18);
}

.mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-copy p {
  margin: 0;
  color: #f3f3f3;
  font-size: 0.92rem;
  line-height: 1.25;
}

.social-copy span {
  color: var(--gold);
}

.comparison-section {
  margin-top: 30px;
  text-align: center;
}

.comparison-section h2 {
  margin: 14px 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 11vw, 3.4rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.comparison-subtitle {
  margin: 10px auto 0;
  max-width: 24rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.comparison-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.comparison-card {
  padding: 16px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(10, 10, 10, 0.94) 100%);
  box-shadow: var(--shadow-deep);
  text-align: left;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.comparison-card-negative {
  border: 1px solid rgba(255, 77, 77, 0.18);
}

.comparison-card-positive {
  border: 1px solid rgba(255, 196, 0, 0.28);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.72),
    0 0 26px rgba(255, 196, 0, 0.12);
}

.comparison-visual {
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.2)),
    #0b0b0b;
}

.comparison-card-negative .comparison-visual {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.comparison-card-positive .comparison-visual {
  box-shadow:
    inset 0 0 0 1px rgba(255, 196, 0, 0.12),
    0 0 24px rgba(255, 196, 0, 0.08);
}

.comparison-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.comparison-card-negative img {
  filter: grayscale(0.28) saturate(0.72) brightness(0.64);
}

.comparison-card-positive img {
  filter:
    saturate(1.08)
    contrast(1.02)
    drop-shadow(0 0 20px rgba(255, 196, 0, 0.12));
}

.comparison-card h3 {
  margin: 14px 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-card-negative h3 {
  color: #ff7272;
}

.comparison-card-positive h3 {
  color: var(--gold);
}

.comparison-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: #ccc;
  font-size: 0.94rem;
  line-height: 1.45;
}

.comparison-list-positive {
  color: #fff;
}

.comparison-list-positive li:nth-child(2),
.comparison-list-positive li:nth-child(3) {
  color: #ffe28a;
}

.comparison-cta {
  margin-top: 20px;
}

.comparison-cta p {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.founders-section {
  margin-top: 30px;
  padding: 22px 16px 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(255, 196, 0, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(7, 7, 7, 0.94) 100%);
  box-shadow: var(--shadow-deep);
}

.section-kicker {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 0, 0.24);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founders-section h2 {
  margin: 14px 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.founders-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.founders-copy strong {
  color: var(--gold);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.founder-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 0, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.92) 100%);
  text-align: left;
  min-height: 100%;
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.founder-card {
  position: relative;
}

.founder-card img {
  width: calc(100% - 20px);
  margin: 10px auto 0;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid rgba(255, 196, 0, 0.78);
  border-radius: 18px 18px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.12) 0%, rgba(255, 196, 0, 0.04) 100%),
    #080808;
  box-shadow:
    inset 0 0 0 1px rgba(255, 243, 204, 0.12),
    0 16px 28px rgba(0, 0, 0, 0.3);
  clip-path: polygon(10% 0, 90% 0, 100% 10%, 100% 84%, 90% 100%, 10% 100%, 0 90%, 0 10%);
}

.founder-card h3 {
  margin: 10px 12px 0;
  font-size: 0.98rem;
  color: var(--text);
  min-height: 2.2em;
}

.founder-card p {
  margin: 8px 12px 14px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  min-height: 4.4em;
}

.founders-close {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
}

.cta-button-secondary {
  margin-top: 18px;
}

.video-section {
  margin-top: 28px;
}

.video-section h2 {
  margin: 0 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.9rem, 8vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 196, 0, 0.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(8, 8, 8, 0.94) 100%);
  box-shadow: var(--shadow-deep);
}

.landing-video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

.footer-visual {
  position: relative;
  margin-top: 28px;
  padding-bottom: 10px;
  text-align: center;
}

.footer-orb {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.2) 0%, rgba(255, 196, 0, 0) 68%);
  filter: blur(4px);
}

.footer-message {
  position: absolute;
  inset: 50% 0 auto;
  transform: translateY(-50%);
  margin: 0;
  padding: 0 18px;
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 18px 40px rgba(255, 196, 0, 0.26),
      0 0 0 0 rgba(255, 196, 0, 0.6);
  }
  70% {
    transform: scale(1.04);
    box-shadow:
      0 20px 44px rgba(255, 196, 0, 0.32),
      0 0 0 15px rgba(255, 196, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 18px 40px rgba(255, 196, 0, 0.26),
      0 0 0 0 rgba(255, 196, 0, 0);
  }
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 480px) {
  .brand-lockup {
    gap: 2px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand-title {
    margin-left: -24px;
  }

  .content-block {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-top-copy {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-visual {
    min-height: 58svh;
    margin-top: -124px;
  }
}

@media (min-width: 768px) {
  .landing-shell {
    padding-top: 0;
    padding-bottom: 72px;
  }

  .hero-panel {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
  }

  .brand-lockup {
    gap: 4px;
    padding-top: 10px;
  }

  .brand-title {
    margin-left: -28px;
  }

  .brand-mark img {
    width: 150px;
    height: 150px;
    margin: -16px -14px -22px 0;
  }

  .hero-visual {
    min-height: 560px;
    margin-top: -142px;
  }

  .main-headline {
    font-size: clamp(4.8rem, 10vw, 6.8rem);
  }

  .cta-button {
    max-width: 520px;
  }

  .benefits-row {
    flex-wrap: nowrap;
  }

  .social-proof {
    max-width: 480px;
  }

  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .comparison-card-negative:hover {
    opacity: 0.82;
  }

  .comparison-card-positive:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow:
      0 34px 70px rgba(0, 0, 0, 0.76),
      0 0 34px rgba(255, 196, 0, 0.18);
  }

  .founders-section {
    padding: 28px 22px 22px;
  }
}

@media (min-width: 1024px) {
  .landing-shell {
    padding-top: 0;
    padding-bottom: 96px;
  }

  .hero-panel {
    width: 100%;
  }

  .brand-lockup {
    gap: 10px;
    padding-top: 16px;
  }

  .brand-mark img {
    width: 178px;
    height: 178px;
    margin: -18px -18px -28px 0;
  }

  .brand-title {
    margin-left: -24px;
  }

  .brand-title strong {
    font-size: clamp(2.2rem, 3.1vw, 3.2rem);
  }

  .brand-title span {
    font-size: 0.92rem;
  }

  .brand-divider {
    width: min(76%, 540px);
    margin-top: 14px;
  }

  .hero-top-copy {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 16px;
  }

  .main-headline {
    font-size: clamp(6rem, 8vw, 7.8rem);
    line-height: 0.9;
  }

  .headline-top {
    margin-bottom: 16px;
  }

  .headline-bottom {
    gap: 12px;
    margin-top: 12px;
    font-size: 1em;
  }

  .headline-voice-inline {
    margin-left: -10px;
    transform: translateY(8px);
  }

  .main-headline em {
    font-size: 1.18em;
    transform: translateY(12px);
  }

  .hero-visual {
    min-height: 710px;
    margin-top: -188px;
  }

  .hero-mascot {
    width: min(100%, 960px);
    margin: 0 auto;
  }

  .benefit-ticker {
    margin-top: -72px;
  }

  .benefit-ticker-track {
    font-size: 1.3rem;
    padding: 14px 0;
  }

  .content-block {
    max-width: 980px;
    margin: 16px auto 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .copy-stack {
    max-width: 46rem;
  }

  .copy-stack p {
    font-size: 1.06rem;
  }

  .cta-button {
    max-width: 560px;
    font-size: 1.06rem;
  }

  .benefits-row {
    gap: 0;
    font-size: 0.92rem;
  }

  .social-proof {
    max-width: 620px;
    padding: 18px 18px;
  }

  .comparison-section {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }

  .comparison-grid {
    gap: 20px;
    margin-top: 22px;
  }

  .comparison-card {
    padding: 20px;
    border-radius: 22px;
  }

  .comparison-card h3 {
    font-size: 2.3rem;
  }

  .comparison-list {
    font-size: 1rem;
  }

  .founders-section {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 28px 26px;
  }

  .founders-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .founder-card p {
    min-height: 5.2em;
  }

  .video-section {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1360px) {
  .hero-top-copy {
    max-width: 1080px;
  }

  .main-headline {
    font-size: 8.2rem;
  }

  .hero-visual {
    min-height: 780px;
    margin-top: -210px;
  }

  .hero-mascot {
    width: min(100%, 1040px);
  }

  .content-block,
  .comparison-section,
  .founders-section {
    max-width: 1040px;
  }

  .video-section {
    max-width: 920px;
  }
}
