:root {
  --ink: #040506;
  --ink-soft: #242731;
  --text: #474b57;
  --muted: #8e95a3;
  --fog: #f7f7f8;
  --fog-blue: #eef6ff;
  --fog-pink: #fff7fb;
  --white: #fff;
  --line: #e7e9ef;
  --violet: #7c3aed;
  --violet-deep: #5b21b6;
  --violet-light: #a78bfa;
  --blue: #3b82f6;
  --blue-deep: #2563eb;
  --rose: #ec4899;
  --cyan: #67e8f9;
  --amber: #f59e0b;
  --shadow: 0 24px 80px rgba(31, 38, 135, 0.14);
  --display: "Avenir Next", "Montserrat", "Pretendard", "Apple SD Gothic Neo", sans-serif;
  --body: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fog);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  color: var(--white);
  background: var(--violet);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 14px;
  right: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}

.nav {
  min-height: 68px;
  padding: 10px 12px 10px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 60px rgba(31, 38, 135, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  pointer-events: auto;
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled .nav {
  min-height: 60px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 36px rgba(31, 38, 135, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand {
  width: 94px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--violet);
}

.nav-cta {
  justify-self: end;
  min-height: 44px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  border: 0;
  border-radius: 15px;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta svg {
  width: 16px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(4, 5, 6, 0.18);
}

.hero {
  position: relative;
  min-height: 950px;
  padding: 184px 0 104px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfdff 0%, var(--fog-blue) 52%, var(--fog-pink) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.65));
  pointer-events: none;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.ambient-violet {
  top: 140px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent 68%);
}

.ambient-blue {
  right: -120px;
  bottom: 100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.16), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.88fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--violet-deep);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.1);
}

.hero h1,
.section-intro h2,
.shorts-copy h2,
.download-content h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero h1 {
  font-size: clamp(46px, 5.2vw, 74px);
  line-height: 1.12;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(108deg, var(--violet-deep) 0%, var(--violet) 46%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.store-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
}

.store-button {
  position: relative;
  min-width: 174px;
  padding: 0 0 22px;
  display: grid;
  justify-items: center;
  color: var(--muted);
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.store-button:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 14px 18px rgba(4, 5, 6, 0.16));
}

.store-button:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.36);
  outline-offset: 3px;
}

.official-store-badge {
  width: auto;
  height: 58px;
  display: block;
}

.store-status {
  position: absolute;
  bottom: 0;
  left: 50%;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.store-button.is-live .store-status {
  color: #059669;
}

.hero-note {
  margin: 26px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack i {
  width: 27px;
  height: 27px;
  margin-left: -8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background-image: url("./assets/capl-talent-editorial.webp");
  background-size: 112px auto;
}

.avatar-stack i:nth-child(1) { background-position: 5% 35%; }
.avatar-stack i:nth-child(2) { background-position: 50% 35%; }
.avatar-stack i:nth-child(3) { background-position: 92% 35%; }

.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 68%);
}

.orbit-two {
  width: 430px;
  height: 430px;
  border-color: rgba(59, 130, 246, 0.12);
}

.phone {
  position: relative;
  border: 7px solid #0b0d11;
  background: #0b0d11;
  box-shadow: 0 46px 92px rgba(15, 23, 42, 0.22), 0 20px 40px rgba(124, 58, 237, 0.13), inset 0 0 0 1px #343741;
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 8;
  width: 92px;
  height: 25px;
  border-radius: 999px;
  background: #090a0d;
  transform: translateX(-50%);
}

.phone-main {
  z-index: 2;
  width: 328px;
  height: 652px;
  border-radius: 47px;
  transform: rotate(2.8deg);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background: linear-gradient(180deg, #fbfdff, #f2f7ff 54%, #fff7fb);
  overflow: hidden;
}

.status-bar {
  position: relative;
  z-index: 5;
  height: 38px;
  padding: 12px 20px 0;
  display: flex;
  justify-content: space-between;
  color: #10131a;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 3px;
}

.status-icons i {
  display: block;
  width: 10px;
  height: 6px;
  border-radius: 2px;
  border: 1px solid currentColor;
}

.status-icons i:nth-child(1) {
  width: 8px;
  border-width: 0 0 1px 1px;
  border-radius: 0;
  transform: skewY(-18deg);
}

.status-icons i:nth-child(2) {
  width: 8px;
  height: 5px;
  border: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.status-icons i:nth-child(3) {
  background: currentColor;
}

.app-header {
  height: 48px;
  padding: 4px 16px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-header > img {
  width: 90px;
}

.app-actions {
  display: flex;
  gap: 7px;
}

.app-actions > span {
  position: relative;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 6px 16px rgba(31, 38, 135, 0.08);
}

.app-actions svg {
  width: 15px;
}

.app-actions b {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--violet);
}

.app-content {
  padding: 10px 14px 100px;
}

.app-section-heading {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-section-heading > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
}

.section-icon.violet { color: var(--violet); background: rgba(124, 58, 237, 0.1); }
.section-icon.rose { color: var(--rose); background: rgba(236, 72, 153, 0.1); }

.section-icon svg {
  width: 15px;
}

.app-section-heading p {
  margin: 0;
  display: grid;
  gap: 1px;
}

.app-section-heading strong {
  font-family: var(--display);
  font-size: 13px;
}

.app-section-heading small {
  color: var(--muted);
  font-size: 7px;
}

.app-section-heading > span {
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
}

.audition-card {
  position: relative;
  height: 258px;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.audition-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.audition-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0.02) 35%, rgba(4, 5, 6, 0.86) 100%);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(10px);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 800;
}

.audition-copy {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  color: var(--white);
}

.audition-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.14em;
}

.audition-copy strong {
  margin-top: 4px;
  display: block;
  font-size: 20px;
  line-height: 1.18;
}

.audition-copy p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
}

.artist-heading {
  margin-top: 17px;
}

.artist-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.artist-card {
  position: relative;
  height: 104px;
  border-radius: 15px;
  overflow: hidden;
}

.artist-card::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(4, 5, 6, 0.7));
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 8% 28%;
  transform: scale(1.3);
}

.artist-card.middle img { object-position: 50% 28%; }
.artist-card.right img { object-position: 94% 28%; }

.artist-card span {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 1;
  color: var(--white);
  font-size: 7px;
  font-weight: 800;
}

.app-dock {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 4;
  height: 64px;
  padding: 8px 13px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.67);
  box-shadow: 0 16px 36px rgba(31, 38, 135, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(140%);
}

.app-dock span {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 2px;
  color: var(--muted);
}

.app-dock span.active { color: var(--violet); }
.app-dock svg { width: 17px; height: 17px; }
.app-dock small { font-size: 6px; font-weight: 700; }

.floating-card {
  position: absolute;
  z-index: 5;
  min-width: 230px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 48px rgba(31, 38, 135, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px) saturate(140%);
  animation: float 5s ease-in-out infinite;
}

.floating-card > span:last-child {
  display: grid;
  gap: 3px;
}

.floating-card small {
  color: var(--muted);
  font-family: var(--display);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.floating-card strong {
  font-size: 11px;
}

.floating-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
}

.floating-icon svg { width: 18px; }
.floating-icon.violet { color: var(--violet); background: rgba(124, 58, 237, 0.1); }
.floating-icon.rose { color: var(--rose); background: rgba(236, 72, 153, 0.1); }

.floating-a { top: 82px; right: -32px; }
.floating-b { bottom: 74px; left: -56px; animation-delay: -2.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 38px;
  left: 0;
  z-index: 3;
  padding: 18px 0;
  border-top: 1px solid rgba(71, 75, 87, 0.08);
  border-bottom: 1px solid rgba(71, 75, 87, 0.08);
  overflow: hidden;
}

.hero-marquee > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: marquee 26s linear infinite;
}

.hero-marquee span {
  color: rgba(4, 5, 6, 0.22);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero-marquee i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.35);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding: 150px 0;
}

.experience {
  position: relative;
  background: #fff;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  column-gap: 80px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro h2,
.shorts-copy h2,
.download-content h2 {
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.15;
}

.muted-text {
  color: #a5a9b3;
}

.section-intro > p:last-child {
  max-width: 480px;
  margin: 0 0 5px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.bento-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.bento {
  position: relative;
  border: 1px solid rgba(231, 233, 239, 0.8);
  border-radius: 32px;
  background: #f8f9fc;
  overflow: hidden;
}

.bento-a {
  min-height: 590px;
  padding: 54px;
  grid-row: span 2;
  background: linear-gradient(145deg, #f8f7ff, #f2f7ff 60%, #fff);
}

.bento-b,
.bento-c {
  min-height: 285px;
}

.bento-b {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #0a0c11;
}

.bento-c {
  padding: 38px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 28px;
  background: linear-gradient(145deg, #fbfdff, #fff7fb);
}

.number {
  display: inline-flex;
  color: var(--violet);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.bento-label {
  margin: 24px 0 10px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.bento-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.bento-copy > p:last-child {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.audition-ui {
  position: absolute;
  right: -60px;
  bottom: -58px;
  width: 510px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px 30px 0 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(31, 38, 135, 0.13), inset 0 1px 0 #fff;
  backdrop-filter: blur(22px);
  transform: rotate(-3deg);
}

.filter-bar {
  padding: 5px;
  display: flex;
  gap: 5px;
  border-radius: 13px;
  background: #f1f3f7;
}

.filter-bar span {
  padding: 8px 13px;
  color: var(--muted);
  border-radius: 9px;
  font-size: 9px;
  font-weight: 750;
}

.filter-bar .on {
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--blue-deep));
  box-shadow: 0 7px 14px rgba(124, 58, 237, 0.2);
}

.mini-audition-card {
  position: relative;
  margin-top: 12px;
  padding: 10px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid #eef0f4;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.mini-audition-card.faded { opacity: 0.54; }

.mini-photo {
  position: relative;
  height: 82px;
  border-radius: 13px;
  overflow: hidden;
}

.mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.mini-photo b {
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 3px 5px;
  color: var(--white);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.64);
  font-size: 7px;
}

.mini-audition-card > div:nth-child(2) {
  display: grid;
  gap: 5px;
}

.mini-audition-card small { color: var(--violet); font-size: 8px; font-weight: 800; }
.mini-audition-card strong { font-size: 13px; }
.mini-audition-card p { margin: 0; color: var(--muted); font-size: 8px; }
.mini-audition-card > svg { width: 18px; color: var(--violet); }

.profile-visual {
  position: relative;
  min-height: 285px;
  overflow: hidden;
}

.profile-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 30%;
  transform: scale(1.42);
}

.profile-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 5, 6, 0.82));
}

.profile-overlay {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: var(--white);
}

.profile-overlay span { font-size: 7px; font-weight: 800; letter-spacing: 0.15em; }
.profile-overlay strong { font-family: var(--display); font-size: 22px; }
.profile-overlay small { color: rgba(255, 255, 255, 0.65); font-size: 8px; }

.profile-visual button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
}

.profile-visual button svg { width: 16px; }

.bento-b .bento-copy {
  padding: 34px 32px;
  color: var(--white);
}

.bento-b .bento-copy h3 {
  font-size: 24px;
}

.bento-b .bento-copy > p:last-child {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.compact .bento-label {
  margin-top: 16px;
}

.bento-c .bento-copy h3 {
  font-size: 23px;
}

.bento-c .bento-copy > p:last-child {
  font-size: 12px;
}

.flow-list {
  display: grid;
  gap: 8px;
}

.flow-item {
  min-height: 58px;
  padding: 9px 11px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(231, 233, 239, 0.82);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 7px 18px rgba(15, 23, 42, 0.04);
}

.flow-item > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--text);
  border-radius: 11px;
  background: #f1f3f7;
}

.flow-item > i svg { width: 15px; }
.flow-item > span { display: grid; gap: 3px; }
.flow-item strong { font-size: 10px; }
.flow-item small { color: var(--muted); font-size: 7px; }
.flow-item > b { color: var(--muted); font-size: 8px; }
.flow-item.done > i { color: #059669; background: #ecfdf5; }
.flow-item.done > b { color: #059669; }
.flow-item.active { border-color: rgba(124, 58, 237, 0.18); box-shadow: 0 8px 24px rgba(124, 58, 237, 0.08); }
.flow-item.active > i { color: var(--violet); background: rgba(124, 58, 237, 0.09); }
.flow-item.active > b { color: var(--violet); }

.shorts-section {
  position: relative;
  padding: 130px 0;
  color: var(--white);
  background: #05060a;
  overflow: hidden;
}

.shorts-section::before {
  content: "CAPL";
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.018);
  font-family: var(--display);
  font-size: 34vw;
  font-weight: 900;
  letter-spacing: -0.1em;
  transform: translate(-52%, -50%);
  pointer-events: none;
}

.shorts-glow {
  position: absolute;
  right: -100px;
  bottom: -220px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), rgba(37, 99, 235, 0.06) 42%, transparent 69%);
}

.shorts-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.shorts-copy h2 {
  font-size: clamp(40px, 4vw, 56px);
}

.eyebrow.light {
  color: var(--violet-light);
}

.shorts-copy h2 span {
  color: #777d89;
}

.shorts-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.shorts-copy ul {
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.shorts-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.shorts-copy li i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.1);
}

.shorts-copy li svg { width: 12px; }

.shorts-visual {
  position: relative;
  min-height: 730px;
  display: grid;
  place-items: center;
}

.shorts-ring {
  position: absolute;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(124, 58, 237, 0.04);
}

.phone-shorts {
  z-index: 2;
  width: 335px;
  height: 690px;
  border-color: #171921;
  border-radius: 49px;
  transform: rotate(-2.4deg);
  box-shadow: 0 55px 120px rgba(0, 0, 0, 0.55), 0 18px 50px rgba(124, 58, 237, 0.24), inset 0 0 0 1px #353844;
}

.phone-shorts .phone-screen {
  border-radius: 39px;
  background: #0b0c10;
}

.shorts-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 30%;
  transform: scale(1.2);
}

.shorts-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0.24), transparent 22%, transparent 48%, rgba(4, 5, 6, 0.88));
}

.status-bar.light {
  color: var(--white);
}

.shorts-top {
  position: relative;
  z-index: 4;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.shorts-top strong {
  font-family: var(--display);
  font-size: 18px;
}

.shorts-top span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
}

.shorts-top svg {
  width: 18px;
  margin-left: auto;
}

.sound-control {
  position: absolute;
  top: 92px;
  right: 17px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(16px);
}

.sound-control svg { width: 15px; }

.shorts-info {
  position: absolute;
  right: 70px;
  bottom: 38px;
  left: 18px;
  z-index: 3;
  display: grid;
  gap: 6px;
}

.shorts-info > small {
  color: #c4b5fd;
  font-family: var(--display);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.shorts-info strong { font-size: 13px; }
.shorts-info p { margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 9px; line-height: 1.55; }
.shorts-info p span { color: #c4b5fd; }

.shorts-actions {
  position: absolute;
  right: 14px;
  bottom: 55px;
  z-index: 3;
  display: grid;
  gap: 15px;
}

.shorts-actions > span {
  display: grid;
  justify-items: center;
  gap: 3px;
}

.shorts-actions i {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(16px);
}

.shorts-actions svg { width: 17px; }
.shorts-actions small { color: rgba(255, 255, 255, 0.72); font-size: 7px; }

.shorts-home-indicator {
  position: absolute;
  bottom: 9px;
  left: 50%;
  z-index: 4;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  transform: translateX(-50%);
}

.shorts-caption {
  position: absolute;
  right: -45px;
  bottom: 105px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  transform: rotate(90deg);
}

.shorts-caption i {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.download-section {
  background: #fff;
}

.download-card {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 42px;
  background: linear-gradient(145deg, #f9f7ff, #eef6ff 48%, #fff7fb);
  box-shadow: 0 34px 100px rgba(31, 38, 135, 0.12), inset 0 1px 0 #fff;
  overflow: hidden;
}

.download-card::before,
.download-card::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 50%;
}

.download-card::before { top: -180px; left: -120px; }
.download-card::after { right: -120px; bottom: -190px; }

.download-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(10px);
}

.glow-a { top: -250px; right: 3%; background: radial-gradient(circle, rgba(167, 139, 250, 0.26), transparent 68%); }
.glow-b { bottom: -290px; left: 0; background: radial-gradient(circle, rgba(103, 232, 249, 0.22), transparent 68%); }

.download-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  text-align: center;
}

.download-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  border-radius: 22px;
  box-shadow: 0 20px 42px rgba(124, 58, 237, 0.22);
}

.eyebrow.centered {
  justify-content: center;
}

.download-content > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 15px;
}

.centered-row {
  justify-content: center;
}

.site-footer {
  padding: 0 0 28px;
  color: var(--white);
  background: #08090c;
}

.footer-main {
  padding-top: 82px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 1fr;
  gap: 72px;
}

.footer-brand img {
  width: 105px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-brand > strong {
  margin-top: 14px;
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.footer-brand p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.8;
}

.footer-label {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-links .footer-label {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a {
  font-size: 12px;
  font-weight: 650;
}

.footer-links a:hover,
.footer-contact a:hover,
.business-info a:hover {
  color: var(--violet-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact .contact-phone {
  margin-top: -3px;
  color: var(--white);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.footer-contact > a:not(.contact-phone) {
  margin-top: 10px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 650;
}

.footer-contact small {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  line-height: 1.6;
}

.footer-company {
  padding-top: 36px;
  padding-bottom: 36px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.business-info > strong {
  display: block;
  margin-bottom: 22px;
  font-size: 15px;
}

.business-info > strong span {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.business-info dl {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
}

.business-info dl > div {
  display: flex;
  gap: 9px;
}

.business-info dt,
.business-info dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.6;
}

.business-info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.business-info dt {
  color: rgba(255, 255, 255, 0.28);
}

.business-info .address {
  width: 100%;
}

.store-legal {
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.25);
  font-size: 9px;
  line-height: 1.8;
  word-break: keep-all;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  max-width: calc(100% - 48px);
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18), inset 0 1px 0 #fff;
  backdrop-filter: blur(22px) saturate(140%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.toast-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--violet);
  border-radius: 13px;
  background: rgba(124, 58, 237, 0.1);
}

.toast-icon svg { width: 18px; }
.toast > span:last-child { display: grid; gap: 3px; }
.toast strong { font-size: 12px; }
.toast small { color: var(--muted); font-size: 9px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
  }

  .hero h1 { font-size: 54px; }
  .floating-a { right: -5px; }
  .floating-b { left: -18px; }
  .bento-a { padding: 44px; }
  .bento-b { grid-template-columns: 0.85fr 1.15fr; }
  .bento-b .bento-copy { padding: 28px 24px; }
  .bento-c { padding: 28px; gap: 18px; }
  .shorts-grid { gap: 50px; }
}

@media (max-width: 880px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links { display: none; }

  .hero {
    padding-top: 150px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-note,
  .store-row {
    justify-content: center;
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    margin-top: 30px;
  }

  .hero-marquee { bottom: 12px; }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .section-intro > p:last-child {
    margin-top: 26px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-a { min-height: 600px; grid-row: auto; }
  .bento-b, .bento-c { min-height: 330px; }

  .shorts-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shorts-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .shorts-copy .eyebrow,
  .shorts-copy li {
    justify-content: center;
  }

  .shorts-visual { margin-top: 20px; }
  .footer-main { grid-template-columns: 1.2fr 0.8fr; gap: 52px; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-company { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 28px, 540px);
  }

  .site-header { top: 8px; }

  .nav {
    min-height: 58px;
    padding: 8px 8px 8px 15px;
    border-radius: 20px;
  }

  .brand { width: 78px; }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 13px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 126px;
  }

  .hero-grid { gap: 0; }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(37px, 11.5vw, 52px);
    line-height: 1.16;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.75;
  }

  .store-row {
    margin-top: 28px;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .store-button {
    min-width: 0;
    padding-bottom: 19px;
  }

  .official-store-badge { height: 48px; }
  .store-status { font-size: 8px; }
  .hero-note { font-size: 10px; }

  .hero-visual {
    min-height: 570px;
    margin-top: 34px;
    transform: scale(0.88);
    transform-origin: top center;
    margin-bottom: -70px;
  }

  .phone-main {
    width: 300px;
    height: 600px;
  }

  .floating-card {
    min-width: 178px;
    padding: 9px 10px;
  }

  .floating-card strong { font-size: 9px; }
  .floating-a { top: 62px; right: -38px; }
  .floating-b { bottom: 40px; left: -45px; }
  .orbit-one { width: 440px; height: 440px; }
  .orbit-two { width: 330px; height: 330px; }

  .section { padding: 100px 0; }

  .section-intro h2,
  .shorts-copy h2,
  .download-content h2 {
    font-size: 38px;
  }

  .section-intro > p:last-child,
  .shorts-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .bento-grid { margin-top: 52px; }
  .bento { border-radius: 26px; }
  .bento-a { min-height: 560px; padding: 32px 26px; }
  .bento-copy h3 { font-size: 26px; }
  .bento-copy > p:last-child { font-size: 12px; }

  .audition-ui {
    right: -100px;
    bottom: -40px;
    width: 440px;
    transform: rotate(-2deg) scale(0.92);
  }

  .bento-b {
    min-height: 560px;
    grid-template-columns: 1fr;
    grid-template-rows: 290px 1fr;
  }

  .profile-visual { min-height: 290px; }
  .bento-b .bento-copy { padding: 30px 26px 34px; }

  .bento-c {
    min-height: 560px;
    padding: 32px 26px;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .flow-list { margin-top: 12px; }

  .shorts-section { padding: 100px 0 90px; }
  .shorts-copy li { justify-content: flex-start; text-align: left; font-size: 11px; }
  .shorts-visual { min-height: 640px; transform: scale(0.88); transform-origin: top center; margin-bottom: -80px; }
  .shorts-ring { width: 440px; height: 440px; }
  .phone-shorts { width: 308px; height: 635px; }
  .shorts-caption { display: none; }

  .download-card {
    width: calc(100% - 28px);
    min-height: 540px;
    border-radius: 30px;
  }

  .download-content { padding: 46px 16px; }
  .download-icon { width: 70px; height: 70px; border-radius: 19px; }

  .site-footer { padding-bottom: 22px; }
  .footer-main {
    padding-top: 62px;
    padding-bottom: 48px;
    grid-template-columns: 1fr 1fr;
    gap: 48px 24px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: auto; }
  .footer-contact .contact-phone { font-size: 23px; }
  .footer-contact > a:not(.contact-phone) { font-size: 12px; }
  .footer-company { padding-top: 28px; padding-bottom: 28px; }
  .business-info dl { display: grid; gap: 8px; }
  .footer-bottom { display: grid; gap: 10px; }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@supports not (backdrop-filter: blur(10px)) {
  .nav,
  .floating-card,
  .app-dock,
  .toast {
    background: rgba(255, 255, 255, 0.94);
  }
}
