:root {
  color-scheme: light;
  --ink: #2e2430;
  --muted: #766473;
  --paper: #fff8fb;
  --rose: #ff6f9d;
  --rose-deep: #e84477;
  --mint: #55c8a6;
  --sun: #ffd05a;
  --violet: #7d6df7;
  --line: rgba(95, 68, 85, 0.16);
  --shadow: 0 22px 70px rgba(119, 54, 86, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 208, 90, 0.28), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(85, 200, 166, 0.18), transparent 24rem),
    linear-gradient(180deg, #fff6fa 0%, #fffdf9 48%, #f2fff9 100%);
  color: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 111, 157, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 200, 166, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 72%);
  animation: gridDrift 18s linear infinite;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ambient span {
  position: absolute;
  top: -10vh;
  width: 18px;
  height: 18px;
  border-radius: 6px 6px 10px 2px;
  background: linear-gradient(135deg, rgba(255, 111, 157, 0.7), rgba(255, 208, 90, 0.6));
  box-shadow: 0 8px 24px rgba(232, 68, 119, 0.18);
  opacity: 0.68;
  animation: petalFall 13s linear infinite;
}

.ambient span:nth-child(1) {
  left: 8%;
  animation-duration: 14s;
}

.ambient span:nth-child(2) {
  left: 24%;
  width: 12px;
  height: 12px;
  animation-delay: -4s;
  animation-duration: 11s;
}

.ambient span:nth-child(3) {
  left: 47%;
  animation-delay: -8s;
  animation-duration: 16s;
}

.ambient span:nth-child(4) {
  left: 64%;
  width: 14px;
  height: 14px;
  animation-delay: -2s;
  animation-duration: 12s;
}

.ambient span:nth-child(5) {
  left: 81%;
  animation-delay: -6s;
  animation-duration: 15s;
}

.ambient span:nth-child(6) {
  left: 93%;
  width: 10px;
  height: 10px;
  animation-delay: -10s;
  animation-duration: 10s;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 252, 253, 0.78);
  box-shadow: 0 16px 50px rgba(117, 45, 85, 0.16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  animation: headerDrop 700ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(232, 68, 119, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(232, 68, 119, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(119, 54, 86, 0.1);
}

.language-switcher button {
  min-width: 38px;
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.language-switcher button.is-active {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  box-shadow: 0 8px 18px rgba(232, 68, 119, 0.22);
}

.header-cta,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta,
.primary-btn {
  padding: 0 24px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  box-shadow: 0 16px 34px rgba(232, 68, 119, 0.28);
  position: relative;
  overflow: hidden;
  animation: ctaBreath 2.8s ease-in-out infinite;
}

.header-cta::after,
.primary-btn::after {
  content: "";
  position: absolute;
  inset: -50% auto -50% -45%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  transform: rotate(18deg);
  animation: buttonShine 3.6s ease-in-out infinite;
}

.ghost-btn {
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: 128px max(24px, calc((100vw - 1120px) / 2)) 72px;
  overflow: hidden;
  --mx: 0px;
  --my: 0px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 34%;
  filter: saturate(1.08);
  transform: translate3d(calc(var(--mx) * -0.35), calc(var(--my) * -0.25), 0) scale(1.04);
  transition: transform 220ms ease-out;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 251, 0.94) 0%, rgba(255, 248, 251, 0.72) 38%, rgba(255, 248, 251, 0.18) 72%),
    linear-gradient(180deg, rgba(255, 248, 251, 0.18), rgba(255, 248, 251, 0.72));
}

.hero-copy {
  max-width: 620px;
  position: relative;
  z-index: 1;
  animation: revealUp 800ms 120ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-deep);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
  color: #302033;
  text-shadow: 0 8px 0 rgba(255, 255, 255, 0.72);
  animation: titlePop 900ms 220ms cubic-bezier(0.2, 1.1, 0.2, 1) both;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  max-width: 540px;
  margin: 24px 0 0;
  color: #4d3d49;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.8;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-btn {
  min-width: 168px;
}

.hero-panel {
  justify-self: center;
  position: relative;
  z-index: 1;
  animation: revealUp 900ms 260ms ease both;
}

.phone-frame {
  position: relative;
  width: min(360px, 82vw);
  aspect-ratio: 560 / 1000;
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(145deg, #2e2430, #5d4254);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  animation: phoneFloat 5.2s ease-in-out infinite;
}

.phone-frame img,
.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.live-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(46, 36, 48, 0.18);
  backdrop-filter: blur(10px);
}

section:not(.hero) {
  padding: 88px max(24px, calc((100vw - 1120px) / 2));
}

.album-teaser {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  padding-top: 74px !important;
  padding-bottom: 62px !important;
  background:
    linear-gradient(180deg, rgba(255, 248, 251, 0.42), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 18% 40%, rgba(255, 208, 90, 0.18), transparent 22rem);
  overflow: hidden;
}

.album-teaser-copy {
  max-width: 470px;
}

.album-teaser-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 800;
}

.album-showcase {
  display: grid;
  gap: 16px;
}

.album-preview {
  position: relative;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 72px rgba(119, 54, 86, 0.22);
}

.album-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 44%, rgba(31, 20, 32, 0.68));
  pointer-events: none;
}

.album-preview img {
  width: 100%;
  height: clamp(420px, 44vw, 620px);
  object-fit: cover;
  object-position: center top;
  transition: opacity 260ms ease, transform 620ms ease;
}

.album-preview.is-switching img {
  opacity: 0.35;
  transform: scale(1.04);
}

.album-preview-meta {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}

.album-preview-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.album-preview-meta strong {
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1;
  text-align: right;
}

.album-toolbar {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
}

.album-nav {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--rose-deep);
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(119, 54, 86, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.album-nav:hover {
  background: #fff0f6;
  transform: translateY(-2px);
}

.album-progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(232, 68, 119, 0.16);
}

.album-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), var(--violet));
  transition: width 320ms ease;
}

.album-thumbs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.album-thumb {
  padding: 0;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 10px 24px rgba(119, 54, 86, 0.1);
  cursor: pointer;
}

.album-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82);
  transition: transform 200ms ease, filter 200ms ease;
}

.album-thumb.is-active {
  border-color: var(--rose);
}

.album-thumb.is-active img,
.album-thumb:hover img {
  filter: saturate(1.1);
  transform: scale(1.06);
}

.album-count {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(119, 54, 86, 0.12);
}

.album-count strong {
  color: var(--rose-deep);
  font-size: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.movie-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: stretch;
}

.movie-player {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: #251f2c;
  box-shadow: var(--shadow);
  transform: translateZ(0);
}

.movie-player:hover {
  box-shadow: 0 26px 90px rgba(119, 54, 86, 0.28);
}

.movie-player video {
  width: 100%;
  height: auto;
  min-height: 360px;
  max-height: 72vh;
  object-fit: contain;
  background: #251f2c;
}

.video-tabs {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 248, 251, 0.95);
}

.video-tabs button {
  min-height: 40px;
  flex: 1;
  border: 1px solid rgba(232, 68, 119, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.video-tabs button.is-active {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  box-shadow: 0 10px 22px rgba(232, 68, 119, 0.22);
}

.video-tabs button:hover {
  transform: translateY(-2px);
}

.movie-notes {
  display: grid;
  gap: 14px;
}

.movie-notes div,
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(119, 54, 86, 0.1);
}

.movie-notes div {
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.movie-notes div:hover,
.feature-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(119, 54, 86, 0.18);
}

.movie-notes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 28px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #fff0f6;
  color: var(--rose-deep);
  font-weight: 900;
}

.movie-notes p,
.feature-grid p,
.start-section p,
.character-copy span {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 700;
}

.character-stage {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 18px;
}

.arrow-btn {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--rose-deep);
  font-size: 38px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(119, 54, 86, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.arrow-btn:hover {
  background: #fff0f6;
  transform: scale(1.08);
}

.character-card {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(260px, 0.58fr);
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 240, 246, 0.82)),
    #fff;
  box-shadow: var(--shadow);
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.character-card.is-switching {
  transform: scale(0.985);
  box-shadow: 0 12px 42px rgba(119, 54, 86, 0.14);
}

.character-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  transition: opacity 260ms ease, transform 520ms ease;
}

.character-card.is-switching img {
  opacity: 0.28;
  transform: scale(1.04);
}

.character-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(26px, 5vw, 64px);
}

.character-copy p {
  margin: 0;
  color: var(--mint);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.character-copy h3 {
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: 0;
}

.character-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.character-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(232, 68, 119, 0.25);
  cursor: pointer;
}

.character-dots button.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--rose);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-grid article {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  transition: transform 420ms ease;
}

.feature-grid article:hover img {
  transform: scale(1.04);
}

.feature-grid h3,
.feature-grid p {
  padding-inline: 22px;
}

.feature-grid h3 {
  margin-top: 22px;
}

.feature-grid p {
  margin-bottom: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(119, 54, 86, 0.14);
  animation: galleryFloat 5.8s ease-in-out infinite;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(4) {
  animation-delay: -2.4s;
}

.start-section {
  display: flex;
  align-items: flex-end;
  min-height: 420px;
  margin: 0 max(24px, calc((100vw - 1120px) / 2)) 70px;
  padding: clamp(34px, 6vw, 66px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(25, 18, 30, 0.94) 0%, rgba(35, 24, 42, 0.88) 42%, rgba(35, 24, 42, 0.38) 72%, rgba(255, 111, 157, 0.08) 100%),
    url("assets/images/char-3.jpg");
  background-size: cover;
  background-position: right center;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.start-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.2) 34%, transparent 56%);
  transform: translateX(-100%);
  animation: panelShine 5s ease-in-out infinite;
}

.start-section > * {
  position: relative;
  z-index: 1;
}

.start-section > div {
  display: grid;
  justify-items: start;
  gap: 22px;
  max-width: min(620px, 100%);
}

.start-section h2 {
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  white-space: normal;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 0.98;
}

.start-section h2 span {
  display: block;
}

.start-section .eyebrow {
  margin: 0;
}

.start-section p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
}

.start-section .primary-btn {
  min-width: 190px;
}

.start-section .eyebrow,
.start-section p {
  color: rgba(255, 255, 255, 0.86);
}

.start-section .primary-btn {
  background: #fff;
  color: var(--rose-deep);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-links {
    display: none;
  }

  .brand-text {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switcher {
    min-height: 38px;
    padding: 3px;
  }

  .language-switcher button {
    min-width: 34px;
    height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 18px;
  }

  .hero {
    min-height: 100vh;
    grid-template-columns: 1fr;
    padding-top: 104px;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(255, 248, 251, 0.78), rgba(255, 248, 251, 0.92) 58%, rgba(255, 248, 251, 0.98)),
      linear-gradient(90deg, rgba(255, 248, 251, 0.38), rgba(255, 248, 251, 0.1));
  }

  .hero-panel {
    width: 100%;
  }

  .phone-frame {
    width: min(300px, 76vw);
    margin-inline: auto;
    transform: rotate(0deg);
    animation: phoneFloatMobile 5.2s ease-in-out infinite;
  }

  .movie-layout,
  .character-card,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .album-teaser {
    grid-template-columns: 1fr;
    padding-top: 58px !important;
  }

  .album-preview img {
    height: min(520px, 96vw);
  }

  .album-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .album-preview-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-player video {
    min-height: 240px;
  }

  .character-stage {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .arrow-btn {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .character-card {
    min-height: 0;
  }

  .character-card img {
    min-height: 420px;
  }

  .feature-grid img {
    max-height: 520px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .start-section,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .start-section {
    min-height: 420px;
    justify-content: flex-end;
    background:
      linear-gradient(180deg, rgba(46, 36, 48, 0.22) 0%, rgba(46, 36, 48, 0.88) 58%, rgba(46, 36, 48, 0.94) 100%),
      url("assets/images/char-3.jpg");
    background-size: cover;
    background-position: center top;
  }

  .start-section h2 {
    word-break: normal;
    white-space: normal;
    font-size: clamp(32px, 9vw, 48px);
  }

  .start-section .primary-btn {
    justify-self: auto;
    align-self: stretch;
  }
}

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

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 46px 46px, 46px 46px;
  }
}

@keyframes petalFall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.7;
  }
  100% {
    transform: translate3d(42px, 112vh, 0) rotate(520deg);
    opacity: 0;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titlePop {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

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

@keyframes ctaBreath {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes buttonShine {
  0%,
  55% {
    left: -45%;
  }
  100% {
    left: 120%;
  }
}

@keyframes galleryFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes panelShine {
  0%,
  48% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 8px;
    padding: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
  }

  .header-cta {
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  section:not(.hero) {
    padding-block: 64px;
  }

  .start-section {
    padding: 30px 22px;
  }
}
