/* ==========================================================================
   Quadrillionaire — quadrillionaire.app
   Standalone static site. Brand: midnight navy · warm cream · metallic gold.
   Dark-first, with a light-mode variant via prefers-color-scheme.
   ========================================================================== */

/* ---- Fonts: Fraunces (display serif) + Hanken Grotesk (body) ------------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

/* ---- Design tokens (dark = default) ------------------------------------- */
:root {
  --navy-950: #070f1a;
  --navy-900: #0a1626;
  --navy-850: #0d1c30;
  --navy-800: #102236;
  --navy-700: #16304b;
  --cream:    #f4ecd9;
  --cream-dim:#cdc4b2;
  --gold:     #c8a24b;
  --gold-br:  #e6c879;
  --gold-deep:#9d7c2e;
  --line:     rgba(200,162,75,0.22);
  --line-soft:rgba(244,236,217,0.10);

  --bg:        var(--navy-950);
  --surface:   var(--navy-900);
  --surface-2: var(--navy-850);
  --card:      var(--navy-850);
  --text:      var(--cream);
  --text-dim:  var(--cream-dim);
  --accent:    var(--gold);
  --accent-br: var(--gold-br);

  --maxw: 1140px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px -28px rgba(0,0,0,0.7);
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg:        #faf5e9;
    --surface:   #fffdf7;
    --surface-2: #f3ead6;
    --card:      #fffdf7;
    --text:      #1a2436;
    --text-dim:  #5c6172;
    --accent:    #9d7c2e;
    --accent-br: #b8923c;
    --line:      rgba(157,124,46,0.28);
    --line-soft: rgba(26,36,54,0.10);
    --shadow:    0 24px 50px -30px rgba(40,30,0,0.30);
  }
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg);
  /* subtle grain + gold glow atmosphere */
  background-image:
    radial-gradient(1100px 540px at 78% -8%, rgba(200,162,75,0.14), transparent 60%),
    radial-gradient(900px 500px at -5% 8%, rgba(22,48,75,0.55), transparent 55%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-br); text-decoration: none; }
a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--accent-br); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.015em; color: var(--text); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.narrow { max-width: 760px; }

/* ---- Skip link ---------------------------------------------------------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--accent); color: #1a1206; padding: 10px 16px; border-radius: 8px;
  font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; text-decoration: none; }

/* ---- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.35rem;
  letter-spacing: -0.02em; color: var(--text);
}
.brand:hover { text-decoration: none; }
.brand-mark { width: 30px; height: 30px; border-radius: 7px; flex: none; box-shadow: 0 1px 4px rgba(0,0,0,.45), 0 0 0 1px rgba(200,162,75,.35); }
.brand .q { color: var(--accent); }
.brand .coin { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: var(--text-dim); font-weight: 500; font-size: .96rem;
  padding: 8px 12px; border-radius: 9px; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--text); background: var(--line-soft); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--accent-br); }
.nav .nav-soon {
  color: var(--text-dim); opacity: .55; cursor: default; pointer-events: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav a.nav-soon { opacity: 1; pointer-events: auto; cursor: pointer; }
.nav a.nav-soon:hover { color: var(--text); background: var(--line-soft); text-decoration: none; }
.nav .nav-soon .tag {
  font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px; padding: 1px 7px; color: var(--accent);
}

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--text); width: 42px; height: 42px; border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 12px 16px 18px; box-shadow: var(--shadow);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a, .nav .nav-soon { padding: 12px 10px; font-size: 1.02rem; }
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 24px; border-radius: 12px; cursor: pointer;
  border: 1px solid transparent; transition: transform .12s ease, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-br), var(--gold));
  color: #1c1404; box-shadow: 0 14px 30px -12px rgba(200,162,75,.55);
}
.btn-primary:hover { color: #1c1404; box-shadow: 0 18px 38px -12px rgba(200,162,75,.7); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { color: var(--text); border-color: var(--accent); background: var(--line-soft); }
.btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }

/* ---- Hero --------------------------------------------------------------- */
.hero { padding: 84px 0 64px; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); display: inline-block; }
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem); margin: 0 0 8px;
  font-weight: 600;
}
.hero h1 .lux { font-style: italic; color: var(--accent-br); font-weight: 500; }
.hero .sub {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem); color: var(--text-dim); margin: 0 0 26px;
}
.hero .lead { font-size: 1.16rem; color: var(--text-dim); max-width: 640px; margin: 0 0 32px; }
.hero .lead strong { color: var(--text); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero-note { font-size: .9rem; color: var(--text-dim); }
.hero-note .dot { color: var(--accent); padding: 0 6px; }

/* ---- Stat strip --------------------------------------------------------- */
.statstrip {
  border-block: 1px solid var(--line); margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.statstrip .stat { padding: 26px 18px; text-align: center; border-left: 1px solid var(--line-soft); }
.statstrip .stat:first-child { border-left: none; }
.statstrip .num {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--accent-br); font-weight: 600; line-height: 1;
}
.statstrip .lab { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dim); margin-top: 8px; }
@media (max-width: 680px) {
  .statstrip { grid-template-columns: repeat(2, 1fr); }
  .statstrip .stat:nth-child(3) { border-left: none; }
  .statstrip .stat:nth-child(odd) { border-left: none; }
}

/* ---- Sections ----------------------------------------------------------- */
.section { padding: 76px 0; }
.section--alt { background: color-mix(in srgb, var(--surface) 70%, transparent); border-block: 1px solid var(--line-soft); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 14px; }
.section-head p { color: var(--text-dim); font-size: 1.08rem; margin: 0; }

/* ---- Feature grid ------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--card); border: 1px solid var(--line-soft); border-top: 2px solid var(--accent);
  border-radius: var(--radius); padding: 26px 24px; transition: transform .15s, border-color .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-top-color: var(--gold-br); }
.feature h3 { font-size: 1.18rem; margin: 0 0 10px; }
.feature p { color: var(--text-dim); margin: 0; font-size: .98rem; }

/* ---- Systems showcase --------------------------------------------------- */
.system-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 720px) { .system-grid { grid-template-columns: 1fr; } }
.system {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 20px 22px;
}
.system .ico {
  font-size: 1.6rem; line-height: 1; flex: none;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px;
}
.system h3 { font-size: 1.05rem; margin: 2px 0 5px; }
.system p { margin: 0; color: var(--text-dim); font-size: .95rem; }

/* ---- The loop (3 steps) ------------------------------------------------- */
.loop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px) { .loop { grid-template-columns: 1fr; } }
.loop-step { text-align: center; padding: 14px; }
.loop-num {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--accent-br); border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 35%, rgba(200,162,75,.18), transparent 70%);
}
.loop-step h3 { font-size: 1.25rem; margin: 0 0 8px; }
.loop-step p { color: var(--text-dim); margin: 0; }
.loop-tagline { text-align: center; font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--accent-br); margin-top: 46px; }

/* ---- Media slots (coming soon placeholders) ----------------------------- */
.slot {
  border: 1.5px dashed var(--line); border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 50%, transparent);
  display: grid; place-items: center; text-align: center; padding: 48px 24px; color: var(--text-dim);
}
.slot .slot-k { font-family: var(--font-display); font-size: 1.15rem; color: var(--text); margin-bottom: 6px; }
.slot .slot-s { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.slot--hero { aspect-ratio: 16 / 10; }
.slot--wide { aspect-ratio: 16 / 7; }
.slot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 720px){ .slot-grid { grid-template-columns: 1fr; } }
.slot--shot { aspect-ratio: 9 / 16; }

/* ---- Stores ------------------------------------------------------------- */
.stores { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 20px;
  background: var(--card); color: var(--text); min-width: 200px;
}
.store-badge:hover { text-decoration: none; border-color: var(--accent); }
.store-badge .s1 { font-size: .72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }
.store-badge .s2 { font-family: var(--font-display); font-size: 1.1rem; }
.store-badge--soon { opacity: .55; }
.fine { font-size: .88rem; color: var(--text-dim); margin-top: 18px; }
.rating-line {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 18px;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px; font-size: .9rem; color: var(--text-dim);
}
.rating-line .pill { font-family: var(--font-display); font-weight: 700; color: var(--accent-br); }

/* ---- Prose (legal / support / press) ------------------------------------ */
.page-hero { padding: 64px 0 26px; border-bottom: 1px solid var(--line-soft); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); margin: 0 0 10px; }
.page-hero .updated { color: var(--text-dim); font-size: .95rem; }
.prose { padding: 40px 0 72px; }
.prose h2 { font-size: 1.5rem; margin: 38px 0 12px; padding-top: 8px; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--text-dim); }
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--text); }
.prose a { color: var(--accent-br); }
.prose hr { border: none; border-top: 1px solid var(--line-soft); margin: 32px 0; }
.prose .lead-sum {
  background: var(--card); border: 1px solid var(--line-soft); border-left: 3px solid var(--accent);
  border-radius: var(--radius); padding: 18px 22px; margin: 0 0 26px;
}
.prose .lead-sum ul { margin: 0; }

/* ---- FAQ ---------------------------------------------------------------- */
.faq-group { margin-bottom: 38px; }
.faq-group > h2 { font-size: 1.4rem; margin: 0 0 16px; color: var(--accent-br); }
details.qa {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: var(--card); margin-bottom: 12px; overflow: hidden;
}
details.qa[open] { border-color: var(--line); }
details.qa summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1.04rem;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--accent);
  transition: transform .2s; flex: none;
}
details.qa[open] summary::after { transform: rotate(45deg); }
details.qa .qa-body { padding: 0 22px 20px; color: var(--text-dim); }
details.qa .qa-body p { margin: 0 0 10px; }
details.qa .qa-body p:last-child { margin-bottom: 0; }

/* ---- Press fact sheet --------------------------------------------------- */
.factsheet { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; margin: 0 0 8px; }
@media (max-width: 640px){ .factsheet { grid-template-columns: 1fr; } }
.factsheet .row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.factsheet .k { color: var(--accent); font-weight: 600; min-width: 120px; flex: none; }
.factsheet .v { color: var(--text-dim); }
.bynum {
  font-family: var(--font-display); font-size: 1.1rem; line-height: 1.9; color: var(--text-dim);
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px 26px;
}
.bynum b { color: var(--accent-br); font-weight: 600; }

/* ---- Coming soon (play / utility) --------------------------------------- */
.center-wrap { min-height: 56vh; display: grid; place-items: center; text-align: center; padding: 70px 0; }
.center-wrap h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); margin: 0 0 16px; }
.center-wrap p { color: var(--text-dim); font-size: 1.1rem; max-width: 540px; margin: 0 auto 14px; }
.center-wrap .big404 {
  font-family: var(--font-display); font-size: clamp(5rem, 18vw, 11rem); line-height: .9;
  color: var(--accent); opacity: .9; margin: 0 0 6px;
}
.center-wrap .links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); padding: 48px 0 40px; margin-top: 20px; background: color-mix(in srgb, var(--surface) 60%, transparent); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 22px; }
.footer-links a { color: var(--text-dim); font-size: .95rem; }
.footer-links a:hover { color: var(--accent-br); }
.footer-meta { color: var(--text-dim); font-size: .86rem; max-width: 760px; }
.footer-meta .rated { color: var(--text); font-weight: 600; }
.footer-meta .copy { margin-top: 10px; display: block; }

/* ---- iPhone device mockup ----------------------------------------------- */
/* Pure-CSS iPhone frame wrapping a real screenshot. Themed to the brand:
   dark machined frame + a thin metallic-gold edge. The screen uses the exact
   12 Pro Max aspect (1284:2778) so screenshots sit undistorted. */
.device {
  position: relative;
  width: 100%;
  padding: 2.5%;
  border-radius: 14% / 6.5%;
  background:
    linear-gradient(152deg, #2a3a4f 0%, #111e30 42%, #060d18 100%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.12),
    inset 0 0 0 1px rgba(255,255,255,.05),
    0 0 0 1.5px rgba(200,162,75,.30),
    0 34px 64px -30px rgba(0,0,0,.78);
}
.device__screen {
  position: relative;
  aspect-ratio: 1284 / 2778;
  border-radius: 11% / 5.1%;
  overflow: hidden;
  background: #05080d;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.65);
}
.device__screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Dynamic-Island-style pill, centred, sitting over the status bar */
.device__notch {
  position: absolute; z-index: 3; top: 2.4%; left: 50%; transform: translateX(-50%);
  width: 30%; height: 2.4%; min-height: 9px;
  background: #04070c; border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
/* hairline side buttons for realism (subtle) */
.device::after {
  content: ""; position: absolute; right: -2px; top: 23%; width: 2.5px; height: 9%;
  background: linear-gradient(#33445b, #18253a); border-radius: 0 2px 2px 0;
}
.device::before {
  content: ""; position: absolute; left: -2px; top: 19%; width: 2.5px; height: 15%;
  background: linear-gradient(#33445b, #18253a); border-radius: 2px 0 0 2px;
}

/* ---- Hero device showcase (3 phones, centre forward) -------------------- */
.device-stage { position: relative; }
.device-stage::before {
  content: ""; position: absolute; inset: 12% 8% 4%; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 55% at 50% 42%, rgba(200,162,75,.20), transparent 70%);
  filter: blur(8px);
}
.device-showcase {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  perspective: 1600px; padding: 18px 0 6px;
}
/* Each phone gets a sizing WRAPPER (.ds). The .device fills it at 100%, so its
   `padding` bezel is a % of the phone width (≈6px) — not of the wide row.
   Without the wrapper the bezel would resolve against the showcase and balloon. */
.device-showcase .ds { flex: none; }
.device-showcase .ds .device { width: 100%; }
.device-showcase .ds-center { width: clamp(200px, 26vw, 270px); z-index: 2; }
.device-showcase .ds-side   { width: clamp(170px, 22vw, 230px); z-index: 1; opacity: .94; }
.device-showcase .ds-left   { transform: rotate(-7deg) translateX(16%) translateY(5%); }
.device-showcase .ds-right  { transform: rotate(7deg)  translateX(-16%) translateY(5%); }
@media (prefers-reduced-motion: no-preference) {
  .device-showcase .ds { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
  .device-showcase:hover .ds-left  { transform: rotate(-9deg) translateX(10%) translateY(2%); }
  .device-showcase:hover .ds-right { transform: rotate(9deg)  translateX(-10%) translateY(2%); }
  .device-showcase:hover .ds-center { transform: translateY(-3%); }
}
@media (max-width: 720px) {
  .device-showcase .ds-side { display: none; }
  .device-showcase .ds-center { width: clamp(230px, 72vw, 300px); }
}

/* ---- Screenshot gallery (8 phones) -------------------------------------- */
.shots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 22px; }
@media (max-width: 900px) { .shots { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .shots { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; } }
.shot { margin: 0; }
.shot figcaption {
  text-align: center; margin-top: 14px;
  font-family: var(--font-display); font-size: .95rem; color: var(--text-dim);
}
.shot figcaption .cap-n { color: var(--accent); font-weight: 600; margin-right: 6px; }
@media (prefers-reduced-motion: no-preference) {
  .shot .device { transition: transform .25s ease, box-shadow .25s ease; }
  .shot:hover .device {
    transform: translateY(-7px);
    box-shadow:
      inset 0 1px 1px rgba(255,255,255,.12),
      0 0 0 1.5px rgba(230,200,121,.45),
      0 40px 70px -28px rgba(0,0,0,.8);
  }
}

/* ---- Reveal-on-load (respects reduced motion) --------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
  .reveal.d1 { animation-delay: .08s; }
  .reveal.d2 { animation-delay: .16s; }
  .reveal.d3 { animation-delay: .24s; }
  .reveal.d4 { animation-delay: .32s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}
