html {
  scroll-behavior: smooth;
}

/* GLOBAL */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

section {
  padding: 90px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.logo-link {
  display: inline-block;
  cursor: pointer;
}

.logo-link:hover .logo {
  transform: scale(1.03);
}

.intro {
  background: linear-gradient(
    to bottom,
    rgba(8, 12, 18, 0.16),
    rgba(8, 12, 18, 0.26)
  );
}

.features-section {
  padding-top: 70px;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 14, 0.34),
    rgba(14, 14, 20, 0.46)
  );
}

.world-showcase {
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(
    to bottom,
    rgba(7, 12, 18, 0.36),
    rgba(7, 12, 18, 0.5)
  );
}

.vision {
  background: linear-gradient(
    to bottom,
    rgba(12, 10, 8, 0.26),
    rgba(18, 14, 10, 0.38)
  );
}

.community {
  background: linear-gradient(
    to bottom,
    rgba(10, 12, 16, 0.34),
    rgba(18, 20, 26, 0.5)
  );
}

h1,
h2,
h3,
h4,
nav a {
  font-family: 'Cinzel', serif;
}

.features,
.world,
.vision,
.community,
.features-heading {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ALTERNATING SECTION DEPTH */
section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.02);
}

.page-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.76),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.76)
  );
}

.vision p {
  max-width: 680px;
}

/* GLOBAL VIDEO BACKGROUND */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.68) saturate(1.08);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.46);
  padding: 15px 20px;
  text-align: center;
  z-index: 1000;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    padding 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

nav.nav-scrolled {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

nav a {
  color: #fdf5c9;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  position: relative;
  transition: color 0.25s ease, opacity 0.25s ease;
  opacity: 0.86;
}

nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #c99a57, #f3d190);
  border-radius: 999px;
  transition: width 0.25s ease;
}

nav a:hover,
nav a.active {
  color: #ffe066;
  opacity: 1;
}

nav a:hover::after,
nav a.active::after {
  width: 75%;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
}

.hero-overlay {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 58%,
    rgba(255, 200, 120, 0.1),
    rgba(255, 190, 90, 0.05),
    transparent 62%
  );
  animation: pulseGlow 6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.58;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 0.58;
    transform: scale(1);
  }
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo,
.hero-title,
.hero-tagline,
.hero-buttons-entrance {
  opacity: 0;
  animation: heroRise 0.9s ease forwards;
}

.hero-logo { animation-delay: 0.15s; }
.hero-title { animation-delay: 0.35s; }
.hero-tagline { animation-delay: 0.55s; }
.hero-buttons-entrance { animation-delay: 0.75s; }

.logo {
  max-width: 520px;
  width: 100%;
  margin-bottom: 28px;
  animation-name: heroRise, floatSlow;
  animation-duration: 0.9s, 6s;
  animation-delay: 0.15s, 1.2s;
  animation-timing-function: ease, ease-in-out;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
  filter:
    drop-shadow(0 0 18px rgba(255, 215, 130, 0.45))
    drop-shadow(0 0 36px rgba(255, 180, 80, 0.28));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.03);
}

h1 {
  font-size: 4.15em;
  margin: 10px 0 10px;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.2),
    0 0 25px rgba(255, 200, 120, 0.15);
}

.tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 18px auto 10px;
  color: #e6d3a3;
  max-width: 520px;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.4),
    0 0 12px rgba(255, 210, 140, 0.15);
}

.tagline::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;

  margin: 14px auto 0;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 160, 90, 0.6),
    transparent
  );

  opacity: 0.7;
}

/* TYPOGRAPHY */
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d7bc82;
  opacity: 0.9;
}

h2 {
  font-size: 2.45em;
  margin-bottom: 14px;
  color: #f6f0df;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

h3 {
  font-family: 'Cinzel', serif;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  line-height: 1.85;
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto 16px;
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: 999px;
  margin: 10px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.hero-buttons .btn-crest img {
  vertical-align: middle;
}

.hero-buttons .btn-secondary {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  align-self: center;
}

.btn-primary {
  position: relative;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;

  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;

  color: #fff;

  background: linear-gradient(
    145deg,
    #b8894f,
    #e0b76f
  );

  border: 1px solid rgba(255, 230, 160, 0.35);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -2px 6px rgba(0, 0, 0, 0.25),
    0 6px 18px rgba(0, 0, 0, 0.35);

  transition: all 0.25s ease;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.35),
    transparent 40%
  );

  opacity: 0.6;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.35),
    0 10px 28px rgba(255, 200, 120, 0.45),
    0 0 18px rgba(255, 180, 80, 0.25);
}

.btn-secondary {
  position: relative;
  padding: 14px 30px;
  border-radius: 999px;

  font-weight: 700;
  letter-spacing: 0.05em;

  color: #f4ead5;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.35);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 14px rgba(0, 0, 0, 0.25);

  transition: all 0.25s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.05);

  background: rgba(255, 255, 255, 0.12);

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.35),
    0 0 14px rgba(255, 255, 255, 0.2);
}

.btn-crest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 10px;
  line-height: 0;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(-4px);
  transition: transform 0.28s ease, filter 0.28s ease;
}

@keyframes crestPulse {
  0% { filter: drop-shadow(0 0 10px rgba(80, 220, 140, 0.2)); }
  50% { filter: drop-shadow(0 0 18px rgba(80, 220, 140, 0.35)); }
  100% { filter: drop-shadow(0 0 10px rgba(80, 220, 140, 0.2)); }
}

.btn-crest img {
  animation: none; /* stop green pulsing */
  filter:
    drop-shadow(0 0 8px rgba(255, 200, 120, 0.15))
    drop-shadow(0 0 16px rgba(255, 180, 80, 0.08));
}

.btn-crest img {
  display: block;
  width: 300px;
  height: auto;
  filter:
    drop-shadow(0 0 10px rgba(70, 185, 120, 0.18))
    drop-shadow(0 0 22px rgba(70, 185, 120, 0.1));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.btn-crest:hover {
  transform: translateY(-8px) scale(1.04);
}

.btn-crest:hover img {
  filter:
    drop-shadow(0 0 14px rgba(255, 210, 140, 0.5))
    drop-shadow(0 0 28px rgba(255, 190, 90, 0.3))
    drop-shadow(0 0 48px rgba(255, 170, 70, 0.18));
}

.btn-crest:focus-visible {
  outline: none;
}

.btn-crest:focus-visible img {
  filter:
    drop-shadow(0 0 0 rgba(0, 0, 0, 0))
    drop-shadow(0 0 0 rgba(0, 0, 0, 0))
    drop-shadow(0 0 0 rgba(0, 0, 0, 0))
    drop-shadow(0 0 16px rgba(110, 255, 170, 0.45));
}

.founders-btn:hover img {
  filter:
    drop-shadow(0 0 14px rgba(255, 210, 140, 0.5))
    drop-shadow(0 0 28px rgba(255, 190, 90, 0.3))
    drop-shadow(0 0 48px rgba(255, 170, 70, 0.18));
}

.founders-btn img {
  animation: none; /* stop green pulsing */
  filter:
    drop-shadow(0 0 8px rgba(255, 200, 120, 0.15))
    drop-shadow(0 0 16px rgba(255, 180, 80, 0.08));
}


/* REVEALS */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-stagger-1 { transition-delay: 0.04s; }
.reveal-stagger-2 { transition-delay: 0.12s; }
.reveal-stagger-3 { transition-delay: 0.2s; }
.reveal-stagger-4 { transition-delay: 0.28s; }

/* FEATURES */
.features-heading {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 34px;
  max-width: 1320px;
  margin: 0 auto 70px auto;
  padding: 8px 28px 0;
  align-items: start;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 32px 26px 30px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 28, 0.74),
    rgba(10, 10, 14, 0.84)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.features {
  align-items: stretch;
}

.feature-card {
  height: 100%;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  opacity: 0.9;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-icon {
  margin-bottom: 14px;
}

.feature-icon img {
  width: 125px;
  height: 125px;
  object-fit: contain;
  transform-origin: center;

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.feature-card:hover .feature-icon img {
  transform: scale(1.1) rotate(2deg);
}

.feature-card h3 {
  font-size: 1.9rem;
  margin: 0 0 8px 0;
  color: #f6f0df;
  letter-spacing: 0.02em;
}

.feature-sub {
  font-family: 'Inter', sans-serif;
  margin: 0 0 18px 0;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
}

.feature-card p:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: none;
  margin-bottom: 0;
}

.combat-card::before {
  background: linear-gradient(90deg, rgba(192, 112, 84, 0.95), rgba(255, 191, 128, 0.95));
}

.skills-card::before {
  background: linear-gradient(90deg, rgba(105, 168, 95, 0.95), rgba(196, 235, 133, 0.95));
}

.world-card::before {
  background: linear-gradient(90deg, rgba(91, 147, 211, 0.95), rgba(147, 217, 255, 0.95));
}

.living-card::before {
  background: linear-gradient(90deg, rgba(198, 146, 86, 0.95), rgba(255, 214, 153, 0.95));
}

.combat-card:hover {
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.5),
    0 0 26px rgba(192, 112, 84, 0.18);
}

.skills-card:hover {
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.5),
    0 0 26px rgba(132, 201, 101, 0.18);
}

.world-card:hover {
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.5),
    0 0 26px rgba(100, 173, 232, 0.18);
}

.living-card:hover {
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.5),
    0 0 26px rgba(227, 178, 110, 0.18);
}

.combat-card .feature-icon img {
  filter:
    drop-shadow(0 0 14px rgba(192, 112, 84, 0.42))
    drop-shadow(0 0 28px rgba(192, 112, 84, 0.18));
}

.skills-card .feature-icon img {
  filter:
    drop-shadow(0 0 14px rgba(132, 201, 101, 0.42))
    drop-shadow(0 0 28px rgba(132, 201, 101, 0.18));
}

.world-card .feature-icon img {
  filter:
    drop-shadow(0 0 14px rgba(100, 173, 232, 0.42))
    drop-shadow(0 0 28px rgba(100, 173, 232, 0.18));
}

.living-card .feature-icon img {
  filter:
    drop-shadow(0 0 14px rgba(227, 178, 110, 0.42))
    drop-shadow(0 0 28px rgba(227, 178, 110, 0.18));
}

.combat-card:hover .feature-icon img {
  filter:
    drop-shadow(0 0 18px rgba(192, 112, 84, 0.62))
    drop-shadow(0 0 36px rgba(192, 112, 84, 0.28));
}

.skills-card:hover .feature-icon img {
  filter:
    drop-shadow(0 0 18px rgba(132, 201, 101, 0.62))
    drop-shadow(0 0 36px rgba(132, 201, 101, 0.28));
}

.world-card:hover .feature-icon img {
  filter:
    drop-shadow(0 0 18px rgba(100, 173, 232, 0.62))
    drop-shadow(0 0 36px rgba(100, 173, 232, 0.28));
}

.living-card:hover .feature-icon img {
  filter:
    drop-shadow(0 0 18px rgba(227, 178, 110, 0.62))
    drop-shadow(0 0 36px rgba(227, 178, 110, 0.28));
}

/* WORLD */
.world {
  margin-bottom: 40px;
}

.world-figure {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 24px;
  border-radius: 24px;
  background: rgba(10, 12, 18, 0.34);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.world-slideshow {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 6s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  transform: scale(1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  position: relative;
  transform: scale(1.03);
  pointer-events: auto;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(8, 10, 14, 0.45);
  color: #f4ead5;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.slide-arrow:hover {
  background: rgba(8, 10, 14, 0.72);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-50%) scale(1.06);
}

.slide-prev {
  left: 16px;
}

.slide-next {
  right: 16px;
}

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slide-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slide-dot.active,
.slide-dot:hover {
  background: #e0b76f;
  transform: scale(1.15);
}

.world-figure figcaption {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.02em;
}

/* COMMUNITY */
.community-buttons {
  margin-top: 20px;
}

/* FOOTER */
footer {
  background: black;
  padding: 25px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: #e1c48a;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  text-shadow: 0 0 6px rgba(255, 200, 120, 0.25);
}

.footer-legal {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.social-footer {
  margin-top: 15px;
}

.social-footer a img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin: 0 6px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-footer a:hover img {
  transform: scale(1.1);
  filter: brightness(1.4);
}

.divider {
  color: #c79b52;
  font-size: 1rem;
  margin: 0 4px;
  opacity: 0.85;
}

.community {
  position: relative;
}

.community::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(227, 178, 110, 0.12),
    transparent 48%
  );
  pointer-events: none;
}

.community h2 {
  margin-bottom: 18px;
}

.community-buttons {
  margin-top: 28px;
}

.community .btn-primary,
.community .btn-secondary {
  padding: 15px 30px;
  font-size: 0.98rem;
}

.community .btn-primary {
  box-shadow:
    0 0 18px rgba(255, 200, 120, 0.35),
    0 0 36px rgba(255, 180, 80, 0.15);
}

.community .btn-primary:hover {
  transform: translateY(-2px) scale(1.08);
}

.community .btn-secondary:hover {
  transform: translateY(-2px) scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .logo {
    max-width: 330px;
  }

  .hero-overlay::before {
    width: 400px;
    height: 400px;
  }

  .world-figure {
    padding: 16px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 70px 18px;
  }

  nav a {
    margin: 0 9px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  .tagline {
    font-size: 1rem;
    line-height: 1.65;
  }

  p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .logo {
    max-width: 320px;
  }

  .features {
    padding: 0 18px;
  }

  .feature-card {
    min-height: unset;
    padding: 28px 22px 24px;
  }

  .feature-card h3 {
    font-size: 1.65rem;
  }

  .world-showcase {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .slide-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .hero-buttons {
  gap: 14px;
}

.btn-crest img {
  width: 180px;
}

.hero-buttons .btn-secondary {
  padding: 13px 24px;
}
}