:root {
  --bg: #030508;
  --surface: #080c14;
  --card: #0e1420;
  --card2: #121a2a;
  --line: rgba(212, 165, 116, 0.12);
  --line2: rgba(255, 255, 255, 0.06);
  --text: #f4f0eb;
  --muted: #9aa3b5;
  --accent: #d4a574;
  --accent2: #e8c9a0;
  --blue: #5b8def;
  --cyan: #7ec8e3;
  --radius: 18px;
  --radius-sm: 12px;
  --wrap: 1240px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --glass: rgba(14, 20, 32, 0.92);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent2); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }
.container { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
h1, h2, h3, .section-head h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; letter-spacing: -0.01em; }

/* Top notice */
.top-notice {
  background: linear-gradient(90deg, #121018, #1a1520, #121018);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.76rem;
  color: #c8b8a8;
  letter-spacing: 0.03em;
}
.top-notice strong { color: var(--accent2); font-weight: 600; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(3, 5, 8, 0.96);
  border-bottom: 1px solid var(--line2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--text); font-weight: 600; font-size: 1.05rem;
}
.logo-img {
  width: 42px; height: 42px; border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.2);
  border: 1px solid var(--line);
}
.logo em { color: var(--accent); font-style: italic; font-family: Georgia, serif; font-weight: 500; }
.nav-main { display: flex; align-items: center; gap: 0.2rem; }
.nav-main a {
  color: var(--muted); padding: 0.5rem 0.9rem; border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
}
.nav-main a:hover, .nav-main a.active {
  color: var(--text); background: rgba(255,255,255,0.04);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.35rem; border-radius: 999px; border: none;
  font-weight: 600; font-size: 0.88rem; cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn-blue {
  background: linear-gradient(135deg, #3d5a99, #5b8def);
  color: #fff; box-shadow: 0 8px 28px rgba(91, 141, 239, 0.25);
}
.btn-gold {
  background: linear-gradient(135deg, var(--accent), #c9955e);
  color: #1a1208; box-shadow: 0 8px 28px rgba(212, 165, 116, 0.28);
}
.btn-ghost {
  background: transparent; border: 1px solid var(--line);
  color: var(--text);
}
.btn-blue:hover { color: #fff; }
.btn-gold:hover { color: #1a1208; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line2);
  border-radius: 12px; background: var(--card); cursor: pointer; padding: 11px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero split */
.hero {
  position: relative; padding: 4rem 0 3.5rem; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 55%; height: 120%;
  background: radial-gradient(ellipse, rgba(212,165,116,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-copy { max-width: 560px; }
.hero-eyebrow {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); margin-bottom: 1rem; font-weight: 600;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem); line-height: 1.05; margin-bottom: 1.1rem;
  color: var(--text);
}
.hero h1 span { color: var(--accent2); font-style: italic; }
.hero p { color: var(--muted); font-size: 1.02rem; margin-bottom: 1.6rem; line-height: 1.75; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.6rem; }
.tag {
  font-size: 0.72rem; padding: 0.38rem 0.85rem; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--line2); color: var(--muted);
}
.tag-gold { border-color: rgba(212, 165, 116, 0.35); color: var(--accent2); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-visual { position: relative; }
.hero-frame {
  position: relative; border-radius: calc(var(--radius) + 4px); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3,5,8,0.5) 100%);
  pointer-events: none;
}
.hero-float {
  position: absolute; bottom: -1rem; left: -1.5rem;
  background: var(--glass);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem; min-width: 160px;
  box-shadow: var(--shadow);
}
.hero-float strong { display: block; font-size: 1.5rem; color: var(--accent2); font-family: Georgia, serif; }
.hero-float span { font-size: 0.75rem; color: var(--muted); }

/* Stats */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin: -1.5rem auto 3rem; position: relative; z-index: 2;
  width: min(100% - 2.5rem, var(--wrap));
}
.stat-card {
  background: var(--glass);
  border: 1px solid var(--line2); border-radius: var(--radius-sm);
  padding: 1.15rem 1rem; text-align: center;
}
.stat-card strong {
  display: block; font-size: 1.6rem; color: var(--accent2);
  font-family: Georgia, serif; font-weight: 600; line-height: 1.1;
}
.stat-card span { font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Disclaimer */
.disclaimer-box {
  background: linear-gradient(135deg, rgba(212,165,116,0.06), rgba(91,141,239,0.05));
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.75rem;
  margin: 0 auto 3rem; max-width: var(--wrap); width: min(100% - 2.5rem, var(--wrap));
  position: relative; overflow: hidden;
}
.disclaimer-box::before {
  content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent);
}
.disclaimer-box h2 { font-size: 1.15rem; color: var(--accent2); margin-bottom: 0.55rem; }
.disclaimer-box p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; }

/* Sections */
section { padding: 3.5rem 0; }
.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--line2);
  position: relative;
}
.section-alt.has-bg::before {
  content: ""; position: absolute; inset: 0; opacity: 0.04;
  background: url("../images/bg.webp") center/cover no-repeat;
  pointer-events: none;
}
.section-alt.has-bg > .container { position: relative; z-index: 1; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head .eyebrow {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 0.5rem; font-weight: 600;
}
.section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); margin-bottom: 0.55rem; }
.section-head p { color: var(--muted); font-size: 0.95rem; }

/* Bento games */
.bento-games {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.bento-games .game-card { grid-column: span 4; }
.bento-games .game-card.span-7 { grid-column: span 7; }
.bento-games .game-card.span-5 { grid-column: span 5; }
.bento-games .game-card.span-8 { grid-column: span 8; }
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.game-card {
  background: var(--card); border: 1px solid var(--line2); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 165, 116, 0.28);
  box-shadow: var(--shadow);
}
.game-card .thumb { position: relative; overflow: hidden; }
.game-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.game-card .body { padding: 1.25rem 1.35rem 1.35rem; }
.game-label {
  display: inline-block; font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent); font-weight: 700; margin-bottom: 0.4rem;
}
.game-card h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.game-card p { color: var(--muted); font-size: 0.86rem; margin-bottom: 1.1rem; line-height: 1.6; }

/* Split panels */
.split-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.split-panel.reverse .split-img { order: 2; }
.split-panel.reverse .split-copy { order: 1; }
.split-img {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line2); box-shadow: var(--shadow);
}
.split-img img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-copy h2 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.split-copy p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; line-height: 1.75; }
.split-list { list-style: none; margin: 1.25rem 0; }
.split-list li {
  padding: 0.55rem 0; border-bottom: 1px solid var(--line2);
  color: var(--muted); font-size: 0.88rem;
}
.split-list li strong { color: var(--text); font-weight: 600; }

/* Features */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.feature {
  background: var(--card); border: 1px solid var(--line2); border-radius: var(--radius);
  padding: 1.5rem; transition: border-color 0.25s, background 0.25s;
}
.feature:hover { border-color: var(--line); background: var(--card2); }
.feature-icon {
  width: 48px; height: 48px; margin-bottom: 1rem; border-radius: 11px;
  background: linear-gradient(135deg, rgba(212,165,116,0.15), rgba(91,141,239,0.1));
  display: grid; place-items: center; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--accent);
}
.feature h3 { font-size: 1rem; margin-bottom: 0.4rem; font-family: inherit; font-weight: 600; }
.feature p { color: var(--muted); font-size: 0.84rem; line-height: 1.6; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step {
  padding: 1.5rem 1.25rem; position: relative;
  background: var(--card); border: 1px solid var(--line2); border-radius: var(--radius);
}
.step-num {
  width: 36px; height: 36px; margin-bottom: 1rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #b88850);
  display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; color: #1a1208;
}
.step h3 { font-size: 1rem; margin-bottom: 0.4rem; font-family: inherit; font-weight: 600; }
.step p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

/* CTA band */
.cta-band {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line2); margin: 0 auto;
  max-width: var(--wrap); width: min(100% - 2.5rem, var(--wrap));
}
.cta-band img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25;
}
.cta-band .inner {
  position: relative; padding: 3rem 2.5rem; text-align: center;
  background: linear-gradient(135deg, rgba(3,5,8,0.85), rgba(8,12,20,0.9));
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 0.6rem; }
.cta-band p { color: var(--muted); margin-bottom: 1.25rem; max-width: 480px; margin-inline: auto; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--card); border: 1px solid var(--line2); border-radius: var(--radius-sm);
  margin-bottom: 0.6rem; padding: 1rem 1.2rem;
  transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--line); }
.faq summary { cursor: pointer; font-weight: 600; font-size: 0.92rem; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted); font-size: 0.88rem; margin-top: 0.6rem; line-height: 1.7; }

/* Forms */
/* Forms & contact */
.form-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem; align-items: start;
}
.form-grid > * { min-width: 0; }
.contact-page { padding-bottom: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-card h3 { font-size: 0.95rem; margin-bottom: 0.35rem; font-weight: 600; }
.contact-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
.contact-form { width: 100%; }
.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-size: 0.82rem; margin-bottom: 0.35rem; font-weight: 500; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; max-width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line2); background: var(--surface); color: var(--text); font: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: rgba(212,165,116,0.4);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* Game page */
.page-title { padding: 2.5rem 0 1rem; }
.page-title h1 { font-size: clamp(1.75rem, 4vw, 2.4rem); margin-bottom: 0.45rem; }
.page-title p { color: var(--muted); font-size: 0.95rem; }
.game-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.75rem; margin-bottom: 1rem;
}
.pill {
  background: var(--card); border: 1px solid var(--line2);
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.85rem;
}
.pill b { color: var(--accent2); }
.game-wrap {
  background: linear-gradient(180deg, var(--card), var(--card2));
  border: 1px solid var(--line2); border-radius: var(--radius);
  padding: 1.25rem; display: flex; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.game-wrap canvas { max-width: 100%; border-radius: var(--radius-sm); touch-action: manipulation; }
.game-note { text-align: center; color: var(--muted); margin: 1rem 0 0.5rem; font-size: 0.84rem; line-height: 1.6; }
.game-links { text-align: center; color: var(--muted); margin: 0.5rem 0 2.5rem; font-size: 0.86rem; }
.card {
  background: var(--card); border: 1px solid var(--line2);
  border-radius: var(--radius); padding: 1.35rem;
}
.policy-body { padding: 2.5rem 0 3.5rem; max-width: 820px; }
.policy-body h1 { font-size: clamp(1.75rem, 4vw, 2.2rem); margin-bottom: 0.5rem; }
.policy-body .meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line2); }
.policy-body .lead { font-size: 1.02rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.policy-body h2 { font-size: 1.28rem; margin: 2.25rem 0 0.75rem; color: var(--text); font-family: Georgia, serif; }
.policy-body h3 { font-size: 1.02rem; margin: 1.5rem 0 0.5rem; color: var(--accent2); font-family: inherit; font-weight: 600; }
.policy-body p { color: var(--muted); margin-bottom: 1rem; line-height: 1.8; }
.policy-body ul, .policy-body ol { color: var(--muted); margin: 0.75rem 0 1.25rem 1.35rem; line-height: 1.75; }
.policy-body li { margin-bottom: 0.45rem; }
.policy-body li strong { color: var(--text); }
.policy-body .policy-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.policy-body .policy-nav a {
  font-size: 0.78rem; padding: 0.4rem 0.75rem; border-radius: 999px;
  border: 1px solid var(--line2); color: var(--muted); background: var(--card);
}
.policy-body .policy-nav a:hover { color: var(--accent2); border-color: var(--line); }
.policy-body .notice {
  background: var(--card); border: 1px solid var(--line2); border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm); padding: 1.1rem 1.25rem; margin: 1.5rem 0;
}
.policy-body .notice p { margin-bottom: 0; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--surface), #060810);
  border-top: 1px solid var(--line2);
  padding: 3.5rem 0 1.5rem; margin-top: 1rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h4 {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 0.9rem; font-weight: 600;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { color: var(--muted); font-size: 0.85rem; }
.footer-grid a:hover { color: var(--text); }
.footer-grid p { color: var(--muted); font-size: 0.85rem; line-height: 1.7; }
.footer-help {
  margin-top: 1.1rem; padding: 1.1rem 1.2rem; background: var(--card);
  border: 1px solid var(--line2); border-radius: var(--radius-sm);
}
.footer-help h5 { font-size: 0.78rem; color: var(--accent2); margin-bottom: 0.55rem; font-weight: 600; }
.footer-help p { font-size: 0.78rem; margin-bottom: 0.3rem; }
.rg-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.rg-links a {
  font-size: 0.74rem; padding: 0.38rem 0.75rem; border-radius: 999px;
  border: 1px solid var(--line2); color: var(--muted); background: var(--card);
}
.rg-links a:hover { color: var(--accent2); border-color: var(--line); }
.footer-disclaimer {
  font-size: 0.74rem; color: var(--muted); line-height: 1.75;
  padding: 1.2rem 1.35rem; background: var(--card);
  border: 1px solid var(--line2); border-radius: var(--radius-sm); margin-bottom: 1.35rem;
}
.footer-disclaimer strong { color: var(--text); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 0.75rem; padding-top: 1.35rem; border-top: 1px solid var(--line2);
  font-size: 0.76rem; color: var(--muted);
}
.footer-bottom .badge-18 {
  display: inline-block; padding: 0.25rem 0.65rem; border-radius: 999px;
  background: rgba(212, 165, 116, 0.12); color: var(--accent2); font-weight: 700; font-size: 0.72rem;
  border: 1px solid var(--line);
}

/* Gates */
.gate, .popup {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0, 0, 0, 0.92); display: none;
  align-items: center; justify-content: center; padding: 1rem;
}
.gate.show, .popup.show { display: flex; }
.gate-box, .popup-box {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.25rem; max-width: 440px; width: 100%; text-align: center;
  box-shadow: var(--shadow);
  position: relative; z-index: 1;
}
.gate-box h2 { font-size: 1.4rem; margin-bottom: 0.65rem; }
.gate-box p, .popup-box p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.4rem; line-height: 1.65; }
.gate-actions, .popup-actions { display: flex; gap: 0.65rem; justify-content: center; flex-wrap: wrap; }
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99998;
  background: rgba(8, 12, 20, 0.98);
  border-top: 1px solid var(--line2);
  padding: 1rem 0; display: none;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
}
.cookie-bar.show { display: block; }
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.cookie-inner p { color: var(--muted); font-size: 0.85rem; flex: 1; min-width: 0; }
.cookie-btns { display: flex; gap: 0.5rem; }

@media (max-width: 1024px) {
  .hero-grid, .split-panel { grid-template-columns: 1fr; gap: 2rem; }
  .split-panel.reverse .split-img, .split-panel.reverse .split-copy { order: unset; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .bento-games .game-card, .bento-games .game-card.span-7,
  .bento-games .game-card.span-5, .bento-games .game-card.span-8 { grid-column: span 12; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-main {
    position: fixed; top: 76px; left: 0; right: 0;
    background: rgba(8, 12, 20, 0.98); border-bottom: 1px solid var(--line2);
    flex-direction: column; padding: 0.85rem; display: none;
  }
  .nav-main.open { display: flex; }
  .nav-main a, .nav-main .btn { width: 100%; text-align: center; }
  .footer-grid, .features, .steps, .stats-bar { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-btns .btn { flex: 1; }
  .hero { padding: 2.5rem 0 2rem; }
  .hero-float { left: 0.5rem; bottom: 0.5rem; }
}
