:root {
  --bg: #fbf4ee;
  --bg-soft: #fffaf7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.95);
  --text: #2f2f2f;
  --muted: #746d68;
  --line: rgba(47, 47, 47, 0.08);
  --line-strong: rgba(47, 47, 47, 0.12);
  --peach: #ff8c69;
  --peach-soft: #fff1eb;
  --blue: #5ba4cf;
  --blue-soft: #eaf6fd;
  --mint: #10b981;
  --mint-soft: #e9fbf5;
  --cream-soft: #fff8ee;
  --shadow: 0 28px 80px rgba(100, 64, 39, 0.12);
  --shadow-soft: 0 18px 42px rgba(75, 47, 29, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--text);
  min-height: 100vh;
  position: relative;
  background-color: #ffffff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
  background-color: #ffffff;
  background-image: radial-gradient(#ff8c69 0.5px, #ffffff 0.5px);
  background-size: 10px 10px;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 22px 0 40px;
  position: relative;
  z-index: 1;
}

.topbar {
  position: static;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-align: center;
}

.brand img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.brand-copy span,
.hero-text,
.section-heading p,
.shot-card p,
.feature-card p,
.privacy-card p,
.contact-copy p,
.download-copy p,
.modal-copy,
.form-note {
  color: var(--muted);
}

.top-actions,
.footer-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-dropdown {
  position: relative;
}

.lang-toggle,
.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button-green {
  background: #2fb362 !important;
  color: white !important;
  border-color: #2fb362 !important;
  font-weight: 500;
}

.button-green:hover {
  background: #28a055 !important;
  border-color: #28a055 !important;
  transform: translateY(-1px);
}

.lang-toggle {
  gap: 12px;
  min-width: 168px;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-current-flag,
.lang-flag {
  font-size: 1.05rem;
}

.lang-current-label {
  font-weight: 700;
}

.lang-chevron {
  font-size: 0.82rem;
  color: var(--muted);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  background: rgba(255, 252, 249, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.lang-dropdown.is-open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.lang-option:hover,
.lang-option:focus-visible,
.lang-option.is-active {
  background: rgba(91, 164, 207, 0.11);
  outline: none;
}

.lang-option.is-active {
  color: #245d81;
}

.action-link {
  font-weight: 700;
}

.action-button {
  border: 1px solid var(--line);
}

.lang-toggle:hover,
.lang-toggle:focus-visible,
.action-link:hover,
.action-link:focus-visible,
.button:hover,
.button:focus-visible,
.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(60, 43, 29, 0.09);
  outline: none;
}

.hero,
.section,
.download-band {
  scroll-margin-top: 120px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 34px;
  align-items: center;
  margin-top: 22px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 246, 0.76)),
    linear-gradient(180deg, rgba(255, 140, 105, 0.08), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 140, 105, 0.12);
  color: #a84f2f;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.download-copy h2,
.contact-modal-card h2 {
  margin: 16px 0 12px;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  max-width: 9ch;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.06rem;
  line-height: 1.72;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #ff9c7a, var(--peach));
  box-shadow: 0 18px 30px rgba(255, 140, 105, 0.28);
}

.button-secondary {
  border-color: rgba(47, 47, 47, 0.09);
  background: rgba(255, 255, 255, 0.72);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-card,
.feature-card,
.privacy-card,
.contact-panel,
.shot-card,
.download-band,
.heading-visual,
.hero-visual,
.hero-badge {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 18px;
  border-radius: 22px;
}

.stat-card h2,
.feature-card h3,
.privacy-card h3,
.shot-card strong {
  margin: 0 0 8px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.stat-card p,
.feature-card p,
.privacy-card p,
.shot-card p,
.contact-copy p,
.download-copy p,
.modal-copy,
.form-note {
  margin: 0;
  line-height: 1.7;
}

.hero-stage {
  position: relative;
  min-height: 540px;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
}

.glow-peach {
  inset: 36px auto auto 30px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(255, 140, 105, 0.34), transparent 72%);
}

.glow-blue {
  inset: auto 18px 32px auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(91, 164, 207, 0.28), transparent 72%);
}

.hero-visual,
.hero-badge {
  position: absolute;
  overflow: hidden;
}

.hero-visual img,
.hero-badge img,
.heading-visual img,
.shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-main {
  right: 0;
  top: 54px;
  width: min(66%, 330px);
  aspect-ratio: 9 / 18;
  border-radius: 34px;
  border: 10px solid rgba(255, 255, 255, 0.88);
  transform: rotate(7deg);
  animation: floatCard 6s ease-in-out infinite;
}

.hero-visual-secondary {
  left: 34px;
  bottom: 30px;
  width: min(46%, 230px);
  aspect-ratio: 9 / 18;
  border-radius: 30px;
  border: 10px solid rgba(255, 255, 255, 0.88);
  transform: rotate(-8deg);
  animation: floatCard 6s ease-in-out infinite 1.1s;
}

.hero-badge {
  left: 78px;
  top: 8px;
  width: min(36%, 180px);
  aspect-ratio: 1 / 1;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  animation: floatCard 6s ease-in-out infinite 2s;
}

.hero-badge img {
  border-radius: 20px;
}

.section {
  margin-top: 28px;
  padding: 38px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow-soft);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 24px;
  align-items: center;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.contact-copy h2,
.download-copy h2,
.contact-modal-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  max-width: 12ch;
}

.section-heading p {
  max-width: 90ch;
  line-height: 1.75;
  font-size: 1.03rem;
}

.heading-visual {
  justify-self: end;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4 / 5;
  padding: 12px;
  border-radius: 28px;
  transform: rotate(4deg);
}

.heading-visual img {
  border-radius: 22px;
  box-shadow: 0 16px 26px rgba(61, 43, 26, 0.12);
}

.feature-grid,
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.feature-card,
.privacy-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
}

.feature-card::after,
.privacy-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -24px auto;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  opacity: 0.55;
}

.feature-card-peach,
.privacy-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 241, 235, 0.95), rgba(255, 255, 255, 0.88));
}

.feature-card-peach::after,
.privacy-card:nth-child(3)::after {
  background: radial-gradient(circle, rgba(255, 140, 105, 0.24), transparent 68%);
}

.feature-card-blue,
.privacy-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(234, 246, 253, 0.95), rgba(255, 255, 255, 0.88));
}

.feature-card-blue::after,
.privacy-card:nth-child(2)::after {
  background: radial-gradient(circle, rgba(91, 164, 207, 0.26), transparent 68%);
}

.feature-card-mint,
.privacy-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(233, 251, 245, 0.95), rgba(255, 255, 255, 0.88));
}

.feature-card-mint::after,
.privacy-card:nth-child(1)::after {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22), transparent 68%);
}

.feature-card-cream,
.privacy-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.95), rgba(255, 255, 255, 0.88));
}

.feature-card-cream::after,
.privacy-card:nth-child(4)::after {
  background: radial-gradient(circle, rgba(255, 203, 140, 0.28), transparent 68%);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.icon-peach {
  background: rgba(255, 140, 105, 0.16);
  color: #bf5e3b;
}

.icon-blue {
  background: rgba(91, 164, 207, 0.16);
  color: #356f93;
}

.icon-mint {
  background: rgba(16, 185, 129, 0.14);
  color: #0b8b61;
}

.icon-cream {
  background: rgba(255, 209, 143, 0.2);
  color: #aa6f18;
}

/* Gallery Carousel Redesign */
.gallery-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 0 60px; /* Space for absolute arrows if needed, but we use flex for now */
}

.gallery-track-container {
  flex: 1;
  overflow: hidden;
  border-radius: 30px;
  /* Exactly 3 cards + 2 gaps of 20px */
  max-width: 820px; 
  margin: 0 auto;
}

.storyboard-grid {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.storyboard-card {
  flex: 0 0 calc((100% - 40px) / 3); /* Accounts for 2 gaps of 20px each */
  padding: 0;
  margin: 0;
}



.storyboard-card img {
  width: 100%;
  aspect-ratio: 9 / 18;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.storyboard-card:hover img {
  transform: scale(1.02);
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: white;
  color: var(--peach); /* Orange arrows */
  box-shadow: 0 8px 24px rgba(255, 140, 105, 0.25);
  transition: all 0.2s ease;
}

.gallery-prev { left: 0; }
.gallery-next { right: 0; }

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--peach);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev svg,
.gallery-next svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 992px) {
  .storyboard-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 640px) {
  .storyboard-card {
    flex: 0 0 100%;
  }
  .gallery-carousel-wrapper {
    padding: 0 40px;
  }
}


.privacy-section {
  background: linear-gradient(180deg, rgba(243, 249, 245, 0.9), rgba(255, 255, 255, 0.86));
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 380px);
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 242, 0.74));
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.contact-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.contact-list dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-list a:hover {
  text-decoration: underline;
}

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(31, 36, 52, 0.95), rgba(61, 77, 112, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  color: white;
  box-shadow: 0 24px 46px rgba(25, 31, 48, 0.24);
}

.download-band .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.download-copy p {
  max-width: 90ch;
  color: rgba(255, 255, 255, 0.74);
}

.download-band .action-link {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.store-badge img {
  width: 280px;
  height: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 29;
  background: rgba(24, 21, 28, 0.42);
  backdrop-filter: blur(5px);
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

.contact-modal-card {
  position: relative;
  width: min(100%, 640px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  background: rgba(255, 251, 247, 0.96);
  box-shadow: 0 26px 52px rgba(38, 24, 16, 0.18);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: white;
  color: var(--text);
  padding: 14px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(91, 164, 207, 0.5);
  box-shadow: 0 0 0 4px rgba(91, 164, 207, 0.14);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 132px;
}

.modal-submit {
  width: fit-content;
}

.form-note {
  font-size: 0.92rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: #1d7a58;
}

@keyframes floatCard {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {

  .hero-visual-main,
  .hero-visual-secondary,
  .hero-badge,
  .gallery-track,
  .reveal {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1120px) {

  .hero,
  .section-split,
  .contact-panel,
  .download-band {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 500px;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 14px;
  }

  .topbar,
  .hero,
  .section,
  .download-band,
  .contact-modal-card {
    padding: 20px;
  }

  .topbar {
    top: 8px;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand,
  .top-actions,
  .footer-actions {
    width: 100%;
  }

  .top-actions,
  .footer-actions {
    justify-content: flex-start;
  }

  .lang-dropdown,
  .lang-toggle {
    width: 100%;
  }

  .lang-menu {
    min-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 13vw, 4.3rem);
  }

  .hero-stage {
    min-height: 420px;
  }

  .hero-visual-main {
    width: 58%;
    right: 0;
    top: 44px;
  }

  .hero-visual-secondary {
    left: 0;
    bottom: 0;
    width: 44%;
  }

  .hero-badge {
    left: 16px;
    width: 120px;
  }

  .feature-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .shot-card {
    width: 220px;
  }

  .store-badge img {
    width: 240px;
  }

  .modal-submit,
  .button,
  .action-link {
    width: 100%;
  }

  .store-buttons {
    width: 100%;
  }
}



.brand-copy {
  justify-content: center;
}

.brand-copy strong {
  font-size: 1.16rem;
}

.title-break {
  white-space: pre-line;
}

.hero h1.title-break,
.section-heading h2.title-break,
.contact-copy h2.title-break {
  max-width: none;
}

.hero-stage {
  min-height: 560px;
}

.hero-badge {
  left: 10px;
  top: 0;
  width: min(60%, 340px);
  aspect-ratio: 16 / 9;
  padding: 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
}

.hero-badge img,
.heading-visual-logo img {
  object-fit: contain;
}

.heading-visual-logo {
  transform: rotate(0deg);
  background: rgba(255, 255, 255, 0.95);
}

.gallery-section .section-heading {
  margin-bottom: 28px;
}

.gallery-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.gallery-card {
  position: relative;
  min-height: 650px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(22, 18, 18, 0), rgba(22, 18, 18, 0.72));
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background:
    radial-gradient(circle at top, rgba(91, 164, 207, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 241, 236, 0.92));
}

.gallery-arrow {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(91, 164, 207, 0.26);
  outline: none;
}

.gallery-caption {
  position: absolute;
  left: 24px;
  right: auto;
  bottom: 22px;
  z-index: 1;
  width: min(42%, 360px);
  color: white;
}

.gallery-caption strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.gallery-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.privacy-title {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.privacy-title span {
  display: block;
}

.privacy-title-accent {
  color: var(--mint);
}

.privacy-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.privacy-card:hover,
.privacy-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.24);
  box-shadow: 0 24px 42px rgba(16, 185, 129, 0.12);
}

.contact-panel {
  display: flex;
  justify-content: center;
  padding: 40px 28px;
}

.contact-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-actions {
  justify-content: center;
}

.contact-copy p {
  max-width: 90ch;
  margin-inline: auto;
}

.contact-modal-card h2 {
  white-space: pre-line;
}

@media (max-width: 1120px) {
  .gallery-card {
    min-height: 560px;
  }

  .gallery-caption {
    width: min(56%, 360px);
  }
}

@media (max-width: 760px) {


  .hero-stage {
    min-height: 430px;
  }

  .hero-badge {
    width: 180px;
    top: 6px;
    left: 8px;
  }

  .gallery-carousel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-arrow {
    width: 52px;
    height: 52px;
  }

  .gallery-arrow-prev {
    order: 2;
    justify-self: start;
  }

  .gallery-card {
    order: 1;
    min-height: 480px;
  }

  .gallery-arrow-next {
    order: 3;
    justify-self: end;
  }

  .gallery-caption {
    width: calc(100% - 40px);
    left: 20px;
    bottom: 18px;
  }
}

body {
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(180deg, #fff9f3 0%, #f7efe8 100%);
}

body::before {
  opacity: 0.2;
}

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

.wave-pattern {
  position: absolute;
  inset: -14%;
  opacity: 0.72;
}

.wave-pattern::before,
.wave-pattern::after {
  content: "";
  position: absolute;
  background-repeat: repeat;
  border-radius: 44% 56% 62% 38% / 38% 44% 56% 62%;
  filter: saturate(1.04);
}

.wave-pattern::before {
  inset: 2% 18% 34% -18%;
  background:
    radial-gradient(circle at 22% 30%, rgba(91, 164, 207, 0.16), transparent 34%),
    repeating-linear-gradient(90deg,
      rgba(91, 164, 207, 0.18) 0 6px,
      rgba(255, 255, 255, 0) 6px 18px);
  transform: rotate(-11deg);
  animation: waveDriftLeft 34s ease-in-out infinite alternate;
}

.wave-pattern::after {
  inset: 42% -20% -14% 20%;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 140, 105, 0.18), transparent 36%),
    repeating-linear-gradient(90deg,
      rgba(255, 140, 105, 0.18) 0 6px,
      rgba(255, 255, 255, 0) 6px 18px);
  transform: rotate(8deg);
  animation: waveDriftRight 38s ease-in-out infinite alternate;
}

.floating-bubble {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 34px rgba(78, 55, 38, 0.1);
  opacity: 0.86;
  animation: bubbleDrift var(--bubble-duration, 18s) ease-in-out infinite;
}

.floating-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 22%;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 0 0 14px 0;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(32deg);
}

.bubble-dots {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(91, 164, 207, 0.48);
  box-shadow:
    18px 0 0 rgba(255, 140, 105, 0.44),
    36px 0 0 rgba(16, 185, 129, 0.42);
  transform: translateX(-18px);
}

.bubble-1 {
  top: 18vh;
  left: 2vw;
  width: 110px;
  height: 76px;
  --bubble-x: 18px;
  --bubble-y: -24px;
  --bubble-duration: 20s;
}

.bubble-2 {
  top: 46vh;
  right: 3vw;
  width: 140px;
  height: 88px;
  --bubble-x: -20px;
  --bubble-y: -22px;
  --bubble-duration: 24s;
  animation-delay: -6s;
}

.bubble-3 {
  top: 68vh;
  left: 6vw;
  width: 84px;
  height: 60px;
  --bubble-x: 14px;
  --bubble-y: -16px;
  --bubble-duration: 16s;
  animation-delay: -4s;
}

.bubble-4 {
  top: 26vh;
  right: 10vw;
  width: 92px;
  height: 66px;
  --bubble-x: -16px;
  --bubble-y: -18px;
  --bubble-duration: 19s;
  animation-delay: -9s;
}

.bubble-5 {
  top: 78vh;
  right: 16vw;
  width: 128px;
  height: 82px;
  --bubble-x: -12px;
  --bubble-y: -20px;
  --bubble-duration: 22s;
  animation-delay: -12s;
}

.page-shell {
  position: relative;
  z-index: 1;
}



.brand-copy {
  justify-content: center;
}

.brand-copy strong {
  font-size: 1.16rem;
}

.title-break {
  white-space: pre-line;
}

.hero h1.title-break,
.section-heading h2.title-break,
.contact-copy h2.title-break {
  max-width: none;
}

.hero-stage {
  min-height: 580px;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.hero-visual-main {
  right: 2%;
  top: 14%;
  width: min(58%, 310px);
}

.hero-visual-secondary {
  left: 2%;
  bottom: 5%;
  width: min(42%, 220px);
}

.hero-visual-third {
  position: absolute;
  left: 29%;
  top: 2%;
  width: min(34%, 185px);
  aspect-ratio: 9 / 18;
  border-radius: 28px;
  border: 10px solid rgba(255, 255, 255, 0.88);
  overflow: hidden;
  transform: rotate(-2deg);
  animation: floatCard 6s ease-in-out infinite 1.8s;
}

.section-heading-center,
.gallery-intro {
  max-width: none;
  text-align: center;
  margin-inline: auto;
}

.section-heading-center p,
.gallery-intro p,
.privacy-section .section-heading p,
.contact-copy p,
.download-copy p {
  margin-inline: auto;
  text-align: center;
}

.section-heading-center h2,
.contact-copy h2,
.download-copy h2 {
  max-width: none;
  margin-inline: auto;
}

.story-title,
.privacy-title,
.contact-title,
.download-title {
  margin: 0 auto 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: none;
  text-align: center;
  line-height: 0.98;
  text-wrap: balance;
}

.story-title-accent {
  color: var(--peach);
}

.privacy-title-accent {
  color: var(--mint);
}

.contact-title-accent {
  color: var(--blue);
}

.feature-grid {
  margin-top: 34px;
  align-items: stretch;
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.66);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    filter 220ms ease;
  box-shadow: 0 18px 36px rgba(78, 55, 38, 0.06);
}

.feature-card p,
.privacy-card p {
  max-width: 26ch;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(255, 140, 105, 0.34);
  box-shadow: 0 28px 50px rgba(78, 55, 38, 0.14);
  filter: saturate(1.04);
}

.gallery-section {
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.9), rgba(255, 255, 255, 0.7));
}

.storyboard-grid {
  display: flex !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.storyboard-card {
  position: relative;
  min-height: auto !important;
  width: 220px !important;
  flex: 0 0 220px !important;
  margin: 0 !important;
  scroll-snap-align: center;
  border-radius: 0px;
  overflow: hidden;
  border: none;
  background: transparent;
  isolation: isolate;
}

.storyboard-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0px;
  transition: transform 260ms ease, filter 260ms ease;
}

.storyboard-overlay {
  display: none !important;
}

.storyboard-overlay strong {
  margin-bottom: 12px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.storyboard-overlay p {
  margin: 0;
  max-width: 24ch;
  line-height: 1.72;
  color: var(--text);
}


.privacy-section {
  background: linear-gradient(180deg, rgba(243, 249, 245, 0.9), rgba(255, 255, 255, 0.86));
}

.privacy-grid {
  margin-top: 34px;
}

.privacy-card {
  border: 1px solid rgba(255, 255, 255, 0.66);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    filter 220ms ease;
}

.privacy-card:hover,
.privacy-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.26);
  box-shadow: 0 24px 42px rgba(16, 185, 129, 0.12);
  filter: saturate(1.03);
}

.contact-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 28px;
}

.contact-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-actions,
.footer-actions {
  justify-content: center;
}

.download-band {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 24px;
}

.download-copy {
  max-width: 760px;
}

.store-buttons {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.store-badge img {
  width: clamp(280px, 24vw, 340px);
  height: auto;
}

@keyframes waveDriftLeft {
  0% {
    transform: translate3d(-2%, 0, 0) rotate(-11deg);
  }

  50% {
    transform: translate3d(3%, -2%, 0) rotate(-8deg);
  }

  100% {
    transform: translate3d(1%, 2%, 0) rotate(-14deg);
  }
}

@keyframes waveDriftRight {
  0% {
    transform: translate3d(2%, 0, 0) rotate(8deg);
  }

  50% {
    transform: translate3d(-3%, 2%, 0) rotate(11deg);
  }

  100% {
    transform: translate3d(-1%, -2%, 0) rotate(6deg);
  }
}

@keyframes bubbleDrift {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(var(--bubble-x), var(--bubble-y), 0);
  }
}

@media (min-width: 761px) {

  .story-title span,
  .privacy-title span,
  .contact-title span,
  .download-title span {
    white-space: nowrap;
  }
}

@media (max-width: 1120px) {
  .storyboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .wave-pattern::before {
    inset: 8% -26% 48% -28%;
  }

  .wave-pattern::after {
    inset: 52% -36% -18% 8%;
  }

  .floating-bubble {
    opacity: 0.58;
  }

  .bubble-4,
  .bubble-5 {
    display: none;
  }



  .hero-stage {
    min-height: 460px;
  }

  .hero-visual-main {
    width: 56%;
    right: 4%;
  }

  .hero-visual-secondary {
    width: 40%;
    left: 0;
  }

  .hero-visual-third {
    width: 32%;
    left: 28%;
    top: 0;
    border-width: 8px;
  }

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

  .storyboard-card {
    min-height: 500px;
  }

  .contact-panel,
  .download-band {
    padding: 24px 20px;
  }

  .store-badge img {
    width: min(100%, 300px);
  }

  .store-buttons {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .wave-pattern::before,
  .wave-pattern::after,
  .floating-bubble,
  .hero-visual-third,
  .storyboard-card img {
    animation: none !important;
    transition: none !important;
  }
}

.button,
.action-link {
  font-weight: 700;
  letter-spacing: 0;
}

.hero {
  align-items: start;
}

.hero-stage {
  min-height: 540px;
  max-width: 500px;
  transform: translateY(-28px);
}

.hero-visual-main {
  top: 8%;
  right: 0;
  width: min(58%, 300px);
}

.hero-visual-secondary {
  left: 5%;
  bottom: 14%;
  width: min(39%, 200px);
}

.hero-visual-third {
  left: 31%;
  top: 0;
  width: min(33%, 178px);
}

.gallery-intro p {
  max-width: 90ch;
}

.storyboard-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.storyboard-card {
  min-height: 470px;
  border-radius: 24px;
  background: transparent !important;
}

.storyboard-card img {
  object-fit: contain;
}

.storyboard-overlay {
  padding: 22px 18px;
  color: white;
}

.storyboard-overlay strong,
.storyboard-overlay p {
  color: white;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.storyboard-overlay p {
  max-width: 18ch;
}


.store-shell {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  padding: 16px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff9c7a, var(--peach));
  box-shadow: 0 18px 34px rgba(255, 140, 105, 0.24);
}

.store-buttons {
  width: auto;
  gap: 14px;
}

.store-badge {
  padding: 10px 12px;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.16);
  background: #08090d;
  box-shadow: 0 16px 26px rgba(8, 9, 13, 0.28);
}

.store-badge img {
  width: clamp(200px, 18vw, 230px);
}

@media (max-width: 1120px) {
  .hero-stage {
    transform: none;
  }

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

@media (max-width: 760px) {
  .hero-stage {
    min-height: 460px;
    transform: none;
  }

  .hero-visual-main {
    top: 10%;
    right: 3%;
  }

  .hero-visual-secondary {
    bottom: 10%;
  }

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

  .storyboard-card {
    min-height: 500px;
  }

  .store-shell {
    width: 100%;
    padding: 14px;
  }

  .store-buttons {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .store-badge {
    width: 100%;
  }

  .store-badge img {
    width: min(100%, 220px);
  }
}

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2fb362;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(47, 179, 98, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #28a055;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(47, 179, 98, 0.45);
}

body {
  background: #ffffff;
}

body::before {
  opacity: 0.8;
  background-color: #ffffff;
  background-image: radial-gradient(#ff8c69 0.5px, #ffffff 0.5px);
  background-size: 10px 10px;
}
