/* Currenzy mini site · currenzy.calenzy.com
   Palette: the two store blues and the cash green from the app icon.
   Type: Apple's rounded face for headlines (ui-rounded / SF Pro Rounded), Nunito where it is not
   available, Hanken Grotesk for text, JetBrains Mono for figures. */

:root {
  --bg: #F5F7FC;
  --paper: #FFFFFF;
  --ink: #0E1A3A;
  --ink-2: #2B3756;
  --mute: #6A7391;
  --line: #DCE2F0;
  --blue: #355FBC;
  --navy: #1E3A8A;
  --blue-soft: #E4ECFB;
  --sky: #4A8DE0;
  --cash: #6DB35C;
  --cash-deep: #3F7A34;
  --cash-light: #9CD489;
  --chart: #22C55E;
  --mint: #E8F5E4;
  --dark: #121212;
  --f-display: ui-rounded, "SF Pro Rounded", "Nunito", system-ui, sans-serif;
  --f-body: "Hanken Grotesk", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-xl: 42px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--f-body); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
h1, h2, h3 { font-family: var(--f-display); letter-spacing: -.015em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 6px; }

/* ---------- per language ---------- */
html[lang="ja"] { --f-body: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif; --f-display: ui-rounded, "SF Pro Rounded", "Nunito", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif; }
html[lang="ko"] { --f-body: "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif; --f-display: ui-rounded, "SF Pro Rounded", "Nunito", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif; }
html[lang="zh-Hans"] { --f-body: "PingFang SC", "Noto Sans SC", system-ui, sans-serif; --f-display: ui-rounded, "SF Pro Rounded", "Nunito", "PingFang SC", "Noto Sans SC", system-ui, sans-serif; }
html[lang="zh-Hant"] { --f-body: "PingFang TC", "Noto Sans TC", system-ui, sans-serif; --f-display: ui-rounded, "SF Pro Rounded", "Nunito", "PingFang TC", "Noto Sans TC", system-ui, sans-serif; }
html[lang="ja"] h1, html[lang="ja"] h2, html[lang="ja"] h3, html[lang="ko"] h1, html[lang="ko"] h2, html[lang="ko"] h3,
html[lang="zh-Hans"] h1, html[lang="zh-Hans"] h2, html[lang="zh-Hans"] h3, html[lang="zh-Hant"] h1, html[lang="zh-Hant"] h2, html[lang="zh-Hant"] h3 { letter-spacing: 0; }
html[lang="ja"] .display, html[lang="ko"] .display, html[lang="zh-Hans"] .display, html[lang="zh-Hant"] .display { line-height: 1.18; }
html[lang="ja"] .section-title, html[lang="ko"] .section-title, html[lang="zh-Hans"] .section-title, html[lang="zh-Hant"] .section-title { line-height: 1.25; }

/* ---------- header ---------- */
.header { position: sticky; top: 0; z-index: 20; background: rgba(245,247,252,.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-family: var(--f-display); font-weight: 700; font-size: 20px; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.nav { display: flex; gap: 30px; }
.nav a { color: var(--ink-2); font-weight: 500; font-size: 15px; }
.nav a:hover { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--blue); color: #fff; font-family: var(--f-display); font-weight: 700; font-size: 14px; padding: 11px 18px; border-radius: 999px; transition: background .15s, transform .15s; white-space: nowrap; }
.btn:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn-block { width: 100%; margin-top: 6px; }
.lang { position: relative; font-family: var(--f-mono); font-size: 12px; letter-spacing: .02em; color: var(--ink-2); }
.lang summary, .lang-static { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); background: #fff; padding: 7px 12px; border-radius: 999px; cursor: pointer; list-style: none; }
.lang summary::-webkit-details-marker { display: none; }
.lang-menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 160px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: 0 18px 40px -16px rgba(14,26,58,.3); padding: 6px; display: flex; flex-direction: column; }
.lang-menu a { padding: 9px 12px; border-radius: 10px; color: var(--ink-2); font-family: var(--f-body); font-size: 14px; }
.lang-menu a:hover, .lang-menu a.active { background: var(--blue-soft); color: var(--navy); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-top: 64px; padding-bottom: 88px; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); background: var(--blue-soft); padding: 7px 14px; border-radius: 999px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--chart); box-shadow: 0 0 0 3px rgba(34,197,94,.22); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.22); } 50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } }
.display { font-weight: 800; font-size: clamp(42px, 4.6vw, 66px); line-height: 1.04; letter-spacing: -.025em; text-wrap: balance; }
.display .accent { color: var(--blue); }
.lead { font-size: 20px; line-height: 1.55; color: var(--ink-2); max-width: 540px; text-wrap: pretty; }
.store-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.store-badge { display: block; transition: transform .15s; }
.store-badge img { height: 53px; width: auto; }
.store-badge:hover { transform: translateY(-2px); }
.hero-meta { display: flex; gap: 22px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 13px; color: var(--mute); }
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

.phone-stage { position: relative; height: 720px; display: flex; align-items: center; justify-content: center; }
.glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle at 50% 40%, #DCE7FB 0%, #E9EFFA 45%, rgba(245,247,252,0) 72%); top: 60px; left: 50%; transform: translateX(-50%); }
.phone { background: #0B1024; border-radius: 50px; padding: 12px; box-shadow: 0 30px 60px -20px rgba(14,26,58,.45), inset 0 0 0 1px rgba(255,255,255,.06); }
.phone-screen { border-radius: 40px; overflow: hidden; background: var(--dark); width: 100%; height: 100%; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-hero { position: relative; width: 322px; height: 696px; }
.float-notif { position: absolute; left: 0; top: 96px; width: 268px; background: #fff; border-radius: var(--r-md); padding: 12px 14px; box-shadow: 0 18px 40px -14px rgba(14,26,58,.35), 0 0 0 1px #E4E9F4; display: flex; gap: 12px; align-items: flex-start; }
.float-notif img { width: 34px; height: 34px; border-radius: 8px; flex: none; }
.fn-meta { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 10.5px; color: var(--mute); }
.fn-title { font-weight: 600; font-size: 14px; color: var(--ink); }
.fn-sub { font-size: 12.5px; color: var(--ink-2); }
.float-rate { position: absolute; right: 0; bottom: 120px; width: 190px; background: var(--dark); color: #fff; border-radius: var(--r-md); padding: 12px 14px; box-shadow: 0 18px 40px -14px rgba(14,26,58,.5); display: flex; flex-direction: column; gap: 6px; }
.fr-label { font-family: var(--f-mono); font-size: 10.5px; color: #9AA3B8; }
.fr-row { display: flex; align-items: baseline; gap: 8px; }
.fr-num { font-family: var(--f-display); font-weight: 700; font-size: 20px; }
.fr-delta { font-family: var(--f-mono); font-size: 11px; color: var(--chart); }

/* ---------- sections ---------- */
.section { padding: 24px 0 96px; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 36px; }
.section-head.center { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; margin-bottom: 40px; }
.section-eyebrow { display: flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.section-eyebrow::before { content: ""; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }
.section-eyebrow.green { color: var(--cash-light); }
.section-head.center .section-eyebrow { margin-bottom: 0; }
.section-title { font-weight: 700; font-size: 42px; line-height: 1.1; letter-spacing: -.02em; }
.section-sub { font-size: 18px; color: var(--mute); max-width: 520px; justify-self: end; text-wrap: pretty; }

/* ---------- features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.f-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; }
.f-num { font-family: var(--f-mono); font-size: 12px; letter-spacing: .04em; color: var(--mute); }
.f-visual { height: 156px; background: var(--bg); border-radius: var(--r-md); margin: 18px 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.f-visual.dark { background: var(--dark); }
.f-visual.photo { background: #0B0B0B; }
.f-visual.photo { padding: 0 14px; }
.f-visual.photo img { width: 100%; height: auto; max-height: 100%; object-fit: contain; border-radius: 14px; }
.f-card h3 { font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.f-card p { font-size: 15.5px; color: var(--ink-2); line-height: 1.5; }

.mini-list { display: flex; flex-direction: column; gap: 6px; }
.mini-row { display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 9px; padding: 6px 10px; font-size: 11px; color: var(--ink); width: 196px; }
.mini-row.on { background: var(--sky); color: #fff; }
.mini-row .code { font-family: var(--f-mono); font-size: 9px; font-weight: 500; width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff; }
.mini-row .amt { margin-left: auto; font-family: var(--f-mono); font-size: 11px; font-weight: 500; }
.c-us { background: var(--navy); } .c-eu { background: #2A4DB0; } .c-gb { background: #B2323C; }

.mini-alerts { display: flex; flex-direction: column; gap: 8px; width: 210px; }
.mini-alert { display: flex; align-items: center; gap: 10px; background: #1C1C1E; border-radius: 12px; padding: 10px 12px; }
.mini-alert .pair { display: flex; }
.mini-alert .pair i { width: 20px; height: 20px; border-radius: 50%; display: block; border: 2px solid #1C1C1E; }
.mini-alert .pair i + i { margin-left: -8px; }
.mini-alert .txt { display: flex; flex-direction: column; }
.mini-alert b { color: #fff; font-size: 12px; font-weight: 600; }
.mini-alert em { font-style: normal; font-family: var(--f-mono); font-size: 10px; }
.mini-alert .up { color: var(--chart); } .mini-alert .down { color: #F0506E; }
.mini-alert .toggle { margin-left: auto; width: 34px; height: 20px; border-radius: 999px; background: var(--navy); position: relative; }
.mini-alert .toggle::after { content: ""; position: absolute; right: 2px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: #fff; }

.mini-chart { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.periods { display: flex; gap: 4px; }
.periods span { font-family: var(--f-mono); font-size: 9px; color: var(--mute); padding: 3px 7px; border-radius: 999px; background: #fff; }
.periods span.on { background: var(--blue); color: #fff; }

.mini-calc { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.mini-calc .expr { font-family: var(--f-display); font-weight: 700; font-size: 20px; letter-spacing: -.01em; }
.mini-calc .keys { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; }
.mini-calc .keys span { width: 34px; height: 26px; border-radius: 999px; background: #E6E9F2; display: flex; align-items: center; justify-content: center; font-family: var(--f-mono); font-size: 12px; }
.mini-calc .keys .op { background: var(--blue); color: #fff; }

.swatches { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.swatch { display: flex; flex-direction: column; align-items: center; gap: 6px; font-family: var(--f-mono); font-size: 9.5px; color: var(--mute); }
.swatch i { display: block; width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 1px 3px rgba(14,26,58,.18); }

/* ---------- currenzy+ ---------- */
.plus-band { position: relative; overflow: hidden; background: linear-gradient(135deg, #0E1A3A 0%, var(--navy) 100%); border-radius: var(--r-xl); padding: 64px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; color: #fff; }
.plus-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(74,141,224,.35) 0%, rgba(74,141,224,0) 70%); right: -120px; top: -200px; }
.plus-copy { position: relative; }
.plus-copy .section-title { margin-bottom: 18px; }
.plus-sub { font-size: 18px; color: rgba(255,255,255,.72); max-width: 420px; text-wrap: pretty; }
.plans { position: relative; display: grid; grid-template-columns: 1fr 1.15fr; gap: 18px; }
.plan { border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.plan-free { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); }
.plan-pro { background: #fff; color: var(--ink); box-shadow: 0 30px 60px -30px rgba(0,0,0,.5); }
.plan-title { font-family: var(--f-display); font-weight: 700; font-size: 18px; }
.plan-head { display: flex; align-items: center; justify-content: space-between; }
.plan-badge { font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--cash-deep); background: var(--mint); padding: 5px 10px; border-radius: 999px; }
.ticks { display: flex; flex-direction: column; gap: 10px; }
.ticks li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; line-height: 1.45; }
.ticks svg { flex: none; margin-top: 3px; }
.plan-free .ticks li { color: rgba(255,255,255,.85); }
.plan-free .ticks svg { color: var(--cash-light); }
.plan-free .ticks li.muted { color: rgba(255,255,255,.55); }
.plan-free .ticks li.muted svg { color: rgba(255,255,255,.45); }
.plan-pro .ticks li { color: var(--ink-2); }
.plan-pro .ticks svg { color: var(--blue); }

/* ---------- screens ---------- */
.screens-row { display: flex; justify-content: center; gap: 44px; align-items: flex-start; padding: 0 28px; }
.screen-item { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.screen-item .phone { width: 300px; height: 648px; }
.screen-item figcaption { font-family: var(--f-mono); font-size: 12.5px; color: var(--mute); text-align: center; }

/* ---------- download ---------- */
.cta-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 56px 64px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.cta-icon { width: 72px; height: 72px; border-radius: 18px; box-shadow: 0 10px 24px -10px rgba(14,26,58,.4); }
.cta-card .section-title { font-size: 38px; }
.cta-sub { font-size: 18px; color: var(--ink-2); max-width: 600px; text-wrap: pretty; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 48px 0 40px; background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-brand .brand { font-size: 18px; }
.footer-brand .brand img { width: 30px; height: 30px; border-radius: 8px; }
.footer-brand p { font-size: 15px; color: var(--mute); max-width: 320px; }
.footer-col h4 { font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--mute); margin: 0 0 12px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; font-size: 15px; }
.footer-col a { color: var(--ink-2); }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; font-family: var(--f-mono); font-size: 12.5px; color: var(--mute); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--mute); }

/* ---------- legal pages ---------- */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 56px 28px 96px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 13px; color: var(--mute); margin-bottom: 36px; }
.legal-title { font-weight: 800; font-size: 52px; line-height: 1.05; letter-spacing: -.025em; margin-bottom: 12px; }
.legal-updated { font-family: var(--f-mono); font-size: 13px; color: var(--mute); margin-bottom: 36px; }
.legal-body { font-size: 17px; line-height: 1.6; color: var(--ink-2); }
.legal-body h2 { font-weight: 700; font-size: 22px; color: var(--ink); margin: 40px 0 12px; }
.legal-body p { margin: 0 0 14px; }
.legal-body ul { list-style: disc; padding-left: 22px; margin: 0 0 14px; display: flex; flex-direction: column; gap: 8px; }
.legal-body strong { color: var(--ink); font-weight: 600; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .hero-grid { gap: 32px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plus-band { grid-template-columns: 1fr; padding: 48px; }
  .screens-row { gap: 24px; }
  .screen-item .phone { width: 260px; height: 562px; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 32px; }
  .hero-copy { gap: 20px; }
  .lead { font-size: 17px; }
  .phone-stage { height: 640px; align-items: flex-start; padding-top: 40px; }
  .phone-hero { width: 262px; height: 566px; border-radius: 42px; padding: 10px; }
  .phone-hero .phone-screen { border-radius: 34px; }
  .glow { width: 460px; height: 460px; top: 30px; }
  .float-notif { left: 4px; top: 118px; width: 236px; }
  .float-rate { display: none; }
  .section { padding: 16px 0 56px; }
  .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
  .section-sub { justify-self: start; font-size: 16px; }
  .section-title { font-size: 32px; }
  .plans { grid-template-columns: 1fr; }
  .plus-band { padding: 32px 24px; gap: 28px; border-radius: 30px; }
  .screens-row { justify-content: flex-start; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 8px 24px 16px; -webkit-overflow-scrolling: touch; }
  .screen-item { scroll-snap-align: center; flex: none; }
  .screen-item .phone { width: 218px; height: 470px; border-radius: 34px; padding: 8px; }
  .screen-item .phone-screen { border-radius: 28px; }
  .cta-card { padding: 32px 24px; border-radius: 30px; }
  .cta-card .section-title { font-size: 32px; }
  .cta-sub { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-wrap { padding: 36px 24px 64px; }
  .legal-title { font-size: 38px; }
}
@media (max-width: 640px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .header-inner { height: 64px; }
  .brand { font-size: 18px; }
  .brand img { width: 32px; height: 32px; }
  .btn { padding: 10px 14px; font-size: 13px; }
  .feature-grid { grid-template-columns: 1fr; gap: 14px; }
  .f-card { padding: 20px; border-radius: 22px; }
  .store-badge img { height: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .eyebrow { font-size: 11px; letter-spacing: .04em; padding: 6px 12px; gap: 8px; }
  .eyebrow .dot { flex: none; }
}
/* ---------- motion: slow, calm, transform and opacity only ---------- */
@keyframes drift { 0%, 100% { transform: translate(-50%, 0) scale(1); } 50% { transform: translate(-46%, -3%) scale(1.06); } }
.glow { animation: drift 18s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.float-notif { animation: floaty 7s ease-in-out infinite; }
.float-rate { animation: floaty 9s ease-in-out -3s infinite; }
.float-rate path.line { stroke-dasharray: 260; stroke-dashoffset: 260; animation: draw 2.8s ease-out .5s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes glowdrift { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-80px, 60px); } }
.plus-glow { animation: glowdrift 24s ease-in-out infinite; }

.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.ticker-track { display: flex; gap: 44px; width: max-content; padding: 14px 0; animation: ticker 110s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker span { display: flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .04em; color: var(--mute); white-space: nowrap; }
.ticker b { color: var(--ink); font-weight: 500; }
@keyframes ticker { to { transform: translateX(-50%); } }

.mini-chart .cursor { offset-path: path("M0 70 C14 62 22 30 38 34 S60 76 76 60 S96 14 116 22 S140 66 160 50 S194 18 220 30"); offset-rotate: 0deg; offset-distance: 72%; animation: sweep 16s ease-in-out infinite alternate; }
@keyframes sweep { from { offset-distance: 6%; } to { offset-distance: 96%; } }

@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.screen-item .phone { animation: bob 11s ease-in-out infinite; }
.screen-item:nth-child(2) .phone { animation-delay: -4s; }
.screen-item:nth-child(3) .phone { animation-delay: -8s; }

.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.feature-grid .f-card:nth-child(2) { transition-delay: .08s; }
.feature-grid .f-card:nth-child(3) { transition-delay: .16s; }
.feature-grid .f-card:nth-child(4) { transition-delay: .06s; }
.feature-grid .f-card:nth-child(5) { transition-delay: .14s; }
.feature-grid .f-card:nth-child(6) { transition-delay: .22s; }
.screens-row .screen-item:nth-child(2) { transition-delay: .1s; }
.screens-row .screen-item:nth-child(3) { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .eyebrow .dot, .glow, .float-notif, .float-rate, .plus-glow, .ticker-track, .mini-chart .cursor, .screen-item .phone { animation: none; }
  .float-rate path.line { stroke-dashoffset: 0; animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
