/* ================================================================
   Pokeka Tracker — shared styles for landing + privacy across locales.
   Locale-specific overrides (font stack, line-height) are set per
   page via a small inline <style> declaring CSS custom properties.
   ================================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #F7F5F0;
  --paper: #EFEDE6;
  --ink: #1C1917;
  --ink-light: #78716C;
  --ink-faint: #A8A29E;
  --rule: #D6D3CD;
  --gold: #D97706;
  --gold-soft: #FEF3C7;
  --green: #16A34A;
  --green-soft: #DCFCE7;
  --surface: #FFFFFF;
  --max-w: 1120px;
  /* Locale-tunable defaults (EN). JP/HK pages override via inline :root. */
  --font-body: 'DM Sans', sans-serif;
  --line-body: 1.7;
  --line-hero-desc: 1.65;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: var(--line-body);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* subtle paper grain — kept below nav so buttons stay crisp */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

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

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ---- nav ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(247, 245, 240, 0.85);
  border-bottom: 1px solid var(--rule);
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.nav-brand img { width: 30px; height: 30px; border-radius: 7px; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--ink-light); letter-spacing: 0.01em; transition: color 0.15s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.btn-appstore {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: var(--ink); color: #FFFFFF;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em; transition: background 0.15s, transform 0.15s;
}
.nav-links a.btn-appstore:hover { background: #000000; color: #FFFFFF; }
.nav-links a.btn-appstore svg { width: 14px; height: 14px; fill: #FFFFFF; }

/* ---- hero ---- */
.hero { padding: 96px 0 0; position: relative; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-text { position: relative; z-index: 2; }

.hero-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.hero-label::before { content: ''; width: 16px; height: 1px; background: var(--gold); }

.hero h1 { font-size: clamp(38px, 4.5vw, 54px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.08; margin-bottom: 12px; }
.hero-desc { font-size: 16px; color: var(--ink-light); max-width: 460px; margin-bottom: 36px; line-height: var(--line-hero-desc); }

.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; background: var(--ink); color: #FFFFFF;
  border-radius: 10px; font-size: 15px; font-weight: 600;
  letter-spacing: -0.005em; transition: background 0.15s, transform 0.15s;
}
.btn-primary:hover { background: #000000; transform: translateY(-1px); }
.btn-primary svg { width: 16px; height: 16px; fill: #FFFFFF; }

.btn-ghost { font-size: 14px; color: var(--ink-light); padding: 13px 20px; transition: color 0.15s; }
.btn-ghost:hover { color: var(--ink); }

.hero-visual { position: relative; height: 420px; display: flex; align-items: flex-end; }

/* abstract chart visual */
.chart-visual { width: 100%; height: 100%; position: relative; }
.chart-visual svg { width: 100%; height: 100%; overflow: visible; }
.chart-visual svg text { font-family: var(--font-body); }
.chart-value { position: absolute; top: 40px; right: 24px; text-align: right; }
.chart-value-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: 4px; }
.chart-value-num { font-size: 32px; font-weight: 700; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.chart-value-change { font-size: 14px; font-weight: 500; color: var(--green); margin-top: 2px; }

/* ---- divider ---- */
.divider { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* ---- features ---- */
.features { padding: 96px 0 80px; }
.section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 12px; }
.section-title-jp, .section-title-sub { font-size: 15px; font-weight: 400; color: var(--ink-light); margin-bottom: 56px; }

.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: 16px; overflow: hidden;
}
.feature-card { background: var(--surface); padding: 36px 32px; position: relative; transition: background 0.2s; }
.feature-card:hover { background: #FEFDFB; }
.feature-num { font-size: 48px; font-weight: 700; color: var(--paper); line-height: 1; margin-bottom: 16px; letter-spacing: -0.04em; user-select: none; }
.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.01em; }
.feature-card p { font-size: 14px; color: var(--ink-light); line-height: 1.65; }

/* ---- price alerts showcase ---- */
.alerts { padding: 96px 0; position: relative; overflow: hidden; }
.alerts .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.alerts-text .section-label { color: var(--gold); }
.alerts-text .section-label::before { content: ''; display: inline-block; width: 16px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 8px; }
.alerts-text h2 { font-size: clamp(30px, 3.8vw, 42px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.alerts-text p.lead { font-size: 15px; color: var(--ink-light); line-height: 1.75; margin-bottom: 28px; max-width: 480px; }

.alerts-bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 0; }
.alerts-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--ink); }
.alerts-bullets li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.alerts-bullets li span { color: var(--ink-light); line-height: 1.65; }

.alerts-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 440px; }

/* phone frame */
.phone {
  width: 300px; height: 440px;
  background: linear-gradient(180deg, #2a2724 0%, #1a1816 100%);
  border-radius: 44px; padding: 12px;
  box-shadow: 0 40px 80px -20px rgba(28, 25, 23, 0.35), 0 20px 40px -10px rgba(28, 25, 23, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(217, 119, 6, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(22, 163, 74, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #2c2a27 0%, #1a1816 100%);
  padding: 60px 16px 20px; position: relative; overflow: hidden;
}
.phone-screen::before {
  content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 94px; height: 26px; background: #000; border-radius: 14px;
}
.phone-time { position: absolute; top: 18px; left: 28px; font-size: 13px; font-weight: 600; color: #FFFFFF; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.phone-status { position: absolute; top: 18px; right: 24px; display: flex; gap: 4px; align-items: center; color: #FFFFFF; }
.phone-status svg { width: 14px; height: 10px; }

.notif {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(40px) saturate(1.6);
  -webkit-backdrop-filter: blur(40px) saturate(1.6);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px; padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  animation: notifFloat 4s ease-in-out infinite;
}
.notif + .notif { margin-top: 10px; }
.notif-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.notif-icon { width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; }
.notif-app { font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.95); letter-spacing: 0.02em; text-transform: uppercase; flex: 1; }
.notif-time { font-size: 11px; color: rgba(255, 255, 255, 0.55); }
.notif-title { font-size: 13px; font-weight: 600; color: #FFFFFF; margin-bottom: 3px; letter-spacing: -0.005em; }
.notif-body { font-size: 12px; color: rgba(255, 255, 255, 0.78); line-height: 1.45; }
.notif-body strong { color: #FFFFFF; font-weight: 600; }
.notif .gain { color: #4ADE80; }
.notif .loss { color: #FB923C; }

@keyframes notifFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.notif.delay1 { animation-delay: 0.8s; }
.notif.delay2 { animation-delay: 1.6s; }

/* ---- DMM Myca import ---- */
.import-section { padding: 96px 0; border-top: 1px solid var(--rule); }
.import-section .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.import-section .section-label { color: var(--gold); }
.import-section .section-label::before { content: ''; display: inline-block; width: 16px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 8px; }
.import-section h2 { font-size: clamp(30px, 3.8vw, 42px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.import-section p.lead { font-size: 15px; color: var(--ink-light); line-height: 1.75; margin-bottom: 28px; max-width: 480px; }

.import-card {
  background: var(--surface); border: 1px solid var(--rule); border-radius: 18px; padding: 0;
  box-shadow: 0 30px 60px -20px rgba(28, 25, 23, 0.18), 0 12px 24px -8px rgba(28, 25, 23, 0.08);
  overflow: hidden; max-width: 460px; margin: 0 auto; width: 100%;
}
.import-card-head {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(180deg, #FEFDFB 0%, #F7F5F0 100%);
  border-bottom: 1px solid var(--rule);
  font-size: 13px; font-weight: 600;
}
.import-card-head svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.import-card-head .import-progress { margin-left: auto; font-size: 11px; color: var(--green); font-weight: 600; letter-spacing: 0.02em; }
.import-rows { padding: 8px 0; }
.import-row {
  display: grid; grid-template-columns: 1fr auto auto auto; gap: 12px; align-items: center;
  padding: 10px 20px; font-size: 13px;
  border-bottom: 1px solid var(--paper);
  animation: rowFadeIn 0.5s ease forwards; opacity: 0;
}
.import-row:last-child { border-bottom: none; }
.import-row:nth-child(1) { animation-delay: 0.1s; }
.import-row:nth-child(2) { animation-delay: 0.25s; }
.import-row:nth-child(3) { animation-delay: 0.4s; }
.import-row:nth-child(4) { animation-delay: 0.55s; }
@keyframes rowFadeIn { to { opacity: 1; } }
.import-row-name { font-weight: 500; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.import-row-qty { font-size: 12px; color: var(--ink-light); font-variant-numeric: tabular-nums; }
.import-row-price { font-size: 12px; color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; min-width: 56px; text-align: right; }
.import-row-check { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.import-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: var(--ink); color: #FFFFFF;
  font-size: 13px; font-weight: 600;
}
.import-card-foot .import-arrow { transition: transform 0.2s; }

/* ---- Lottery alerts ---- */
.lottery-section { padding: 96px 0; border-top: 1px solid var(--rule); }
.lottery-section .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.lottery-section .section-label { color: var(--gold); }
.lottery-section .section-label::before { content: ''; display: inline-block; width: 16px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 8px; }
.lottery-section h2 { font-size: clamp(30px, 3.8vw, 42px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.lottery-section p.lead { font-size: 15px; color: var(--ink-light); line-height: 1.75; margin-bottom: 28px; max-width: 480px; }

.lottery-feed { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; width: 100%; }
.lottery-item {
  background: var(--surface); border: 1px solid var(--rule); border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 20px -8px rgba(28, 25, 23, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lottery-item-vendor { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
.lottery-item-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.4; }
.lottery-item-meta { display: flex; align-items: center; gap: 10px; }
.lottery-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; background: var(--green-soft); color: var(--green);
  border-radius: 100px; font-size: 11px; font-weight: 600;
}
.lottery-pill::before {
  content: ''; width: 5px; height: 5px;
  background: var(--green); border-radius: 50%;
  animation: lotteryPulse 2s ease-in-out infinite;
}
@keyframes lotteryPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.lottery-pill--upcoming { background: var(--gold-soft); color: var(--gold); }
.lottery-pill--upcoming::before { background: var(--gold); }
.lottery-deadline { font-size: 12px; color: var(--ink-light); }

/* ---- details ---- */
.details { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.details .wrap { display: grid; grid-template-columns: 320px 1fr; gap: 80px; }
.details-intro { position: sticky; top: 80px; align-self: start; }
.details-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

.detail-item { padding: 28px 24px; border-bottom: 1px solid var(--rule); border-left: 1px solid var(--rule); position: relative; }
.detail-item:nth-child(odd) { border-left: none; }
.detail-item:nth-last-child(-n+2) { border-bottom: none; }

.detail-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--ink-light); background: var(--cream);
}
.detail-icon svg { width: 16px; height: 16px; }
.detail-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.005em; }
.detail-item p { font-size: 13px; color: var(--ink-light); line-height: 1.6; }

/* ---- privacy strip on landing ---- */
.privacy-strip { padding: 48px 0; text-align: center; }
.privacy-inner {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border: 1px solid var(--rule); border-radius: 10px;
  font-size: 14px; color: var(--ink-light); background: var(--surface);
}
.privacy-inner svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* ---- faq ---- */
.faq { padding: 96px 0 80px; border-top: 1px solid var(--rule); background: var(--cream); }
.faq .wrap { max-width: 820px; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  cursor: pointer; padding: 24px 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 16px; font-weight: 600; color: var(--ink);
  list-style: none; letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--ink-light); flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body { padding: 0 8px 24px; font-size: 14px; line-height: 1.8; color: var(--ink-light); }

/* ---- cta ---- */
.cta { padding: 96px 0; text-align: center; position: relative; }
.cta h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.cta-sub { font-size: 15px; color: var(--ink-light); margin-bottom: 36px; }

/* ---- footer ---- */
footer { border-top: 1px solid var(--rule); padding: 28px 0; }
footer .wrap { display: flex; align-items: center; justify-content: space-between; }
.footer-left { font-size: 12px; color: var(--ink-faint); }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 12px; color: var(--ink-faint); transition: color 0.15s; }
.footer-links a:hover { color: var(--ink); }

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 5px 24px 5px 10px;
  font-size: 12px;
  font-family: inherit;
  color: var(--ink-faint);
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23A8A29E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 5 6 8 9 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 7px center;
  background-size: 10px;
  transition: color 0.15s, border-color 0.15s;
}
.lang-select:hover { color: var(--ink); border-color: var(--ink-light); }
.lang-select:focus { outline: none; border-color: var(--ink); color: var(--ink); }

/* ---- privacy page content ---- */
.content { padding: 64px 0 96px; }
.content h1 { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.content .meta { font-size: 13px; color: var(--ink-faint); margin-bottom: 48px; }
.content h2 { font-size: 18px; font-weight: 600; margin-top: 40px; margin-bottom: 12px; letter-spacing: -0.01em; }
.content p { font-size: 14px; color: var(--ink-light); margin-bottom: 16px; }
.content ul { font-size: 14px; color: var(--ink-light); margin-bottom: 16px; padding-left: 20px; }
.content li { margin-bottom: 6px; }
.content a { color: var(--ink-light); }
.content a:hover { color: var(--ink); }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { height: 280px; }
  .features-grid { grid-template-columns: 1fr; }

  .alerts { padding: 64px 0; }
  .alerts .wrap { grid-template-columns: 1fr; gap: 48px; }
  .alerts-text { text-align: center; }
  .alerts-text p.lead { margin: 0 auto 28px; }
  .alerts-bullets { text-align: left; max-width: 440px; margin: 0 auto; }

  .import-section, .lottery-section { padding: 64px 0; }
  .import-section .wrap, .lottery-section .wrap { grid-template-columns: 1fr; gap: 48px; }
  .import-section .import-text, .lottery-section .lottery-text { text-align: center; }
  .import-section .import-text p.lead, .lottery-section .lottery-text p.lead { margin: 0 auto 28px; }
  .import-section .import-text .alerts-bullets, .lottery-section .lottery-text .alerts-bullets { text-align: left; max-width: 440px; margin: 0 auto; }

  .details .wrap { grid-template-columns: 1fr; gap: 40px; }
  .details-intro { position: static; text-align: center; }
  .details-list { grid-template-columns: 1fr; }
  .detail-item { border-left: none !important; }
  .detail-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 64px 0 0; }
  .features { padding: 64px 0 56px; }
  .details { padding: 56px 0; }
  .cta { padding: 64px 0; }
  .content { padding: 48px 0 64px; }

  .nav-links .nav-hide-sm { display: none; }

  footer .wrap { flex-direction: column; gap: 12px; text-align: center; }
}

/* ---- entrance animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* chart line draw-in */
.chart-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.chart-fill {
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeUp { to { opacity: 1; } }

/* stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.4s; }
