
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #000000; --black-soft: #0A0A0A; --black-card: #141414; --black-elevated: #1A1A1A;
  --white: #FFFFFF; --white-off: #FAFAFA; --light-card: #FFFFFF;
  --light-bg: #F7F5F2; --light-border: rgba(0,0,0,0.07); --light-border-hover: rgba(106,26,132,0.25);
  --purple: #6A1A84; --purple-light: #8B3AAF; --purple-bright: #9B4DCA;
  --purple-pale: #F3E8F9; --purple-glow: rgba(106,26,132,0.08); --purple-glow-strong: rgba(106,26,132,0.25);
  --magenta: #D946EF; --magenta-pale: #FDF0FF;
  --gold: #F59E0B; --gold-pale: #FEF9EC;
  --success: #10B981; --success-pale: #ECFDF5;
  --text-dark: #1A1A1A; --text-body: #4A4A4A; --text-muted-light: #8A8A8A;
  --text-on-dark: #C8C8C8; --text-muted-dark: #6B6B6B;
  --dark-border: rgba(255,255,255,0.08); --dark-border-hover: rgba(106,26,132,0.4);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
html[lang="zh-TW"], html[lang="zh-CN"] { --font-body: 'Noto Sans TC', 'DM Sans', system-ui, sans-serif; }
html[lang="zh-CN"] { --font-body: 'Noto Sans SC', 'DM Sans', system-ui, sans-serif; }
html[lang="ja"] { --font-body: 'Noto Sans JP', 'DM Sans', system-ui, sans-serif; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body); background: var(--white);
  color: var(--text-body); overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700;
  color: var(--text-dark); line-height: 1.15; margin-bottom: 20px;
}
html:not([lang="en"]) .section-title { font-family: var(--font-body); }
html:not([lang="en"]) .hero h1 { font-family: var(--font-body); letter-spacing: 0; }
html:not([lang="en"]) .hero h1 em { font-style: normal; }
html:not([lang="en"]) .opp-num,
html:not([lang="en"]) .price-amount,
html:not([lang="en"]) .srv-num { font-family: 'Playfair Display', Georgia, serif; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted-light); max-width: 600px; line-height: 1.6; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes glow { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } }

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; } .reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; } .reveal-delay-4 { transition-delay: 0.4s; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 24px;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(24px); transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; display: flex;
  align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text-muted-dark); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--purple) !important; color: var(--white) !important;
  padding: 9px 20px !important; border-radius: 8px !important; font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}
.nav-cta:hover {
  background: var(--purple-light) !important; transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--purple-glow-strong);
}

/* LANG SWITCHER */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.06); border-radius: 6px; padding: 2px;
  margin-left: 8px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted-dark); font-size: 0.72rem; font-weight: 600;
  padding: 5px 8px; border-radius: 4px; transition: all 0.2s;
  font-family: var(--font-body); white-space: nowrap;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { background: var(--purple); color: var(--white); }

.nav-mobile-btn {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.nav-mobile-btn span {
  display: block; width: 22px; height: 2px; background: var(--white);
  position: absolute; left: 5px; transition: all 0.3s;
}
.nav-mobile-btn span:nth-child(1) { top: 9px; }
.nav-mobile-btn span:nth-child(2) { top: 15px; }
.nav-mobile-btn span:nth-child(3) { top: 21px; }

/* HERO */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px; background: var(--black);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(120px); animation: glow 6s ease-in-out infinite; }
.hero-orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(106,26,132,0.18), transparent 70%); top: -15%; right: -10%; }
.hero-orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(217,70,239,0.08), transparent 70%); bottom: 5%; left: -10%; animation-delay: 3s; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(106,26,132,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(106,26,132,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(106,26,132,0.12); border: 1px solid rgba(106,26,132,0.3);
  border-radius: 100px; padding: 6px 16px 6px 8px;
  font-size: 0.8rem; color: var(--purple-bright); margin-bottom: 32px;
  animation: fadeUp 0.8s ease-out;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--purple-bright); border-radius: 50%; position: relative; }
.hero-badge-dot::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--purple-bright); animation: pulse-ring 2s ease-out infinite;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700; color: var(--white); line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 24px; animation: fadeUp 0.8s ease-out 0.1s both;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-bright), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1.2rem; color: var(--text-muted-dark); line-height: 1.7;
  max-width: 540px; margin-bottom: 40px; animation: fadeUp 0.8s ease-out 0.2s both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s ease-out 0.3s both; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 600; text-decoration: none; transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--purple); color: var(--white); }
.btn-primary:hover { background: var(--purple-light); transform: translateY(-2px); box-shadow: 0 12px 40px var(--purple-glow-strong); }
.btn-ghost-dark { background: transparent; color: var(--text-on-dark); border: 1px solid rgba(255,255,255,0.15); }
.btn-ghost-dark:hover { border-color: var(--purple); color: var(--purple-bright); }
.btn-ghost-light { background: transparent; color: var(--text-body); border: 1px solid var(--light-border); }
.btn-ghost-light:hover { border-color: var(--purple); color: var(--purple); }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; animation: fadeUp 0.8s ease-out 0.4s both; }
.hero-stat-val { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--white); }
.hero-stat-val span { color: var(--purple-bright); }
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted-dark); margin-top: 4px; }

.hero-to-light { height: 80px; background: linear-gradient(to bottom, var(--black), var(--light-bg)); }

/* LOGOS */
.logos { padding: 48px 0; background: var(--light-bg); border-bottom: 1px solid var(--light-border); }
.logos-label { text-align: center; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted-light); margin-bottom: 28px; }
.logos-track { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logos-track span { font-size: 0.95rem; font-weight: 600; color: rgba(0,0,0,0.2); letter-spacing: 0.02em; white-space: nowrap; transition: color 0.3s; }
.logos-track span:hover { color: rgba(0,0,0,0.5); }

/* TECH */
.tech-stack { padding: 56px 0; text-align: center; background: var(--light-bg); }
.tech-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.tech-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--light-border); border-radius: 8px; padding: 8px 16px; font-size: 0.8rem; color: var(--text-body); transition: border-color 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.tech-badge:hover { border-color: var(--light-border-hover); }
.tech-badge-dot { width: 6px; height: 6px; border-radius: 50%; }

/* OPPORTUNITY */
.opportunity { padding: 100px 0; background: var(--white); }
.opp-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 56px; }
.opp-card { background: var(--white); border-radius: 16px; padding: 36px 32px; position: relative; overflow: hidden; border: 1px solid var(--light-border); box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.opp-card:hover { border-color: var(--light-border-hover); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(106,26,132,0.08); }
.opp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.opp-card:nth-child(1)::before { background: var(--purple); }
.opp-card:nth-child(2)::before { background: var(--magenta); }
.opp-card:nth-child(3)::before { background: var(--gold); }
.opp-num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: var(--text-dark); line-height: 1; }
.opp-card:nth-child(2) .opp-num { color: var(--magenta); }
.opp-card:nth-child(3) .opp-num { color: var(--gold); }
.opp-label { font-size: 1rem; color: var(--text-body); margin: 12px 0 8px; font-weight: 500; }
.opp-source { font-size: 0.75rem; color: var(--text-muted-light); font-style: italic; }
.opp-quote { margin-top: 40px; background: var(--purple-pale); border: 1px solid rgba(106,26,132,0.12); border-radius: 16px; padding: 32px 40px; display: flex; align-items: flex-start; gap: 20px; }
.opp-quote-icon { flex-shrink: 0; width: 48px; height: 48px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 2px 8px rgba(106,26,132,0.1); }
.opp-quote-text { font-size: 1.05rem; line-height: 1.7; color: var(--text-body); }
.opp-quote-text strong { color: var(--purple); font-weight: 600; }

/* SERVICES */
.services { padding: 100px 0; background: var(--light-bg); position: relative; }
.services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--light-border); }
.srv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.srv-card { background: var(--white); border-radius: 16px; padding: 32px 24px; border: 1px solid var(--light-border); box-shadow: 0 2px 12px rgba(0,0,0,0.03); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.srv-card:hover { border-color: var(--light-border-hover); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(106,26,132,0.08); }
.srv-num { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--purple); margin-bottom: 20px; }
.srv-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.srv-card:nth-child(1) .srv-icon { background: var(--purple-pale); }
.srv-card:nth-child(2) .srv-icon { background: var(--magenta-pale); }
.srv-card:nth-child(3) .srv-icon { background: var(--gold-pale); }
.srv-card:nth-child(4) .srv-icon { background: var(--success-pale); }
.srv-title { font-family: var(--font-body); font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; line-height: 1.3; }
.srv-desc { font-size: 0.85rem; color: var(--text-muted-light); line-height: 1.6; margin-bottom: 20px; }
.srv-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.srv-list li { font-size: 0.82rem; color: var(--text-body); padding-left: 18px; position: relative; }
.srv-list li::before { content: '▸'; position: absolute; left: 0; color: var(--purple); }

/* PRODUCTS */
.products { padding: 100px 0; background: var(--white); }
.prod-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 56px; }
.prod-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; background: var(--white); border-radius: 16px; padding: 32px 36px; border: 1px solid var(--light-border); box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.prod-card:hover { border-color: var(--light-border-hover); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(106,26,132,0.08); }
.prod-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.prod-card:nth-child(1) .prod-icon { background: var(--purple-pale); }
.prod-card:nth-child(2) .prod-icon { background: var(--magenta-pale); }
.prod-card:nth-child(3) .prod-icon { background: var(--gold-pale); }
.prod-tag { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; margin-bottom: 8px; }
.prod-card:nth-child(1) .prod-tag { background: var(--purple-pale); color: var(--purple); }
.prod-card:nth-child(2) .prod-tag { background: var(--magenta-pale); color: var(--magenta); }
.prod-card:nth-child(3) .prod-tag { background: var(--gold-pale); color: var(--gold); }
.prod-name { font-family: var(--font-body); font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.prod-desc { font-size: 0.9rem; color: var(--text-muted-light); line-height: 1.6; }
.prod-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--light-border); display: flex; align-items: center; justify-content: center; color: var(--text-muted-light); transition: all 0.3s; flex-shrink: 0; }
.prod-card:hover .prod-arrow { border-color: var(--purple); color: var(--purple); transform: translateX(4px); }

/* PRICING */
.pricing { padding: 100px 0; background: var(--light-bg); position: relative; }
.pricing::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--light-border); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.price-card { background: var(--white); border-radius: 20px; padding: 40px 32px; border: 1px solid var(--light-border); position: relative; box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.price-card:hover { border-color: var(--light-border-hover); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(106,26,132,0.08); }
.price-card.featured { border-color: var(--purple); box-shadow: 0 4px 24px rgba(106,26,132,0.12); }
.price-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--purple); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.price-tier { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; color: var(--purple); }
.price-card:nth-child(3) .price-tier { color: var(--gold); }
.price-amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--text-dark); line-height: 1; margin-bottom: 4px; }
.price-period { font-size: 0.85rem; color: var(--text-muted-light); margin-bottom: 24px; }
.price-divider { height: 1px; background: var(--light-border); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li { font-size: 0.875rem; color: var(--text-body); padding-left: 24px; position: relative; line-height: 1.5; }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.price-btn { display: block; width: 100%; text-align: center; padding: 14px; border-radius: 10px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.25s; cursor: pointer; border: 1px solid var(--light-border); background: transparent; color: var(--text-body); }
.price-btn:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-pale); }
.price-card.featured .price-btn { background: var(--purple); color: var(--white); border: none; }
.price-card.featured .price-btn:hover { background: var(--purple-light); box-shadow: 0 8px 30px var(--purple-glow-strong); transform: translateY(-1px); }
.price-note { text-align: center; margin-top: 32px; font-size: 0.85rem; color: var(--text-muted-light); }
.price-note strong { color: var(--purple); font-weight: 600; }

/* CASES */
.cases { padding: 100px 0; background: var(--white); }
.cases-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 56px; }
.case-card { display: grid; grid-template-columns: 160px 1fr auto; gap: 24px; align-items: center; background: var(--white); border-radius: 14px; padding: 28px 32px; border: 1px solid var(--light-border); box-shadow: 0 2px 8px rgba(0,0,0,0.03); transition: border-color 0.3s, box-shadow 0.3s; }
.case-card:hover { border-color: var(--light-border-hover); box-shadow: 0 8px 24px rgba(106,26,132,0.06); }
.case-industry { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); background: var(--purple-pale); padding: 6px 14px; border-radius: 6px; text-align: center; }
.case-body { min-width: 0; }
.case-problem { font-size: 0.85rem; color: var(--text-muted-light); margin-bottom: 6px; }
.case-solution { font-size: 0.9rem; color: var(--text-body); line-height: 1.5; }
.case-result { background: var(--success-pale); border-radius: 10px; padding: 12px 18px; text-align: center; flex-shrink: 0; min-width: 150px; }
.case-result-val { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--success); line-height: 1.3; }

.light-to-dark { height: 80px; background: linear-gradient(to bottom, var(--white), var(--black)); }

/* CTA */
.cta { padding: 100px 0; text-align: center; position: relative; overflow: hidden; background: var(--black); }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 80%, rgba(106,26,132,0.15), transparent 60%); }
.cta-content { position: relative; z-index: 2; }
.cta .section-title { color: var(--white); max-width: 600px; margin: 0 auto 16px; }
.cta .section-label { color: var(--purple-bright); }
.cta-desc { font-size: 1.1rem; color: var(--text-muted-dark); max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-trust { margin-top: 40px; font-size: 0.8rem; color: var(--text-muted-dark); }

footer { padding: 48px 0; background: var(--black); border-top: 1px solid var(--dark-border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.8rem; color: var(--text-muted-dark); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted-dark); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--purple-bright); }

@media (max-width: 1024px) { .srv-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--black); padding: 40px 24px; gap: 24px; z-index: 99; }
  .nav-links.open a { font-size: 1.1rem; color: var(--text-on-dark); }
  .nav-links.open .nav-cta { text-align: center; display: block; }
  .nav-links.open .lang-switcher { justify-content: center; margin: 0; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.6rem); }
  .hero-stats { flex-direction: column; gap: 24px; }
  .opp-grid { grid-template-columns: 1fr; }
  .opp-quote { flex-direction: column; padding: 24px; }
  .srv-grid { grid-template-columns: 1fr; }
  .prod-card { grid-template-columns: auto 1fr; gap: 16px; }
  .prod-arrow { display: none; }
  .price-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .case-card { grid-template-columns: 1fr; gap: 12px; }
  .case-industry { justify-self: start; }
  .case-result { justify-self: start; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-to-light, .light-to-dark { height: 48px; }
}
