/* ========================================
   Homepage — HoHeTo Kyle
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&family=Instrument+Sans:wght@400;500;600&display=swap');

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Override variables.css dark-page globals ── */
html {
  scroll-behavior: smooth;
  overflow: auto !important;
  height: auto !important;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: #ffffff !important;
  color: #111111 !important;
  overflow: auto !important;
  height: auto !important;
  -webkit-font-smoothing: antialiased;
}

/* Reset teal link colour set by variables.css */
a {
  color: inherit;
  text-decoration: none;
}

:root {
  --color-primary: #08D2C1;
  --color-primary-alt: #00D7CC;
  --color-primary-dark: #06b5a6;
  --color-primary-glow: rgba(8, 210, 193, 0.35);
  --color-text-dark: #111111;
  --color-text-muted: #6D6D6D;
  --font-display: 'Exo 2', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --nav-height: 76px;
  --max-width: 1200px;
  --section-pad: 80px;
  --transition-normal: 0.25s ease;
  --transition-fast: 0.15s ease;
}

/* ══════════════════════════════════════
   HERO SECTION
   Badge: Exo2 Medium, border teal, radius 10px
   H1: Exo2 SemiBold 48px, lh 59px, W:848
   CTA: W:191 H:39, fill #00D7CC, radius 10px
══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 776px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: #041a18;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(4, 20, 18, 0.15) 0%,
      rgba(4, 20, 18, 0.05) 50%,
      rgba(4, 20, 18, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
  max-width: var(--max-width);
  padding: 80px 24px 0;
}

/* Figma: Frame 3 — W:231 H:24, Exo 2 Medium,
   border outline teal, radius 10px */
.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 16px;
  border: 1px solid var(--color-primary-alt);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary-alt);
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: transparent;
}

/* Figma: Exo 2 SemiBold 48px, line-height 59px,
   W:848, white, centered */
.hero__heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 59px;
  color: #ffffff;
  text-align: center;
  max-width: 848px;
}

/* Figma: W:191 H:39, fill #00D7CC,
   radius 10px, padding 10px 20px */
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 191px;
  height: 39px;
  padding: 10px 20px;
  background: var(--color-primary-alt);
  color: #041a18;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-normal),
    box-shadow var(--transition-normal),
    transform var(--transition-fast);
}

.hero__cta:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 24px var(--color-primary-glow);
  transform: translateY(-2px);
  color: #041a18;
}

.hero__cta:active {
  transform: translateY(0);
}

/* ══════════════════════════════════════
   WHY PEOPLE LOVE SUMMONING CREATURES
   Heading:  Exo 2 Bold 40px #000, W:750 H:48
   Subtext:  Instrument Sans Regular 20px
             lh:32px #6D6D6D W:776
   Cards:    W:377 H:289, radius:20px
             bg #FFFFFF, drop shadow
             teal layer (#00D7CC) offset -6px left, +6px bottom
   Card title:  Exo 2 SemiBold 20px #000
   Card body:   Instrument Sans Regular 18px #6D6D6D
   Icons:    108×85px SVG
══════════════════════════════════════ */
.features {
  background: #ffffff;
  padding: var(--section-pad) 24px;
}

.features__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.features__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Figma: Exo 2 Bold 40px #000 W:750 H:48 */
.features__heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  max-width: 750px;
  text-align: center;
}

/* Figma: Instrument Sans Regular 20px lh:32px #6D6D6D W:776 */
.features__subtext {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #6D6D6D;
  max-width: 776px;
  text-align: center;
}

.features__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  padding: 12px;
  /* space for teal corners to show without clipping */
}

/* Figma: Rectangle 8 (teal, 177.01°) behind Rectangle 9 (white, 180°)
   — ~3° rotation difference makes teal poke out at all four corners */
.feature-card {
  position: relative;
}

/* Teal background rectangle — same size, rotated ~3deg so corners peek out */
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #00D7CC;
  border-radius: 20px;
  z-index: 0;
  transform: rotate(-3deg);
  transform-origin: center;
}

/* White card on top — straight, no rotation */
.feature-card__inner {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  min-height: 289px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.feature-card:hover .feature-card__inner {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Icon container — matches SVG native size 108×85 */
.feature-card__icon {
  width: 108px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card__icon img,
.feature-card__icon svg {
  width: 108px;
  height: 85px;
  object-fit: contain;
}

/* Figma: Exo 2 SemiBold 20px #000000 */
.feature-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
}

/* Figma: Instrument Sans Regular 18px #6D6D6D */
.feature-card__desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #6D6D6D;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__heading {
    font-size: 40px;
    line-height: 50px;
    max-width: 680px;
  }

  .features__heading {
    font-size: 34px;
  }

  .features__subtext {
    font-size: 17px;
  }

  .feature-card__desc {
    font-size: 15px;
  }

  .feature-card__title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 560px;
  }

  .hero__heading {
    font-size: 28px;
    line-height: 38px;
    max-width: 100%;
  }

  .hero__badge {
    font-size: 11px;
  }

  .hero__content {
    padding: 48px 20px 0;
  }

  .hero__cta {
    width: 180px;
    font-size: 13px;
  }

  .features {
    padding: 56px 20px;
  }

  .features__heading {
    font-size: 26px;
  }

  .features__subtext {
    font-size: 15px;
    line-height: 26px;
  }

  .features__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════
   HOW IT WORKS — "Create Your Creature In Seconds"
   Background: white (#ffffff)
   Heading: Exo 2 Bold, dark, centered
   Subtext: Instrument Sans Regular, #6D6D6D
   Steps: 3 cols with dashed arrow connectors
   Step title: Exo 2 SemiBold 20px #111
   Step desc: Instrument Sans Regular 16px #6D6D6D
══════════════════════════════════════ */
.how-it-works {
  background: #f5f5f5;
  padding: var(--section-pad) 24px;
}

.how-it-works__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

.how-it-works__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Exo 2 Bold ~36–40px, dark */
.how-it-works__heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  text-align: center;
  /* Figma shows underline on heading */
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

/* Instrument Sans Regular 16px #6D6D6D */
.how-it-works__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #6D6D6D;
  max-width: 573px;
  text-align: center;
}

/* ── Steps Row ── */
.how-it-works__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 100%;
}

/* Individual step */
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 280px;
  gap: 16px;
}

/* Image container */
.how-step__img-wrap {
  width: 200px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-step__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Bordered card for creature card step */
.how-step__img-wrap--card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how-step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  line-height: 1.3;
}

.how-step__desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #6D6D6D;
  line-height: 1.55;
  max-width: 240px;
}

/* ── Dashed Arrow Connector ── */
.how-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  /* vertically centered to the image height (~190px / 2 = 95px from top of step) */
  padding-top: 80px;
  flex-shrink: 0;
  width: 80px;
}

.how-step__arrow img {
  width: 64px;
  height: auto;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .how-it-works__steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .how-step__arrow {
    padding-top: 0;
    transform: rotate(90deg);
    width: auto;
    height: 40px;
  }

  .how-it-works__heading {
    font-size: 28px;
  }

  .how-it-works__subtext {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 56px 20px;
  }

  .how-it-works__heading {
    font-size: 24px;
  }
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how-it-works {
  background: #f5f5f5;
  padding: var(--section-pad) 24px;
}

.how-it-works__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

.how-it-works__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.how-it-works__heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.how-it-works__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #6D6D6D;
  max-width: 573px;
  text-align: center;
}

.how-it-works__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 280px;
  gap: 16px;
}

.how-step__img-wrap {
  width: 200px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-step__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how-step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  line-height: 1.3;
}

.how-step__desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #6D6D6D;
  line-height: 1.55;
  max-width: 240px;
}

.how-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  flex-shrink: 0;
  width: 80px;
}

.how-step__arrow img {
  width: 64px;
  height: auto;
}

@media (max-width: 900px) {
  .how-it-works__steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .how-step__arrow {
    padding-top: 0;
    transform: rotate(90deg);
    width: auto;
    height: 40px;
  }

  .how-it-works__heading {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 56px 20px;
  }

  .how-it-works__heading {
    font-size: 24px;
  }
}

/* ══════════════════════════════════════
   CREATURES CAROUSEL
══════════════════════════════════════ */
.creatures-carousel {
  position: relative;
  width: 100%;
  background: #031a18;
  overflow: hidden;
}

.creatures-carousel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.creatures-carousel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.creatures-carousel__inner {
  position: relative;
  z-index: 1;
  padding: 56px 0 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.creatures-carousel__heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.25;
}

.creatures-carousel__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.carousel-viewport {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-card {
  position: absolute;
  top: 50%;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1), height 0.45s cubic-bezier(0.4, 0, 0.2, 1), left 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, left, width, height, opacity;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.carousel-card[data-slot="2"] {
  width: 340px;
  height: 540px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 0 0 2px rgba(8, 210, 193, 0.7), 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(8, 210, 193, 0.2);
}

.carousel-card[data-slot="1"] {
  width: 274px;
  height: 480px;
  left: calc(50% - 240px);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.82;
  z-index: 6;
}

.carousel-card[data-slot="3"] {
  width: 274px;
  height: 480px;
  left: calc(50% + 240px);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.82;
  z-index: 6;
}

.carousel-card[data-slot="0"] {
  width: 210px;
  height: 400px;
  left: calc(50% - 450px);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.45;
  z-index: 2;
}

.carousel-card[data-slot="4"] {
  width: 210px;
  height: 400px;
  left: calc(50% + 450px);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.45;
  z-index: 2;
}

.carousel-card[data-slot="hidden"] {
  left: 50%;
  width: 210px;
  height: 400px;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: none;
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.carousel-btn:hover {
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.94);
}

.carousel-btn img {
  width: 44px;
  height: 44px;
}

@media (max-width: 760px) {
  .carousel-viewport {
    height: 480px;
  }

  .carousel-card[data-slot="0"],
  .carousel-card[data-slot="4"] {
    display: none;
  }

  .carousel-card[data-slot="1"] {
    width: 220px;
    height: 380px;
    left: calc(50% - 190px);
    opacity: 0.65;
  }

  .carousel-card[data-slot="3"] {
    width: 220px;
    height: 380px;
    left: calc(50% + 190px);
    opacity: 0.65;
  }

  .carousel-card[data-slot="2"] {
    width: 270px;
    height: 430px;
  }

  .creatures-carousel__heading {
    font-size: 26px;
  }
}

@media (max-width: 500px) {
  .carousel-viewport {
    height: 400px;
  }

  .carousel-card[data-slot="1"] {
    width: 170px;
    height: 310px;
    left: calc(50% - 160px);
    opacity: 0.4;
  }

  .carousel-card[data-slot="3"] {
    width: 170px;
    height: 310px;
    left: calc(50% + 160px);
    opacity: 0.4;
  }

  .carousel-card[data-slot="2"] {
    width: 220px;
    height: 360px;
  }
}

/* ══════════════════════════════════════
   COLLECTION HUB
   Images already contain their own label text,
   so .trope-item is just an image in a centered cell.
   4-col grid, items centered, no extra label spans.
   Background: #F5F5F5 (matches Figma page bg)
══════════════════════════════════════ */
.collection-hub {
  background: #F5F5F5;
  padding: 72px 40px 80px;
}

.collection-hub__inner {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.collection-hub__heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #111111;
  text-align: center;
  line-height: 1.25;
}

.collection-hub__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #6D6D6D;
  text-align: center;
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* 4-column equal grid */
.collection-hub__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 0;
  width: 100%;
}

/* Each trope: centered image, no extra label */
.trope-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  transition: transform var(--transition-normal);
  cursor: default;
}

.trope-item:hover {
  transform: translateY(-5px);
}

/* Image fills the cell — label text is baked into the image */
.trope-item__img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .collection-hub__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 0;
  }

  .collection-hub__heading {
    font-size: 26px;
  }

  .collection-hub {
    padding: 48px 24px 56px;
  }
}

@media (max-width: 480px) {
  .trope-item__img {
    max-width: 150px;
  }
}

/* ══════════════════════════════════════
   CTA BANNER
   Dark teal rounded container on #F5F5F5 background
   Rounded corners ~20px, full bg image with sparkles
══════════════════════════════════════ */
.cta-banner-section {
  background: #F5F5F5;
  padding: 0 40px 72px;
}

.cta-banner {
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 18, 16, 0.5);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 52px 40px;
}

.cta-banner__heading {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.cta-banner__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  max-width: 460px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--color-primary);
  color: #041a1a;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-fast);
}

.cta-banner__btn:hover {
  background: #0ae0cd;
  box-shadow: 0 6px 24px rgba(8, 210, 193, 0.5);
  transform: translateY(-2px);
  color: #041a1a;
}

.cta-banner__btn:active {
  transform: translateY(0);
}

.cta-banner__btn-icon {
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 768px) {
  .cta-banner__heading {
    font-size: 22px;
  }

  .cta-banner__subtext {
    font-size: 14px;
  }

  .cta-banner__content {
    padding: 36px 24px;
  }

  .cta-banner-section {
    padding: 0 20px 56px;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    border-radius: 14px;
  }
}

/* ══════════════════════════════════════
   SITE FOOTER
   Figma specs:
   - Background: #EAEAEA (light grey)
   - Bottom strip: #1a1a1a (near-black) with centered copyright
   - 4-column layout:
       Col 1: Logo + tagline description
       Col 2: Quick Links (nav)
       Col 3: Quick Links (legal/support)
       Col 4: Newsletter signup
   - Column headings: Exo 2 SemiBold ~16px #111
   - Links: Instrument Sans Regular ~14px #555, hover teal
   - Newsletter input: light border, placeholder "Enter Email"
   - Send button: teal square with white paper-plane icon
   - Social icons: Facebook, Twitter, Instagram — muted grey
   - Copyright strip: dark bg, Instrument Sans ~13px white/muted
══════════════════════════════════════ */
.site-footer {
  background: #EAEAEA;
}

/* ── Main Footer Body ── */
.footer__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px 48px;
  align-items: start;
}

/* ── Col 1: Brand ── */
.footer__brand {}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

.footer__logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.04em;
}

.footer__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  line-height: 1.65;
  max-width: 280px;
}

/* ── Col 2 & 3: Link Columns ── */
.footer__links-col {}

.footer__col-heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__links li a:hover {
  color: var(--color-primary);
}

/* ── Col 4: Newsletter ── */
.footer__newsletter {}

.footer__newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
}

.footer__newsletter-input {
  flex: 1;
  padding: 11px 14px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #333;
}

.footer__newsletter-input::placeholder {
  color: #94A3B8;
}

.footer__newsletter-btn {
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-normal);
}

.footer__newsletter-btn:hover {
  background: var(--color-primary-dark);
}

.footer__newsletter-btn img,
.footer__newsletter-btn svg {
  width: 18px;
  height: 18px;
}

/* ── Social Icons ── */
.footer__socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer__social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: color var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}

.footer__social-link:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── Copyright Strip ── */
.footer__bottom {
  background: #1a1a1a;
  padding: 14px 40px;
  text-align: center;
}

.footer__copyright {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__body {
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__desc {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer__body {
    grid-template-columns: 1fr;
    padding: 40px 24px 36px;
    gap: 28px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    padding: 12px 20px;
  }
}

/* slider */

.carousel {
  width: 100%;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform .5s ease;
}

.slide {
  min-width: 100%;
  height: 776px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
}

.slide:nth-child(1) {
  background: #08d2c1;
}

.slide:nth-child(2) {
  background: #08d2c1;
}

.slide:nth-child(3) {
  background: #00a8a8;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  visibility: hidden;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.dot.active {
  background: #08d2c1;
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Float Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Subtle Pulse */
@keyframes subtlePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.animate-pulse {
  animation: subtlePulse 3s ease-in-out infinite;
}

/* Text Entry Animation */
@keyframes textReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__content > * {
  animation: textReveal 0.8s ease-out forwards;
  opacity: 0;
}

.hero__badge { animation-delay: 0.1s; }
.hero__heading { animation-delay: 0.3s; }
.hero__cta { animation-delay: 0.5s; }

/* Scale on Hover for cards */
.feature-card__inner, .how-step, .trope-item {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
}

.trope-item:hover {
  transform: scale(1.08) rotate(2deg);
  z-index: 5;
}

.how-step:hover .how-step__img-wrap {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}