:root {
    --page: #FFF8FB;
    --surface: #FFFFFF;
    --pink-soft: #FFF0F6;
    --purple-soft: #F7F3FF;
    --gray-pink: #F8F4F6;
    --title: #32262D;
    --text: #51444C;
    --muted: #7C6D76;
    --faint: #A09199;
    --pink: #FF5D9E;
    --berry: #D94C83;
    --coral: #FF8EAC;
    --lavender: #8C76E8;
    --purple: #6753B5;
    --border: rgba(255, 93, 158, 0.15);
    --shadow: 0 14px 36px rgba(76, 48, 66, 0.08);
    --shadow-strong: 0 18px 46px rgba(217, 76, 131, 0.15);
    --gradient: linear-gradient(135deg, #FF8EAC 0%, #FF5D9E 52%, #8C76E8 100%);
    --footer: #30242B;
    --footer-text: #FFEAF2;
    --shell: min(1200px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--page);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
    font-size: 16px;
    line-height: 1.75;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
p, h1, h2, h3, h4 { margin-top: 0; }
main { min-height: 55vh; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; padding: 10px 16px; border-radius: 12px; background: var(--title); color: #fff; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid rgba(140, 118, 232, .55); outline-offset: 3px; }

.notice-bar { background: #3A2B34; color: #FFEAF2; font-size: .86rem; }
.notice-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.notice-inner p { margin: 0; }
.notice-links { display: flex; gap: 18px; }
.notice-links a:hover { color: #fff; }
.site-header { position: sticky; top: 0; z-index: 80; }
.main-nav { background: rgba(255, 248, 251, .94); border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); }
.nav-inner { min-height: 72px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand-mark { font-size: 1.65rem; font-weight: 900; letter-spacing: -.05em; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.desktop-nav-links { display: flex; align-items: center; justify-content: center; gap: 6px; min-width: 0; }
.nav-link { min-height: 44px; padding: 9px 16px; border-radius: 999px; color: var(--muted); font-weight: 700; white-space: nowrap; }
.nav-link:hover, .nav-link.is-active { background: var(--pink-soft); color: var(--berry); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.button, .channel-button, .mobile-menu-button, .panel-close, .mobile-panel-heading button {
    display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: 10px 20px; cursor: pointer; font-weight: 800; white-space: nowrap;
}
.button { background: var(--gradient); color: #fff; box-shadow: 0 10px 24px rgba(217, 76, 131, .22); }
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow-strong); }
.button-secondary { background: #fff; color: var(--berry); border: 1px solid rgba(217, 76, 131, .24); box-shadow: none; }
.button-small { min-height: 42px; padding: 8px 17px; font-size: .92rem; }
.channel-button, .mobile-menu-button { background: var(--surface); border: 1px solid var(--border); color: var(--title); }
.mobile-menu-button { display: none; padding: 8px 12px; font-size: .88rem; }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--berry); font-weight: 800; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(3px); }

.section { padding: 80px 0; }
.section-tight { padding: 54px 0; }
.section-soft { background: var(--pink-soft); }
.section-purple { background: var(--purple-soft); }
.section-dark { background: #3A2B34; color: #FFF7FA; }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-block; margin-bottom: 9px; color: var(--berry); font-weight: 900; font-size: .82rem; letter-spacing: .1em; }
h1, h2, h3 { color: var(--title); line-height: 1.2; }
h1 { font-size: clamp(2.45rem, 6vw, 5rem); letter-spacing: -.05em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.65rem); letter-spacing: -.035em; }
h3 { font-size: 1.18rem; }
.section-dark h2, .section-dark h3 { color: #fff; }
.lead { max-width: 760px; font-size: 1.1rem; color: var(--muted); }
.muted { color: var(--muted); }
.action-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 28px; }

.hero { position: relative; overflow: hidden; padding: 70px 0 58px; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); }
.hero::before { width: 360px; height: 360px; right: -120px; top: -110px; background: rgba(255, 142, 172, .18); }
.hero::after { width: 300px; height: 300px; left: -130px; bottom: -160px; background: rgba(140, 118, 232, .14); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .78fr .72fr; align-items: center; gap: 34px; }
.hero-copy .brand-kicker { display: inline-flex; padding: 7px 13px; border-radius: 999px; background: var(--pink-soft); color: var(--berry); font-weight: 900; }
.hero-copy p { max-width: 650px; }
.phone-visual { position: relative; min-height: 510px; display: grid; place-items: center; }
.phone-shell { width: min(300px, 100%); aspect-ratio: 9 / 18; padding: 12px; border-radius: 42px; background: #2D2329; box-shadow: 0 24px 70px rgba(76, 48, 66, .18); transform: rotate(2deg); }
.phone-screen { height: 100%; overflow: hidden; border-radius: 32px; background: linear-gradient(180deg, #FFF8FB 0%, #FFFFFF 65%, #F7F3FF 100%); padding: 28px 17px 18px; }
.phone-top { width: 40%; height: 7px; border-radius: 999px; background: #473740; margin: 0 auto 22px; opacity: .35; }
.phone-card { padding: 14px; margin-bottom: 12px; border-radius: 18px; background: #fff; box-shadow: 0 10px 24px rgba(76, 48, 66, .07); }
.phone-card strong { display: block; color: var(--title); }
.phone-media { aspect-ratio: 4 / 3; border-radius: 15px; margin-bottom: 10px; background: linear-gradient(135deg, #FFD2E1, #E4DCFF); position: relative; overflow: hidden; }
.phone-media::before, .phone-media::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.55); }
.phone-media::before { width: 120px; height: 120px; left: -25px; bottom: -55px; }
.phone-media::after { width: 70px; height: 70px; right: 12px; top: 14px; }
.hero-side { display: grid; gap: 18px; }
.hero-mini-card { padding: 26px; border: 1px solid var(--border); border-radius: 24px; background: rgba(255,255,255,.8); box-shadow: var(--shadow); }
.hero-mini-card:nth-child(2) { background: var(--purple-soft); }
.hero-mini-card p { margin-bottom: 0; color: var(--muted); }

.topic-strip { display: flex; gap: 15px; overflow-x: auto; scroll-snap-type: x proximity; padding: 4px 2px 18px; scrollbar-width: thin; }
.topic-chip { flex: 1 0 180px; min-width: 180px; scroll-snap-align: start; padding: 19px; border-radius: 20px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.topic-chip h3 { margin-bottom: 6px; }
.topic-chip p { margin-bottom: 10px; font-size: .92rem; color: var(--muted); }

.magazine-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 20px; }
.story-card { min-height: 250px; padding: 26px; border-radius: 26px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.story-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(255,240,246,.9), rgba(247,243,255,.5)); pointer-events: none; }
.story-card:nth-child(3n)::before { background: linear-gradient(145deg, rgba(247,243,255,.95), rgba(255,255,255,.75)); }
.story-card > * { position: relative; z-index: 1; }
.story-card.featured { grid-row: span 2; min-height: 520px; background: linear-gradient(145deg, #FFD4E3, #E9E1FF); }
.story-card.featured::after { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; right: -40px; top: 36px; background: rgba(255,255,255,.58); box-shadow: -110px 90px 0 rgba(255,255,255,.26); }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.tag { display: inline-flex; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.72); color: var(--berry); font-size: .78rem; font-weight: 800; }
.story-card p { color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.info-card { padding: 27px; border-radius: 24px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.info-card p:last-child { margin-bottom: 0; }
.info-card .number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 14px; background: var(--pink-soft); color: var(--berry); font-weight: 900; }
.info-card.purple .number { background: var(--purple-soft); color: var(--purple); }

.timeline { display: grid; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 170px 1fr auto; gap: 24px; align-items: start; padding: 25px 0; border-bottom: 1px solid var(--border); }
.timeline-item:first-child { border-top: 1px solid var(--border); }
.timeline-item h3 { margin-bottom: 0; }
.timeline-item p { margin-bottom: 5px; }
.timeline-note { color: var(--muted); font-size: .92rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-panel { padding: 34px; border-radius: 28px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.split-panel:nth-child(even) { background: var(--purple-soft); }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--berry); font-weight: 900; }

.quote-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.quote-card { padding: 25px; border-radius: 22px; background: #fff; border: 1px solid var(--border); }
.quote-card p { margin-bottom: 0; }
.quote-card::before { content: "“"; display: block; height: 28px; color: var(--coral); font-size: 2.6rem; line-height: 1; font-weight: 900; }

.faq-list { display: grid; gap: 12px; }
details { border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: 0 8px 22px rgba(76,48,66,.05); }
summary { cursor: pointer; list-style: none; padding: 20px 52px 20px 22px; color: var(--title); font-weight: 800; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; top: 15px; color: var(--berry); font-size: 1.6rem; }
details[open] summary::after { content: "−"; }
details p { padding: 0 22px 22px; margin: 0; color: var(--muted); }

.cta-panel { display: grid; grid-template-columns: 1.3fr auto; gap: 28px; align-items: center; padding: 42px; border-radius: 30px; background: linear-gradient(135deg, #FFF0F6, #F7F3FF); border: 1px solid var(--border); }
.cta-panel p { margin-bottom: 0; }

.page-hero { padding: 74px 0 48px; }
.page-hero-card { position: relative; overflow: hidden; padding: 52px; border-radius: 32px; background: linear-gradient(135deg, #FFF0F6 0%, #FFFFFF 55%, #F7F3FF 100%); border: 1px solid var(--border); box-shadow: var(--shadow); }
.page-hero-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -80px; top: -100px; border-radius: 50%; background: rgba(255, 93, 158, .09); pointer-events: none; }
.page-hero-card h1 { max-width: 850px; margin-bottom: 20px; font-size: clamp(2.4rem, 5vw, 4.5rem); }
.page-hero-card p { max-width: 820px; margin-bottom: 0; font-size: 1.08rem; color: var(--muted); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; font-size: .9rem; color: var(--muted); }
.breadcrumbs span { color: var(--faint); }

.content-index { display: flex; flex-wrap: wrap; gap: 10px; }
.content-index a { display: inline-flex; min-height: 42px; align-items: center; padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--border); color: var(--berry); font-weight: 800; }
.article-stack { display: grid; gap: 22px; }
.article-card { padding: 34px; border-radius: 26px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.article-card h2 { font-size: 1.65rem; }
.article-card h3 { margin-top: 22px; }
.article-card ul, .article-card ol { padding-left: 22px; }
.article-card li + li { margin-top: 8px; }
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { counter-increment: step; position: relative; padding: 26px 26px 26px 82px; border-radius: 22px; background: #fff; border: 1px solid var(--border); }
.step::before { content: counter(step); position: absolute; left: 24px; top: 24px; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 14px; background: var(--gradient); color: #fff; font-weight: 900; }
.step h3 { margin-bottom: 7px; }
.step p { margin-bottom: 0; }
.notice-box { padding: 24px; border-radius: 20px; background: var(--pink-soft); border-left: 4px solid var(--pink); }
.notice-box.purple { background: var(--purple-soft); border-left-color: var(--lavender); }
.notice-box h3 { margin-bottom: 8px; }
.notice-box p:last-child { margin-bottom: 0; }
.related-links { display: flex; flex-wrap: wrap; gap: 12px; }
.related-links a { display: inline-flex; min-height: 44px; align-items: center; padding: 9px 15px; border-radius: 14px; background: #fff; border: 1px solid var(--border); color: var(--berry); font-weight: 800; }
.service-tip { padding: 26px; border-radius: 22px; background: #3A2B34; color: #FFEAF2; }
.service-tip h2 { color: #fff; font-size: 1.45rem; }
.service-tip p:last-child { margin-bottom: 0; }
.compare-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.compare-card { padding: 27px; border-radius: 22px; background: #fff; border: 1px solid var(--border); }
.process-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-item { padding: 24px 20px; border-radius: 20px; background: #fff; border: 1px solid var(--border); }
.process-item span { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--pink-soft); color: var(--berry); font-weight: 900; }

.site-footer { padding: 64px 0 98px; background: var(--footer); color: var(--footer-text); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 32px; }
.site-footer h2 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-brand h2 { font-size: 2rem; }
.footer-brand p { max-width: 340px; color: #DCCBD3; }
.site-footer section > a { display: block; padding: 4px 0; color: #E8D8DF; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #DCCBD3; font-size: .9rem; }
.footer-bottom p { margin: 0; }

.channel-overlay { position: fixed; inset: 0; z-index: 88; background: rgba(45, 35, 41, .34); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, visibility .2s ease; }
.channel-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.desktop-channel-panel { position: fixed; left: 0; right: 0; top: 106px; z-index: 90; max-height: calc(100vh - 126px); overflow-y: auto; background: var(--page); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-strong); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-14px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.desktop-channel-panel.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.panel-shell { padding-top: 30px; padding-bottom: 34px; }
.panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.panel-heading h2 { margin-bottom: 0; font-size: 2rem; }
.panel-close, .mobile-panel-heading button { min-height: 42px; background: #fff; border: 1px solid var(--border); }
.channel-groups { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.channel-group { padding: 22px; border-radius: 22px; background: #fff; border: 1px solid var(--border); }
.channel-group h3 { margin-bottom: 12px; color: var(--berry); }
.channel-group a { display: block; padding: 11px 0; border-top: 1px solid rgba(255,93,158,.1); }
.channel-group a:first-of-type { border-top: 0; }
.channel-group strong, .channel-group span { display: block; }
.channel-group span { color: var(--muted); font-size: .82rem; }
.channel-group a.is-active { margin-inline: -10px; padding-inline: 10px; border-radius: 13px; background: var(--pink-soft); color: var(--berry); }
.channel-group a.is-active span { color: var(--berry); }
.mobile-channel-panel { display: none; }
.mobile-bottom-nav { display: none; }

@media (max-width: 1020px) {
    .hero-grid { grid-template-columns: 1fr .8fr; }
    .hero-side { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
    .magazine-grid { grid-template-columns: 1.25fr 1fr; }
    .story-card.featured { grid-row: span 2; }
    .card-grid, .quote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
    .channel-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-line { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    :root { --shell: calc(100% - 32px); }
    body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
    .notice-inner { min-height: 32px; }
    .notice-links a:first-child { display: none; }
    .notice-links { gap: 0; }
    .nav-inner { min-height: 62px; grid-template-columns: 1fr auto 1fr; gap: 8px; }
    .mobile-menu-button { display: inline-flex; justify-self: start; }
    .desktop-nav-links, .channel-button { display: none; }
    .brand { justify-self: center; }
    .nav-actions { justify-self: end; }
    .nav-actions .button { min-height: 42px; padding: 8px 13px; font-size: .86rem; }
    .site-header { top: 0; }
    .section { padding: 58px 0; }
    .section-tight { padding: 42px 0; }
    .hero { padding: 48px 0 42px; }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-copy { text-align: left; }
    .phone-visual { min-height: 450px; }
    .phone-shell { width: 245px; }
    .hero-side { grid-column: auto; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
    .hero-mini-card { flex: 0 0 82%; scroll-snap-align: start; }
    .magazine-grid, .card-grid, .quote-grid, .split, .compare-grid { grid-template-columns: 1fr; }
    .story-card.featured { grid-row: auto; min-height: 360px; }
    .timeline-item { grid-template-columns: 1fr; gap: 8px; }
    .timeline-item .text-link { justify-self: start; }
    .cta-panel { grid-template-columns: 1fr; padding: 28px; }
    .page-hero { padding: 46px 0 34px; }
    .page-hero-card { padding: 32px 24px; border-radius: 26px; }
    .article-card { padding: 26px 22px; }
    .process-line { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
    .site-footer { padding-bottom: 42px; }
    .desktop-channel-panel { display: none; }
    .mobile-channel-panel { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 92; max-height: 85vh; overflow: hidden; padding: 10px 16px calc(18px + env(safe-area-inset-bottom)); border-radius: 26px 26px 0 0; background: var(--page); box-shadow: 0 -18px 56px rgba(76,48,66,.18); visibility: hidden; pointer-events: none; transform: translateY(105%); transition: transform .25s ease, visibility .25s ease; }
    .mobile-channel-panel.is-open { visibility: visible; pointer-events: auto; transform: translateY(0); }
    .drag-handle { width: 52px; height: 5px; margin: 0 auto 10px; border-radius: 999px; background: #D8CBD2; }
    .mobile-panel-heading { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; }
    .mobile-channel-list { max-height: calc(85vh - 82px); overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-bottom: 8px; }
    .mobile-channel-list a { display: flex; min-height: 48px; align-items: center; padding: 10px 14px; border-radius: 15px; background: #fff; border: 1px solid var(--border); font-weight: 800; }
    .mobile-channel-list a.is-active { background: var(--pink-soft); color: var(--berry); }
    .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: grid; grid-template-columns: repeat(5, 1fr); min-height: calc(62px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); background: rgba(255,255,255,.96); border-top: 1px solid var(--border); backdrop-filter: blur(16px); }
    .mobile-bottom-nav a { display: flex; min-height: 62px; align-items: center; justify-content: center; padding: 8px 4px; color: var(--muted); font-size: .82rem; font-weight: 800; }
    .mobile-bottom-nav a.is-active { color: var(--berry); }
    .mobile-bottom-nav a.is-active span { padding: 5px 10px; border-radius: 999px; background: var(--pink-soft); }
}

@media (max-width: 440px) {
    :root { --shell: calc(100% - 32px); }
    h1 { font-size: 2.55rem; }
    .notice-inner p { font-size: .76rem; white-space: nowrap; }
    .notice-links a { font-size: .76rem; white-space: nowrap; }
    .mobile-menu-button { padding-inline: 9px; }
    .nav-actions .button { padding-inline: 10px; }
    .hero-mini-card { flex-basis: 90%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
