/* =========================================================================
   SoulPal — site stili
   Sinematik / editorial · gece siyahı + şampanya altını + mermer kremi
   Başlık: Cormorant Garamond · Gövde: Hanken Grotesk
   ========================================================================= */

:root {
  /* Yüzeyler */
  --bg:          #0A0A0C;
  --bg-2:        #0d0d11;
  --surface:     #141418;
  --surface-2:   #1E1E24;

  /* Altın + krem */
  --gold:        #D4B373;
  --gold-light:  #EDD9A8;
  --gold-deep:   #B8965A;
  --cream:       #EDE6D6;

  /* Metin */
  --text:        #F4F1E9;   /* sıcak beyaz */
  --text-2:      #B8B5AC;   /* mermer grisi */
  --text-3:      #6E6B63;
  --on-gold:     #1A1208;

  /* Çizgi / kenar */
  --border:      rgba(237, 230, 214, 0.10);
  --border-soft: rgba(237, 230, 214, 0.06);

  /* Tipografi */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Ölçü */
  --maxw: 1200px;
  --pad:  clamp(20px, 5vw, 48px);
  --section-y: clamp(5.5rem, 13vh, 11rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Reset & base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Film grain — tüm sayfayı kaplayan ince doku */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--on-gold); }

/* ----- Tipografi -------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--text);
}

.display {
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  font-weight: 400;
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

h2.heading {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 400;
}
h2.heading em { font-style: italic; color: var(--gold-light); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-2);
  max-width: 46ch;
  line-height: 1.7;
}

/* ----- Layout helpers --------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--section-y); position: relative; }

/* Atmosfer: yumuşak altın glow blob'ları */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.glow--gold { background: radial-gradient(circle, rgba(212,179,115,0.30), transparent 70%); }
.glow--cream { background: radial-gradient(circle, rgba(237,230,214,0.12), transparent 70%); }

/* ----- Header ----------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border-soft);
  padding-block: 12px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand span {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); }
.nav a {
  font-size: 0.92rem;
  color: var(--text-2);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav a:hover { color: var(--text); }
.nav a:not(.btn):not(.appstore)::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:not(.btn):not(.appstore):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; }

/* ----- Buton ------------------------------------------------------------ */
.btn {
  --bw: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--gold {
  color: var(--on-gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 8px 30px rgba(212, 179, 115, 0.28);
}
.btn--gold::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(212,179,115,0.4); }
.btn--gold:hover::after { transform: translateX(130%); }
.btn--ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(237,230,214,0.02);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* App Store rozeti */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px 12px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--on-gold);
  box-shadow: 0 10px 34px rgba(212,179,115,0.30);
  transition: transform 0.35s var(--ease), box-shadow 0.4s var(--ease);
}
.appstore:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(212,179,115,0.45); }
.appstore, .nav a.appstore, .nav a.appstore:hover,
.appstore .as-txt small, .appstore .as-txt strong { color: #1A1208 !important; }
.appstore svg { width: 26px; height: 26px; flex-shrink: 0; color: #1A1208 !important; }
.appstore .as-txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.appstore .as-txt small { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; opacity: 1; }
.appstore .as-txt strong { font-family: var(--serif); font-size: 1.34rem; font-weight: 700; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}
.hero .glow--gold { width: 620px; height: 620px; top: -160px; right: -120px; }
.hero .glow--cream { width: 480px; height: 480px; bottom: -200px; left: -160px; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  width: 100%;
}
.hero-copy { max-width: 36ch; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-copy .display { margin-bottom: 26px; }
.hero-copy .lead { margin-bottom: 38px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-note { font-size: 0.84rem; color: var(--text-3); margin-top: 22px; letter-spacing: 0.02em; }

/* Scroll ipucu */
.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-3);
}
.scroll-cue span { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.3); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* =========================================================================
   iPhone mockup (saf CSS çerçeve)
   ========================================================================= */
.phone {
  position: relative;
  width: clamp(230px, 26vw, 320px);
  aspect-ratio: 1320 / 2868;
  margin-inline: auto;
  border-radius: 13% / 6%;
  padding: 2.4%;
  background: linear-gradient(150deg, #2a2a30, #0c0c0e 45%, #232328);
  box-shadow:
    0 2px 1px rgba(255,255,255,0.18) inset,
    0 -2px 2px rgba(0,0,0,0.6) inset,
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(212,179,115,0.10);
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 11% / 5%;
  overflow: hidden;
  background: var(--surface);
}
.phone__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
/* Dynamic Island */
.phone__island {
  position: absolute;
  top: 2.6%; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 3.4%;
  min-height: 18px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone--float { animation: float 7s ease-in-out infinite; }
.phone--tilt { transform: rotate(4deg); }
@keyframes float { 0%,100% { transform: translateY(0) rotate(var(--tilt, 0deg)); } 50% { transform: translateY(-16px) rotate(var(--tilt, 0deg)); } }

.hero-stage { position: relative; }
.hero-stage .phone { --tilt: 4deg; }

/* =========================================================================
   Manifesto
   ========================================================================= */
.manifesto { text-align: center; }
.manifesto .wrap { max-width: 900px; }
.manifesto p {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  font-weight: 300;
  line-height: 1.32;
  color: var(--text);
}
.manifesto p em { font-style: italic; color: var(--gold-light); }
.rule {
  width: 1px; height: 70px;
  margin: 0 auto clamp(40px, 7vh, 70px);
  background: linear-gradient(var(--gold), transparent);
}

/* =========================================================================
   Özellik sahneleri
   ========================================================================= */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
}
.feature + .feature { margin-top: clamp(5rem, 11vh, 9rem); }
.feature__media { display: flex; justify-content: center; position: relative; }
.feature__media .glow { width: 380px; height: 380px; z-index: 0; }
.feature__copy .eyebrow { margin-bottom: 22px; }
.feature__copy h2 { margin-bottom: 22px; }
.feature--reverse .feature__media { order: 2; }
.feature__list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.feature__list li { display: flex; gap: 13px; align-items: flex-start; color: var(--text-2); list-style: none; }
.feature__list li::before {
  content: ""; flex-shrink: 0; margin-top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212,179,115,0.7);
}

/* =========================================================================
   Karakter showcase
   ========================================================================= */
.showcase { text-align: center; overflow: hidden; }
.showcase__head { max-width: 720px; margin: 0 auto clamp(48px, 7vh, 80px); }
.showcase__head h2 { margin: 20px 0; }
.showcase__head .lead { margin-inline: auto; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  text-align: left;
}
.card {
  position: relative;
  border-radius: 18px;
  padding: 26px 24px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  min-height: 168px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(212,179,115,0.16), transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(212,179,115,0.4); }
.card:hover::after { opacity: 1; }
.card__tag {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; position: relative; z-index: 1;
}
.card h3 { font-size: 1.55rem; font-weight: 500; position: relative; z-index: 1; }
.card p { font-size: 0.92rem; color: var(--text-2); margin-top: 8px; position: relative; z-index: 1; }

/* Öne çıkan örnek karakter (Aria) */
.feature-character {
  margin-top: clamp(40px, 6vh, 70px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
  text-align: left;
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  padding: clamp(22px, 3vw, 40px);
  overflow: hidden;
  position: relative;
}
.feature-character__photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1122 / 1402;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.feature-character__photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-character .meta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(212,179,115,0.12);
  border: 1px solid rgba(212,179,115,0.3);
  color: var(--gold-light);
}
.feature-character h3 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
.feature-character .handle { color: var(--text-3); font-size: 0.95rem; margin-bottom: 14px; }
.feature-character p { color: var(--text-2); max-width: 50ch; }

/* =========================================================================
   Final CTA
   ========================================================================= */
.final {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final .glow--gold { width: 700px; height: 700px; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.35; }
.final__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.final h2 { margin-bottom: 26px; }
.final .lead { margin: 0 auto 40px; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding-block: clamp(48px, 8vh, 80px);
  background: var(--bg-2);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--text-3); font-size: 0.92rem; }
.footer-links { display: flex; gap: clamp(40px, 7vw, 90px); flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 16px; font-weight: 600;
}
.footer-col a { display: block; color: var(--text-2); font-size: 0.95rem; margin-bottom: 11px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: clamp(40px, 6vh, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--text-3); font-size: 0.86rem;
}

/* =========================================================================
   Support sayfası
   ========================================================================= */
.page-hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: clamp(40px, 6vh, 70px);
  text-align: center;
  overflow: hidden;
}
.page-hero .glow--gold { width: 520px; height: 520px; top: -180px; left: 50%; transform: translateX(-50%); }
.page-hero__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 400; margin: 22px 0 18px; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero .lead { margin-inline: auto; }

.faq-section { padding-bottom: var(--section-y); }
.faq-group { margin-bottom: clamp(36px, 6vh, 60px); }
.faq-group__title {
  font-family: var(--sans);
  font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.faq-group__title::after { content: ""; flex: 1; height: 1px; background: var(--border-soft); }

.faq {
  border-bottom: 1px solid var(--border-soft);
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 500;
  color: var(--text);
  text-align: left;
  padding: 22px 4px;
  transition: color 0.3s var(--ease);
}
.faq__q:hover { color: var(--gold-light); }
.faq__icon {
  flex-shrink: 0; width: 22px; height: 22px; position: relative;
  transition: transform 0.4s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--gold); transform: translate(-50%,-50%);
}
.faq__icon::before { width: 14px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 14px; transition: transform 0.4s var(--ease); }
.faq.open .faq__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq__a > div { overflow: hidden; }
.faq.open .faq__a { grid-template-rows: 1fr; }
.faq__a p { color: var(--text-2); padding: 0 4px 24px; font-size: 1rem; max-width: 70ch; }
.faq__a a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

.help-card {
  margin-top: clamp(30px, 5vh, 50px);
  text-align: center;
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 64px);
  position: relative; overflow: hidden;
}
.help-card .glow--gold { width: 360px; height: 360px; top: -120px; right: -80px; }
.help-card__inner { position: relative; z-index: 2; }
.help-card h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.help-card p { color: var(--text-2); margin-bottom: 28px; }

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }

/* Hero giriş animasyonu */
.hero .reveal { transform: translateY(28px); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 900px) {
  .hero { padding-top: 110px; min-height: auto; padding-bottom: 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: none; }
  .hero-stage { order: -1; }
  .hero-stage .phone { --tilt: 0deg; }
  .scroll-cue { display: none; }

  .feature { grid-template-columns: 1fr; gap: 36px; }
  .feature--reverse .feature__media { order: 0; }
  .feature__media { order: -1; }

  .feature-character { grid-template-columns: 1fr; }
  .feature-character__photo { max-width: 320px; }
}

@media (max-width: 680px) {
  .nav { display: none; position: fixed; inset: 0 0 auto 0; top: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: rgba(10,10,12,0.96); backdrop-filter: blur(20px);
    padding: 90px var(--pad) 30px; border-bottom: 1px solid var(--border);
    transform: translateY(-100%); transition: transform 0.5s var(--ease); }
  .nav.open { display: flex; transform: translateY(0); }
  .nav a { font-size: 1.4rem; font-family: var(--serif); padding: 8px 0; }
  .nav .appstore, .nav .btn { margin-top: 14px; font-size: 0.95rem; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; justify-content: center;
    width: 40px; height: 40px; background: none; border: none; cursor: pointer; z-index: 101;
  }
  .nav-toggle span { width: 24px; height: 1.5px; background: var(--text); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .footer-grid { flex-direction: column; gap: 36px; }
  .feature-character__photo { max-width: none; }
}

/* =========================================================================
   Erişilebilirlik — hareketi azalt
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .phone--float { animation: none; }
}
