/* Design tokens */
:root {
  --color-bg-page: #ffffff;
  --color-bg-hero: #ffffff;
  --color-blue: #3f9fff;
  --color-black: #000000;
  --color-text-muted: rgba(0, 0, 0, 0.7);

  --color-yellow-bg: #fffceb;
  --color-yellow-icon: #ffe020;
  --color-yellow-text: #947f00;

  --color-pink-bg: #ffecf6;
  --color-pink-icon: #fea5d5;
  --color-pink-text: #ed4ca3;

  --color-teal-bg: #eafffc;
  --color-teal-icon: #47ecd5;
  --color-teal-text: #19a08d;

  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --content-max: 1440px;
  --page-padding-x: clamp(20px, 5vw, 40px);
  --mission-overlap: clamp(76px, 32vw, 190px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-black);
  background: var(--color-bg-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

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

.page {
  width: 100%;
  min-height: 100vh;
}

.screen {
  width: 100%;
}

/* Logo — always above hero title */
.logo {
  display: inline-block;
  margin-bottom: clamp(16px, 4vw, 24px);
  line-height: 0;
  text-decoration: none;
}

.logo__image {
  display: block;
  width: min(198px, 49vw);
  height: auto;
  aspect-ratio: 198 / 48;
}

/* Hero */
.hero {
  width: 100%;
  background: var(--color-bg-hero);
  padding: clamp(24px, 6vw, 40px) var(--page-padding-x) clamp(48px, 12vw, 64px);
  padding-right: 0;
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding-right: clamp(100px, 44vw, 200px);
}

.hero__title {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-size: clamp(26px, 10vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

.hero__soon {
  margin: clamp(4px, 1.5vw, 8px) 0 0;
  width: 100%;
  max-width: 100%;
  font-size: clamp(26px, 10vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-blue);
  overflow-wrap: break-word;
}
.rocket-emoji {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle;
  animation: rocketFloat 2s ease-in-out infinite alternate;
}
@keyframes rocketFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(6px, -10px) rotate(5deg);
  }
}
.hero__subtitle {
  margin: clamp(16px, 4vw, 24px) 0 0;
  width: 100%;
  max-width: min(100%, 280px);
  font-size: clamp(14px, 3.8vw, 16px);
  font-weight: 500;
  line-height: 1.4;
}

.hero__subtitle-line {
  display: block;
}

.hero__subtitle-part {
  display: block;
}

@media (min-width: 480px) {
  .hero__subtitle {
    max-width: min(100%, 480px);
  }

  .hero__subtitle-part {
    display: inline;
  }
}

.hero__media {
  position: absolute;
  /* top: clamp(88px, 40vw, 150px);
  botto */
  bottom: -8%;
  right: 0;
  width: clamp(110px, 66vw, 250px);
  max-width: 59%;
  z-index: 1;
  perspective: 1000px;
}
.live-brutal-card {
  transform-style: preserve-3d;
  transition: transform 0.1s ease, box-shadow 0.3s var(--brutal-transition);
  cursor: pointer;
}
.hero__image {
  width: 100%;
  height: auto;
  filter: drop-shadow(-12px 14px 20px rgba(0, 69, 140, 0.15));
}

/* Mission */
.mission {
  width: 100%;
  background: var(--color-blue);
  padding: clamp(40px, 10vw, 80px) var(--page-padding-x);
}

.mission__inner {
  width: 100%;
  margin-inline: auto;
  text-align: center;
  overflow: visible;
}

.mission__label {
  margin: 0;
  padding-inline: 8px;
  font-size: clamp(13px, 3.5vw, 16px);
  font-weight: 800;
  letter-spacing: clamp(0.06em, 0.5vw, 0.2em);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.mission__headline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  margin: clamp(24px, 6vw, 32px) auto 0;
  gap: clamp(20px, 6vw, 24px);
}

.mission__col {
  min-width: 0;
  font-size: clamp(18px, 6.5vw, 36px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.mission__line {
  display: block;
  overflow-wrap: anywhere;
}

.mission__col--right {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  margin-right: calc(var(--mission-overlap) / -2);
}

.mission__col--left {
  grid-column: 2;
  grid-row: 2;
  text-align: left;
  margin-left: calc(var(--mission-overlap) / -2);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 8vw, 40px);
  padding: clamp(32px, 8vw, 40px) var(--page-padding-x);
  text-align: center;
}

.feature--yellow {
  background: var(--color-yellow-bg);
}

.feature--pink {
  background: var(--color-pink-bg);
}

.feature--teal {
  background: var(--color-teal-bg);
}

.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 16vw, 100px);
  height: clamp(64px, 16vw, 100px);
  /* border: clamp(5px, 1.2vw, 8px) solid var(--color-black); */
  flex-shrink: 0;
}

.feature__icon img {
  width: 100%;
  height: 100%;
}

.feature__icon--yellow {
  background: var(--color-yellow-icon);
}

.feature__icon--pink {
  background: var(--color-pink-icon);
}

.feature__icon--teal {
  background: var(--color-teal-icon);
}

.feature__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 4vw, 20px);
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.feature__title {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

.feature__title span {
  display: block;
  text-align: center;
}

.feature__title--yellow {
  color: var(--color-yellow-text);
}

.feature__title--pink {
  color: var(--color-pink-text);
}

.feature__title--teal {
  color: var(--color-teal-text);
}

.feature__desc {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-size: clamp(16px, 4.2vw, 18px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: var(--color-text-muted);
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 4vw, 20px);
  width: 100%;
  padding: clamp(20px, 5vw, 24px) var(--page-padding-x);
  background: #fff;
  font-size: clamp(14px, 3.8vw, 16px);
  font-weight: 400;
  text-align: center;
}

.footer__copy {
  margin: 0;
  line-height: 1.12;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer__nav span {
  display: none;
}

.footer__nav a {
  display: block;
  color: inherit;
  line-height: 2.09;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Scroll & load animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal--scale {
  transform: translateY(20px) scale(0.94);
}

.reveal--scale.is-visible {
  transform: translateY(0) scale(1);
}

.reveal--from-right {
  transform: translate(24px, 16px);
}

.reveal--from-right.is-visible {
  transform: translate(0, 0);
}

.reveal--from-left {
  transform: translate(-24px, 16px);
}

.reveal--from-left.is-visible {
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* PC — three full-screen sections */
@media (min-width: 1024px) {
  :root {
    --color-bg-page: #fbfbfb;
    --color-bg-hero: #fefefe;
    --page-padding-x: clamp(40px, 6vw, 89px);
  }

  html {
    scroll-snap-type: y mandatory;
  }

  .screen {
    min-height: 100vh;
    min-height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .logo {
    margin-bottom: 0;
  }

  .logo__image {
    width: 198px;
  }

  /* Screen 1: Hero */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding-block: 40px;
    padding-inline: var(--page-padding-x);
  }

  .hero__inner {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 3vw, 48px);
    position: static;
  }

  .hero__content {
    flex: 1;
    max-width: 620px;
    padding-right: 0;
  }

  .hero__title {
    font-size: clamp(80px, 8vw, 120px);
  }

  .hero__soon {
    margin-top: 0;
    font-size: clamp(80px, 8vw, 120px);
    overflow-wrap: normal;
  }

  .hero__subtitle {
    max-width: 480px;
    margin-top: 0;
    font-size: 24px;
  }

  .hero__media {
    position: static;
    flex-shrink: 0;
    max-width: 50%;
    min-width: clamp(300px, 29vw, 50%);
  }

  .hero__image {
    filter: drop-shadow(-22px 25px 30px rgba(0, 69, 140, 0.15));
  }

  /* Screen 2: Mission */
  .mission {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding-inline: clamp(40px, 5vw, 64px);
  }

  .mission__label {
    font-size: 24px;
  }

  .mission__headline {
    width: fit-content;
    max-width: 100%;
    --mission-overlap: 230px;
  }

  .mission__col {
    font-size: clamp(48px, 5vw, 72px);
    min-width: auto;
  }

  .mission__line {
    overflow-wrap: normal;
  }

  .feature__body {
    max-width: 413px;
    margin-inline: auto;
    text-align: center;
  }

  .feature__title {
    font-size: clamp(28px, 2.5vw, 36px);
    text-align: center;
  }

  /* Screen 3: Features + Footer */
  .screen--features {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }

  .features {
    flex: 1 1 0;
    grid-template-columns: repeat(3, 1fr);
    min-height: 0;
    overflow: hidden;
  }

  .feature {
    height: 100%;
    min-height: 0;
    padding: clamp(32px, 3vw, 40px) clamp(16px, 2vw, 24px);
    overflow: auto;
  }

  .feature__desc {
    font-size: clamp(18px, 1.6vw, 24px);
  }

  .footer {
    flex: 0 0 auto;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px var(--page-padding-x);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    background: #fff;
  }

  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 20px;
  }

  .footer__nav span {
    display: inline;
  }

  .footer__nav a {
    display: inline;
    line-height: inherit;
  }
}
