@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;600;700;800;900&display=swap");
:root {
  color-scheme: dark;
  --bg: #161314;
  --surface: #211c1e;
  --surface2: #2a2326;
  --ink: #f5f0f1;
  --muted: #a89a9e;
  --line: #3d3336;
  --lime: #ff4d6d;
  --accent: #ff4d6d;
  --accent-bright: #ff6b85;
  --pink: #ff8a9e;
  --shadow: #c93a54;
  font-family: "DM Sans", "Noto Sans SC", sans-serif;
  font-size: 16px;
  background: var(--bg);
  color: var(--ink);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
}
button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button,
a,
input,
summary {
  outline-offset: 5px;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--lime);
}
::selection {
  background: var(--lime);
  color: var(--bg);
}
.wrap {
  width: min(1440px, calc(100% - 96px));
  margin-inline: auto;
}
.hero.wrap {
  width: min(1440px, calc(100% - 96px));
}
.header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: -1px;
}
.brand img {
  border-radius: 11px;
}
.header nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header nav a {
  font-size: 14px;
  color: var(--muted);
}
.header nav a:hover {
  color: var(--lime);
}
.edition-label {
  color: var(--muted);
  font-size: 14px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr);
  align-items: center;
  column-gap: clamp(28px, 3vw, 48px);
  min-height: calc(100svh - 96px);
  padding-block: 64px 72px;
  box-sizing: border-box;
}
.hero-copy {
  min-width: 0;
}
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.hero-brand img {
  border-radius: 10px;
}
.hero-stage {
  position: relative;
  min-width: 0;
  min-height: 260px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 168px 8px 32px 12px;
  isolation: isolate;
}
.hero-combo-wrap {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 6;
  transform: scale(0.95);
  transform-origin: top right;
}
#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}
.hero-stage-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
}
.hero-stage-line {
  position: relative;
  z-index: 4;
  margin: 0;
  max-width: 100%;
  text-align: center;
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  white-space: nowrap;
}
.hero-stage-ipa {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--muted) 88%, var(--lime));
  letter-spacing: 0.01em;
}
.hero-stage-gloss {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: color-mix(in srgb, var(--ink) 72%, var(--muted));
  line-height: 1.35;
}
.hero-stage-ch {
  display: inline-block;
  color: rgba(255, 77, 109, 0.32);
  line-height: 1;
  vertical-align: baseline;
  transition: color 0.12s ease, transform 0.12s ease;
}
.hero-stage-ch.typed {
  background-image: linear-gradient(
    105deg,
    #ffe8ed 0%,
    #ff4d6d 28%,
    #ff3355 55%,
    #ffc2ce 78%,
    #ff4d6d 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: hero-ink-flow 7s ease-in-out infinite;
}
.hero-stage-ch.fresh {
  transform: translateY(-2px);
  filter: brightness(1.15);
}
@keyframes hero-ink-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stage-ch.typed {
    animation: none;
    background-image: none;
    color: #ff4d6d;
    -webkit-text-fill-color: #ff4d6d;
  }
}
.try-section {
  padding-block: 28px 36px;
  display: grid;
  gap: 28px;
}
.try-section .section-intro {
  margin-bottom: 0;
  justify-content: flex-start;
  gap: 40px;
  align-items: flex-end;
}
.try-section .section-intro > p {
  max-width: 280px;
}
@media (max-width: 1100px) {
  .hero {
    column-gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  }
  .hero-stage {
    padding: 120px 8px 20px;
  }
  .hero-combo-wrap {
    transform: scale(0.82);
  }
  .hero-brand {
    font-size: 24px;
  }
}
@media (max-width: 760px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding-top: 36px;
    min-height: 0;
  }
  .hero-stage {
    width: 100%;
    max-width: none;
    align-self: stretch;
    padding: 100px 0 16px;
    min-height: 180px;
  }
  .hero-stage-line {
    font-size: clamp(32px, 8vw, 44px);
    white-space: normal;
  }
  .hero-combo-wrap {
    transform: scale(0.7);
  }
  .hero-brand {
    font-size: 22px;
  }
  .try-section {
    padding-block: 12px 28px;
  }
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.7px;
  color: var(--lime);
  line-height: 1.8;
}
.hero h1 {
  font-size: clamp(40px, 4.5vw, 62px);
  letter-spacing: -1.6px;
  line-height: 1.25;
  font-weight: 800;
  margin: 20px 0;
  max-width: none;
}
.hero h1 em {
  font-style: normal;
  color: var(--lime);
}
.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 40em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 12px;
  min-height: 52px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--line);
  transition:
    transform 0.15s,
    background 0.15s;
}
.button.primary {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
  border-bottom: 4px solid var(--shadow);
}
.button.primary:hover {
  background: #ff6b85;
  transform: translateY(-2px);
}
.button.secondary {
  background: transparent;
  color: var(--ink);
}
.button.secondary:hover {
  background: var(--surface2);
}
.micro {
  font-size: 12px;
  color: var(--muted);
  margin-top: 19px;
  line-height: 1.8;
}
.hero-visual {
  position: relative;
  min-height: 575px;
  border-radius: 5px 70px 5px 5px;
  overflow: hidden;
  background: #2a2225;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 34px;
  isolation: isolate;
}
.scene {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, #ff4d6d40, transparent 70%),
    linear-gradient(160deg, #3a2228, #1a1516);
  z-index: -2;
}
.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #16131430, #16131410 45%, #16131455);
}
.scene-top,
.scene-bottom {
  position: absolute;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 1.4px;
  color: #e8dde0;
  gap: 12px;
}
.scene-top {
  top: 26px;
}
.scene-bottom {
  bottom: 23px;
}
.scene-top > span:last-child {
  font-size: 22px;
}
.scene-bottom > span:last-child {
  font-size: 23px;
}
.typing-widget {
  width: 100%;
  max-width: 620px;
  background: #211c1eee;
  border: 1px solid #6a785380;
  box-shadow: 0 20px 70px #0006;
  backdrop-filter: blur(14px);
  border-radius: 15px;
  position: relative;
  padding: 24px;
}
.widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #c2c9b8;
}
.widget-head > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tiny-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--lime);
}
.sentence {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 500;
  margin: 35px 0 13px;
  line-height: 1.6;
  color: #d6e4c4;
}
.translation {
  font-size: 14px;
  color: #a89a9e;
  margin: 0 0 26px;
}
.input-label {
  display: block;
  font-size: 12px;
  color: #a8b0a4;
  margin-bottom: 8px;
}
#typing {
  width: 100%;
  border: 1px solid #526346;
  background: #101910c0;
  border-radius: 8px;
  min-height: 49px;
  padding: 12px;
  color: #e6eddc;
  font-size: 16px;
}
#typing:focus {
  outline: 2px solid #ff4d6d60;
  outline-offset: 2px;
}
.widget-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 19px;
  font-size: 11px;
  color: #99a58e;
}
.skip {
  position: fixed;
  left: 12px;
  top: -80px;
  background: var(--lime);
  color: var(--bg);
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
@media (min-width: 1600px) {
  .hero-visual {
    min-height: 640px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-visual {
    padding: 50px 22px;
    min-height: 540px;
  }
  .typing-widget {
    padding: 20px;
  }
  .header nav,
  .nav-actions {
    gap: 20px;
  }
  .edition-label {
    display: none;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 80px;
    gap: 12px;
  }
  .brand {
    font-size: 22px;
  }
  .header nav {
    gap: 16px;
  }
  .hero {
    padding-top: 42px;
    gap: 28px;
    min-height: 0;
  }
  .hero h1 {
    font-size: 46px;
    line-height: 1.3;
    letter-spacing: -1.8px;
    margin: 18px 0;
    max-width: none;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-visual {
    min-height: 470px;
    padding: 62px 18px;
  }
  .scene-top,
  .scene-bottom {
    left: 18px;
    right: 18px;
    font-size: 9px;
  }
  .sentence {
    font-size: 28px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .typing-widget {
    padding: 18px;
  }
  .header nav a {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition: none !important;
  }
}
