/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #070710;
  --bg-2: #0D0D1A;
  --surface: #12121F;
  --border: #1E1E32;
  --accent: #FF3D00;
  --accent-dim: rgba(255,61,0,0.12);
  --accent-glow: rgba(255,61,0,0.25);
  --text: #F0EEF5;
  --text-muted: #7A7A96;
  --text-dim: #4A4A66;
  --font-head: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --max-w: 1200px;
  --gutter: 48px;
}
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-head);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::selection { background: var(--accent); color: #fff; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; font-weight: 800; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.accent-text { color: var(--accent); }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
  height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(7,7,16,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wordmark {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.header-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px var(--gutter) 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,61,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-right { display: flex; flex-direction: column; gap: 24px; }

/* === SCREEN BLOCK === */
.screen-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,61,0,0.08);
}
.screen-chrome {
  background: var(--bg-2);
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.screen-chrome span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.screen-content { padding: 20px; }

/* === WAVEFORM === */
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.bar {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(to top, var(--accent), rgba(255,61,0,0.4));
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  animation: wave 1.2s ease-in-out infinite;
}
.bar:nth-child(2n) { animation-delay: 0.1s; }
.bar:nth-child(3n) { animation-delay: 0.2s; }
.bar:nth-child(5n) { animation-delay: 0.15s; }
.bar:nth-child(7n) { animation-delay: 0.25s; }
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.6); }
}

/* === CLIP ROWS === */
.clip-rows { display: flex; flex-direction: column; gap: 10px; }
.clip-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--bg-2);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.thumb {
  width: 40px; height: 40px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-dim), var(--accent-glow));
  flex-shrink: 0;
}
.meta { flex: 1; }
.meta-title {
  height: 8px; width: 60%;
  background: var(--text-dim);
  border-radius: 4px;
  margin-bottom: 6px;
}
.meta-sub {
  height: 6px; width: 35%;
  background: var(--border);
  border-radius: 4px;
}
.badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.badge.tiktok { background: rgba(0,0,0,0.4); color: #fff; }
.badge.reels { background: rgba(131,58,180,0.3); color: #C13584; }
.badge.shorts { background: rgba(255,0,0,0.2); color: #FF0000; }

.hero-sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === PLATFORMS === */
.platforms {
  padding: 100px var(--gutter);
  border-top: 1px solid var(--border);
}
.platforms-header {
  max-width: var(--max-w);
  margin: 0 auto 60px;
}
.platforms-header h2 { font-size: clamp(2.5rem, 4vw, 4rem); margin-top: 16px; }
.platform-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.platform-card {
  padding: 40px 36px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.platform-card:hover::before { transform: scaleX(1); }
.platform-card:hover { background: var(--bg-2); }
.platform-icon {
  margin-bottom: 20px;
  color: var(--accent);
  width: 40px; height: 40px;
}
.platform-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.platform-card p {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.stat {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 4px;
  font-weight: 400;
}

/* === WORKFLOW === */
.workflow {
  padding: 100px var(--gutter);
  border-top: 1px solid var(--border);
}
.workflow-header {
  max-width: var(--max-w);
  margin: 0 auto 64px;
}
.workflow-header h2 { font-size: clamp(2.5rem, 4vw, 4rem); margin-top: 16px; }
.steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 8px; }
.step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.step p {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-divider {
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--border) 0, var(--border) 4px, transparent 4px, transparent 10px);
  align-self: stretch;
  margin: 0 16px;
}

/* === MODEL === */
.model {
  padding: 100px var(--gutter);
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.model-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.model-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 16px 0 24px;
}
.model-copy p {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.scale { display: flex; flex-direction: column; gap: 14px; }
.scale-bar {
  display: grid;
  grid-template-columns: 80px 1fr 70px;
  align-items: center;
  gap: 16px;
}
.scale-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.bar-fill {
  height: 32px;
  background: var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}
.bar-fill::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: var(--w, 50%);
  height: 100%;
  background: linear-gradient(to right, var(--accent-dim), var(--accent));
  border-radius: 4px;
}
.scale-val {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-align: right;
}
.scale-bar.highlight .scale-label { color: var(--text); font-weight: 500; }
.scale-bar.highlight .bar-fill { box-shadow: 0 0 20px var(--accent-glow); }

/* === TIMING === */
.timing {
  padding: 100px var(--gutter);
  border-top: 1px solid var(--border);
}
.timing .section-label { margin-bottom: 48px; }
.timing-grid {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.timing-stat {}
.big-num {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.timing-stat p {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.timing-note {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 36px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,61,0,0.15);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
}
.timing-note p {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === CLOSE === */
.close {
  padding: 120px var(--gutter);
  border-top: 1px solid var(--border);
  text-align: center;
}
.close h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.05;
}
.close p {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === FOOTER === */
footer {
  border-top: 1px solid var(--border);
  padding: 40px var(--gutter);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* === HEADER NAV === */
.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav-link:hover { color: var(--text); border-bottom-color: var(--accent); }

/* === SERVICES PAGE === */
.services-page { padding-top: 56px; }

/* === CTA BUTTON === */
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.cta-btn:hover { background: #ff5722; transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }
.cta-btn:active { transform: translateY(0); }

/* === PRICING === */
.pricing-section { padding: 100px var(--gutter); border-top: 1px solid var(--border); }
.pricing-header { max-width: var(--max-w); margin: 0 auto 64px; }
.pricing-header h2 { font-size: clamp(2.5rem, 4vw, 4rem); margin-top: 16px; }
.pricing-header p { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; max-width: 520px; line-height: 1.65; }
.pricing-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.tier-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; position: relative; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.tier-card:hover { border-color: rgba(255,61,0,0.3); }
.tier-card.featured { border-color: var(--accent); box-shadow: 0 0 40px var(--accent-dim); }
.tier-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: 0; left: 0; right: 0; background: var(--accent); color: #fff; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; text-align: center; padding: 8px; }
.tier-card.featured .tier-body { padding-top: 56px; }
.tier-name { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.tier-price { font-size: 2.8rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; }
.tier-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.tier-period { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-dim); margin-bottom: 32px; }
.tier-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.tier-features li { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.tier-features li::before { content: '✓'; color: var(--accent); font-size: 0.75rem; margin-top: 1px; flex-shrink: 0; }
.tier-cta { width: 100%; }

/* === COMPARISON TABLE === */
.compare-section { padding: 80px var(--gutter); border-top: 1px solid var(--border); max-width: var(--max-w); margin: 0 auto; }
.compare-section h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 40px; }
.compare-table { width: 100%; border-collapse: collapse; font-family: var(--font-mono); font-size: 0.8rem; }
.compare-table th { text-align: left; padding: 12px 16px; color: var(--text-muted); border-bottom: 1px solid var(--border); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.68rem; }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: middle; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table .row-label { color: var(--text); font-weight: 500; }
.compare-table tr:hover td { background: var(--surface); }
.tick { color: var(--accent); font-weight: 700; }
.dash-cell { color: var(--text-dim); }

/* === INQUIRY FORM === */
.inquiry-section { padding: 100px var(--gutter); border-top: 1px solid var(--border); background: var(--surface); }
.inquiry-inner { max-width: 720px; margin: 0 auto; }
.inquiry-header { margin-bottom: 48px; }
.inquiry-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-top: 16px; }
.inquiry-header p { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; line-height: 1.65; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-select, .form-textarea { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; color: var(--text); font-family: var(--font-mono); font-size: 0.85rem; outline: none; transition: border-color 0.2s; width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A96' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 32px; text-align: left; }
.form-success { display: none; padding: 24px; background: var(--accent-dim); border: 1px solid rgba(255,61,0,0.2); border-radius: 12px; text-align: center; margin-top: 24px; }
.form-success h3 { color: var(--accent); font-size: 1.2rem; margin-bottom: 8px; }
.form-success p { font-family: var(--font-mono); font-size: 0.82rem; color: var(--text-muted); }

/* === CONTENT CALENDAR === */
.calendar-section { padding: 80px var(--gutter); border-top: 1px solid var(--border); }
.calendar-header { max-width: var(--max-w); margin: 0 auto 48px; }
.calendar-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-top: 16px; }
.calendar-header p { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; line-height: 1.65; }
.calendar-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 80px repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.cal-head { background: var(--bg-2); padding: 10px 8px; text-align: center; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.cal-cell { background: var(--surface); padding: 14px 12px; min-height: 72px; display: flex; flex-direction: column; gap: 6px; }
.cal-cell-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-dim); letter-spacing: 0.08em; }
.cal-platform-tag { display: inline-block; padding: 2px 6px; border-radius: 4px; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500; }
.cal-platform-tag.tt { background: rgba(0,0,0,0.4); color: #fff; }
.cal-platform-tag.rl { background: rgba(131,58,180,0.3); color: #C13584; }
.cal-platform-tag.ys { background: rgba(255,0,0,0.2); color: #FF0000; }
.cal-desc { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }

/* === SOCIAL PROOF === */
.social-section { padding: 100px var(--gutter); border-top: 1px solid var(--border); }
.social-header { max-width: var(--max-w); margin: 0 auto 64px; text-align: center; }
.social-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-top: 16px; }
.social-header p { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; line-height: 1.65; }
.testimonials { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; }
.testimonial-quote { font-family: var(--font-mono); font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.testimonial-quote::before { content: '"'; color: var(--accent); font-size: 1.5rem; line-height: 0; vertical-align: -0.3em; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-dim), var(--accent-glow)); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text); font-weight: 500; flex-shrink: 0; }
.author-name { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.author-role { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: 60px repeat(4, 1fr); font-size: 0.7rem; }
}
  :root { --gutter: 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 3.5rem; }
  .platform-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step-divider { display: none; }
  .model-inner { grid-template-columns: 1fr; gap: 48px; }
  .timing-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .screen-block { display: none; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
}
