* {
  box-sizing: border-box;
}

:root {
  --bg: #fbf7ef;
  --card: #fffcf7;
  --text: #2f2933;
  --muted: #746c78;
  --accent: #8068ad;
  --accent-strong: #6f579c;
  --accent-soft: #eee7f8;
  --accent-surface: #f6f0fc;
  --accent-border: rgba(111, 87, 156, 0.2);
  --line: rgba(47, 41, 51, 0.1);
  --shadow: 0 20px 55px rgba(55, 40, 72, 0.08);
  --shadow-small: 0 10px 28px rgba(55, 40, 72, 0.07);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1160px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(217, 196, 239, 0.32), transparent 28rem),
    radial-gradient(circle at 92% 16%, rgba(245, 206, 217, 0.2), transparent 24rem),
    var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(47, 41, 51, 0.12) 0.55px, transparent 0.55px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

a {
  color: inherit;
}

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

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

::selection {
  background: #ded1ef;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--text);
  color: white;
  padding: 10px 16px;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(47, 41, 51, 0.06);
  background: rgba(251, 247, 239, 0.82);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow-small);
  color: var(--accent-strong);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

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

.nav-links a {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 252, 247, 0.8);
  color: var(--text);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.eyebrow,
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.7);
  color: var(--accent-strong);
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 750;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(128, 104, 173, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin: 22px 0 22px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 span {
  display: inline-block;
  color: var(--accent-strong);
}

.hero-copy {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 19px;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--accent-strong);
  color: white;
  box-shadow: 0 12px 30px rgba(111, 87, 156, 0.22);
}

.button-secondary {
  border-color: var(--line);
  background: var(--card);
  color: var(--text);
}

.hero-note {
  margin-top: 19px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-note strong {
  color: var(--text);
}

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

.phone-stage::before,
.phone-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.phone-stage::before {
  width: 390px;
  height: 390px;
  background: rgba(212, 194, 236, 0.46);
}

.phone-stage::after {
  width: 210px;
  height: 210px;
  right: 0;
  bottom: 80px;
  background: rgba(246, 206, 217, 0.36);
}

.phone {
  position: relative;
  z-index: 3;
  width: min(330px, 84vw);
  border: 9px solid #2f2933;
  border-radius: 49px;
  padding: 12px;
  background: #2f2933;
  box-shadow: 0 42px 90px rgba(47, 41, 51, 0.2), 0 10px 24px rgba(47, 41, 51, 0.15);
  transform: rotate(2.3deg);
}

.phone-screen {
  position: relative;
  min-height: 595px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 8%, rgba(219, 203, 239, 0.5), transparent 10rem),
    var(--bg);
  padding: 38px 16px 18px;
}

.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 92px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #2f2933;
}

.app-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.app-title small {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 650;
}

.app-title strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.mini-avatar {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  background: linear-gradient(145deg, #bba4dd, #8165ad);
  box-shadow: 0 3px 10px rgba(55, 40, 72, 0.14);
}

.next-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--accent-border);
  border-radius: 23px;
  background: var(--accent-surface);
  padding: 17px;
  box-shadow: var(--shadow-small);
}

.next-card::after {
  content: "✦";
  position: absolute;
  right: 14px;
  top: 11px;
  color: var(--accent);
  font-size: 1.3rem;
}

.next-card .kicker {
  color: var(--accent-strong);
  font-size: 0.66rem;
  font-weight: 800;
}

.next-card h3 {
  margin: 5px 0 4px;
  font-size: 1.08rem;
}

.next-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.countdown {
  margin-top: 13px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.countdown strong {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.countdown span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.mini-section-title {
  margin: 17px 2px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 800;
}

.memory-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9px;
}

.memory-card {
  min-height: 105px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  padding: 12px;
  box-shadow: 0 7px 18px rgba(55, 40, 72, 0.05);
}

.memory-card.tall {
  grid-row: span 2;
  min-height: 218px;
}

.polaroid {
  height: 125px;
  border-radius: 12px 12px 5px 5px;
  background:
    linear-gradient(135deg, rgba(128,104,173,0.8), rgba(239,191,203,0.86)),
    #ddd;
  margin-bottom: 10px;
  position: relative;
}

.polaroid::before,
.polaroid::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.56);
  border-radius: 999px;
}

.polaroid::before {
  width: 52px;
  height: 52px;
  left: 16px;
  top: 24px;
}

.polaroid::after {
  width: 78px;
  height: 8px;
  right: 12px;
  bottom: 17px;
}

.memory-card strong {
  display: block;
  font-size: 0.73rem;
}

.memory-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.61rem;
}

.setlist-line {
  height: 7px;
  margin: 8px 0;
  border-radius: 999px;
  background: #ded5e9;
}

.setlist-line:nth-child(2) { width: 78%; }
.setlist-line:nth-child(3) { width: 90%; }
.setlist-line:nth-child(4) { width: 62%; }

.phone-tabbar {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  min-height: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid rgba(47, 41, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.93);
  box-shadow: 0 8px 24px rgba(47, 41, 51, 0.08);
}

.tab-dot {
  text-align: center;
  color: #a19aa4;
  font-size: 0.63rem;
}

.tab-dot.active {
  color: var(--accent-strong);
  font-weight: 800;
}

.sticker {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 3px solid white;
  background: #f6cdd8;
  color: #6f5260;
  box-shadow: 0 12px 22px rgba(55, 40, 72, 0.13);
  font-weight: 900;
}

.sticker-heart {
  width: 68px;
  height: 68px;
  left: max(0px, calc(50% - 220px));
  top: 108px;
  border-radius: 24px;
  transform: rotate(-12deg);
  font-size: 1.8rem;
}

.sticker-ticket {
  right: max(0px, calc(50% - 235px));
  bottom: 100px;
  border-radius: 16px;
  padding: 11px 15px;
  background: #fff0b8;
  color: #6d5a23;
  transform: rotate(7deg);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-tinted {
  position: relative;
  border-block: 1px solid rgba(47, 41, 51, 0.06);
  background: rgba(255, 252, 247, 0.54);
}

.section-heading {
  max-width: 710px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 11px 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

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

.feature-card,
.value-card,
.faq-item,
.legal-card,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: var(--shadow-small);
}

.feature-card {
  min-height: 250px;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.icon-chip {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent-border);
  border-radius: 15px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 1.15rem;
}

.feature-card h3,
.value-card h3 {
  margin: 20px 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.feature-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.scrapbook-strip {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.scrapbook-strip span {
  border-radius: 999px;
  background: #f3edf9;
  color: var(--accent-strong);
  padding: 5px 9px;
  font-size: 0.72rem;
  font-weight: 700;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

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

.lock-card {
  position: relative;
  width: min(360px, 100%);
  min-height: 340px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 34px;
  transform: rotate(-2deg);
}

.lock-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 2.25rem;
}

.lock-card h3 {
  margin: 22px 0 5px;
  font-size: 1.3rem;
}

.lock-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.washi {
  position: absolute;
  width: 128px;
  height: 34px;
  border-radius: 4px;
  opacity: 0.78;
}

.washi.one {
  top: 25px;
  left: 4%;
  background: #d8c9ea;
  transform: rotate(-13deg);
}

.washi.two {
  right: 0;
  bottom: 26px;
  background: #f3d3da;
  transform: rotate(11deg);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.check {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.check-list strong {
  color: var(--text);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.value-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 27px;
  counter-increment: steps;
}

.value-card::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--accent-border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 0, rgba(237, 202, 218, 0.55), transparent 16rem),
    linear-gradient(135deg, #f3ecfb, #fffcf7 62%);
  padding: clamp(34px, 7vw, 68px);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 700px;
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.cta-panel p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.cta-panel .hero-actions {
  margin-top: 24px;
}

.site-footer {
  padding: 28px 0 42px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

/* Legal and support pages */
.page-hero {
  padding: 76px 0 46px;
}

.page-hero-inner {
  max-width: 830px;
}

.page-hero h1 {
  margin: 15px 0 13px;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.page-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  padding-bottom: 90px;
}

.legal-toc {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.7);
  padding: 16px;
}

.legal-toc strong {
  display: block;
  margin: 2px 6px 9px;
  font-size: 0.78rem;
}

.legal-toc a {
  display: block;
  border-radius: 10px;
  padding: 7px 8px;
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: none;
}

.legal-toc a:hover {
  background: var(--accent-soft);
  color: var(--text);
}

.legal-card {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 48px);
}

.legal-card section {
  scroll-margin-top: 104px;
}

.legal-card section + section {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 34px;
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.legal-card h3 {
  margin: 22px 0 7px;
  font-size: 1rem;
}

.legal-card p,
.legal-card li {
  color: #5f5864;
  font-size: 0.94rem;
}

.legal-card p {
  margin: 0 0 12px;
}

.legal-card ul,
.legal-card ol {
  padding-left: 1.35rem;
}

.legal-card li + li {
  margin-top: 7px;
}

.legal-card a,
.contact-card a {
  color: var(--accent-strong);
  font-weight: 700;
  text-underline-offset: 3px;
}

.notice {
  border: 1px solid var(--accent-border);
  border-radius: 16px;
  background: var(--accent-surface);
  padding: 16px 18px;
  color: #5f5864;
  font-size: 0.88rem;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 88px;
}

.contact-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-email {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white !important;
  padding: 11px 16px;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  padding: 20px 22px;
}

.faq-item h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.faq-item p,
.faq-item li {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-item ul {
  margin: 8px 0 0;
  padding-left: 1.2rem;
}

.error-shell {
  min-height: calc(100vh - 170px);
  display: grid;
  place-items: center;
  padding: 70px 0;
  text-align: center;
}

.error-card {
  max-width: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 50px 30px;
}

.error-code {
  color: var(--accent-strong);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.error-card h1 {
  margin: 15px 0 8px;
  font-size: 1.8rem;
}

.error-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal][data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(111, 87, 156, 0.42);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .hero-grid,
  .privacy-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy-wrap {
    text-align: center;
  }

  .hero-copy-wrap .eyebrow,
  .hero-copy-wrap .hero-actions {
    margin-inline: auto;
  }

  .hero-copy-wrap .hero-actions {
    justify-content: center;
  }

  .hero-copy,
  .hero-note {
    margin-inline: auto;
  }

  .phone-stage {
    min-height: 650px;
  }

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

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

  .privacy-layout .section-heading {
    margin-bottom: 0;
  }

  .privacy-visual {
    min-height: 410px;
  }

  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }

  .legal-toc strong {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .nav {
    width: min(100% - 28px, var(--max));
    min-height: 64px;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 58px;
    left: 14px;
    right: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: var(--shadow-small);
    padding: 8px;
  }

  .nav-links[data-open="true"] {
    display: flex;
  }

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

  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding: 55px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }

  .phone-stage {
    min-height: 600px;
  }

  .phone {
    width: min(306px, 86vw);
  }

  .phone-screen {
    min-height: 550px;
  }

  .sticker-heart {
    left: 1%;
    top: 95px;
  }

  .sticker-ticket {
    right: 0;
    bottom: 96px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .page-hero {
    padding-top: 54px;
  }

  .legal-card,
  .contact-card {
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
