/* ============================================
   172.GAMES — JAPANESE INDIE STUDIO AESTHETIC
   Clean, minimal, warm, intentional
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Noto+Sans+JP:wght@300;400;500;700&family=JetBrains+Mono:wght@300;400;500&display=swap');

:root {
  --ink: #e8e4df;
  --ink-secondary: #9e9a94;
  --ink-muted: #5e5b56;
  --bg: #000000;
  --bg-elevated: #0a0a09;
  --bg-card: #111110;
  --bg-card-hover: #1a1918;
  --accent: #d4622a;
  --accent-warm: #c9915a;
  --accent-cool: #6a8fad;
  --accent-soft: #8b7b6b;
  --accent-green: #7a9e7e;
  --accent-rose: #b5736a;
  --border: rgba(255,255,255,0.06);
  --border-warm: rgba(212,98,42,0.15);
  --font-display: 'DM Sans', 'Noto Sans JP', sans-serif;
  --font-body: 'DM Sans', 'Noto Sans JP', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--accent) var(--bg); }
body { font-family: var(--font-body); font-weight: 400; background: var(--bg); color: var(--ink); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; font-size: 15px; }
::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-soft); border-radius: 2px; }

a { color: var(--accent); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--accent-warm); }
img { max-width: 100%; height: auto; display: block; }

/* --- Subtle Background --- */
.bg-grid {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
  background-image: radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 32px 32px;
}

.bg-gradient-orbs {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none;
}
.bg-gradient-orbs::before {
  content: ''; position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212,98,42,0.04), transparent 70%);
  top: -300px; right: -200px; border-radius: 50%;
}
.bg-gradient-orbs::after {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(106,143,173,0.03), transparent 70%);
  bottom: -200px; left: -100px; border-radius: 50%;
}

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}
.navbar.scrolled { background: rgba(0,0,0,0.97); box-shadow: 0 1px 0 var(--border); }

.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { height: 36px; width: auto; transition: opacity 0.3s ease; }
.nav-logo img:hover { opacity: 0.8; }
.nav-logo-text { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; letter-spacing: 3px; color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links li a {
  font-family: var(--font-body); font-weight: 500; font-size: 0.85rem;
  letter-spacing: 0.5px; padding: 0.5rem 0.85rem; border-radius: 4px;
  color: var(--ink-secondary); position: relative; transition: all 0.3s ease;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--ink); }
.nav-links li a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 1px;
  background: var(--accent); transition: all 0.3s var(--ease-out); transform: translateX(-50%);
}
.nav-links li a:hover::after, .nav-links li a.active::after { width: 60%; }

/* Nav button */
.navbar .btn-primary {
  color: var(--bg) !important; font-weight: 600;
  background: var(--accent); border: none;
}
.navbar .btn-primary:hover { background: var(--accent-warm); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 180px; background: rgba(10,10,9,0.98); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 8px; padding: 0.4rem 0;
  opacity: 0; visibility: hidden; transition: all 0.25s var(--ease-out);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.dropdown-menu a { display: block; padding: 0.5rem 1rem; font-size: 0.82rem; color: var(--ink-secondary); }
.dropdown-menu a:hover { color: var(--accent); background: rgba(212,98,42,0.05); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; padding: 4px; }
.nav-hamburger span { width: 24px; height: 1.5px; background: var(--ink); transition: all 0.3s ease; }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* --- Hero --- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 4rem; position: relative;
}
.hero-content { max-width: 720px; position: relative; z-index: 2; }
.hero-logo {
  width: 140px; margin: 0 auto 2.5rem;
  animation: heroIn 1s var(--ease-out) forwards; opacity: 0;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1.25rem;
  letter-spacing: -0.5px; color: var(--ink);
  animation: fadeUp 0.8s var(--ease-out) 0.15s forwards; opacity: 0;
}
.hero h1 .gradient-text, .hero h1 .glitch { color: var(--accent); -webkit-text-fill-color: var(--accent); background: none; -webkit-background-clip: unset; animation: none; }
.hero h1 .glitch::before, .hero h1 .glitch::after { display: none; }

.hero-subtitle {
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink-muted);
  margin-bottom: 2.5rem; letter-spacing: 1px;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards; opacity: 0;
}
.hero-cta-group {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out) 0.45s forwards; opacity: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; padding: 0.8rem 1.75rem;
  border: none; border-radius: 6px; cursor: pointer; position: relative;
  overflow: hidden; transition: all 0.35s var(--ease-out);
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 12px rgba(212,98,42,0.15);
}
.btn-primary:hover { background: #b8531f; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(212,98,42,0.25); color: #fff; }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1px solid rgba(212,98,42,0.3);
}
.btn-outline:hover { background: rgba(212,98,42,0.06); border-color: var(--accent); transform: translateY(-1px); color: var(--accent); }

/* --- Sections --- */
.section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 0.5rem; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.3px; }
.section-title .accent { color: var(--accent); }
.section-desc { font-size: 1rem; color: var(--ink-secondary); max-width: 540px; margin: 0 auto; }

/* --- Game Cards --- */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.game-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: all 0.4s var(--ease-out);
}
.game-card:hover { transform: translateY(-4px); border-color: rgba(212,98,42,0.12); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.game-card-image { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.game-card:hover .game-card-image { transform: scale(1.03); }
.game-card-image-wrapper { overflow: hidden; position: relative; }
.game-card-image-wrapper .overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, var(--bg-card)); z-index: 1; }
.game-card-body { padding: 1.25rem; position: relative; z-index: 2; }

.game-card-tag {
  font-family: var(--font-mono); font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 2px; padding: 0.2rem 0.6rem; border-radius: 3px;
  display: inline-block; margin-bottom: 0.6rem;
}
.tag-released { background: rgba(122,158,126,0.1); color: var(--accent-green); border: 1px solid rgba(122,158,126,0.2); }
.tag-inprogress { background: rgba(106,143,173,0.1); color: var(--accent-cool); border: 1px solid rgba(106,143,173,0.2); }
.tag-concept { background: rgba(139,123,107,0.1); color: var(--accent-soft); border: 1px solid rgba(139,123,107,0.2); }

.game-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--ink); }
.game-card-desc { font-size: 0.88rem; color: var(--ink-secondary); line-height: 1.55; margin-bottom: 0.85rem; }
.game-card-link { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 0.4rem; }
.game-card-link .arrow { transition: transform 0.3s ease; }
.game-card:hover .game-card-link .arrow { transform: translateX(4px); }

/* --- Service Cards --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.75rem; text-align: center; transition: all 0.4s var(--ease-out);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm)); opacity: 0; transition: opacity 0.3s;
}
.service-card { position: relative; overflow: hidden; }
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-3px); border-color: rgba(212,98,42,0.1); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

.service-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.service-icon-svg { width: 40px; height: 40px; margin: 0 auto 1rem; display: block; }
.service-card h3 { font-family: var(--font-display); font-size: 0.92rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--ink); letter-spacing: 0.3px; }
.service-card p { font-size: 0.88rem; color: var(--ink-secondary); line-height: 1.55; }

/* --- Pricing Cards --- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  padding: 2rem 1.5rem; text-align: center; transition: all 0.4s var(--ease-out);
  position: relative; overflow: hidden;
}
.pricing-card:hover { transform: translateY(-3px); border-color: rgba(212,98,42,0.1); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.pricing-card.featured { border-color: rgba(212,98,42,0.2); background: linear-gradient(180deg, rgba(212,98,42,0.03), var(--bg-card)); }
.pricing-card.featured::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent);
}
.pricing-card-custom { border-style: dashed; border-color: rgba(139,123,107,0.2); }

.pricing-label { font-family: var(--font-mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 3px; color: var(--ink-muted); margin-bottom: 0.5rem; }
.pricing-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.85rem; }
.pricing-amount { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--accent); }
.pricing-amount .currency { font-size: 1rem; font-weight: 500; vertical-align: super; }
.pricing-desc { font-size: 0.85rem; color: var(--ink-secondary); line-height: 1.5; margin-bottom: 1.25rem; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 1.5rem; text-align: left; }
.pricing-features li {
  font-size: 0.82rem; color: var(--ink-secondary); padding: 0.35rem 0 0.35rem 1.25rem; position: relative;
}
.pricing-features li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: 0.6;
}

/* --- Page Header --- */
.page-header { padding: 9rem 2rem 3.5rem; text-align: center; position: relative; }
.page-header h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.3px; }
.page-header .breadcrumb { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-muted); letter-spacing: 2px; }
.page-header .breadcrumb a { color: var(--ink-secondary); }

/* --- Game Detail --- */
.game-detail { max-width: 900px; margin: 0 auto; padding: 2rem; }
.game-detail-hero { border-radius: 12px; overflow: hidden; margin-bottom: 2.5rem; border: 1px solid var(--border); }
.game-detail-hero img { width: 100%; height: 360px; object-fit: cover; }
.game-detail-info { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; }
.game-detail-info h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.game-detail-info p { color: var(--ink-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; }

.game-meta { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; height: fit-content; }
.game-meta-item { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.game-meta-item:last-child { border: none; }
.game-meta-label { color: var(--ink-muted); font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.game-meta-value { color: var(--ink); font-weight: 500; }

.game-screenshots { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem; margin-top: 2.5rem; }
.game-screenshots img { border-radius: 8px; border: 1px solid var(--border); transition: transform 0.4s ease; }
.game-screenshots img:hover { transform: scale(1.02); }

/* --- Team Section --- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  padding: 2rem 1.5rem; text-align: center; transition: all 0.4s var(--ease-out);
}
.team-card:hover { transform: translateY(-3px); border-color: rgba(212,98,42,0.1); }
.team-photo {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: var(--bg-elevated); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink-muted); font-weight: 300; }
.team-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }
.team-role { font-family: var(--font-mono); font-size: 0.7rem; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; }

/* --- Neon Divider (now warm) --- */
.neon-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-soft), transparent); margin: 2rem 0; opacity: 0.25; }

/* --- CTA Section --- */
.cta-section { text-align: center; padding: 5rem 2rem; position: relative; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; margin-bottom: 0.75rem; }
.cta-section p { color: var(--ink-secondary); font-size: 1rem; margin-bottom: 2rem; }

/* --- Footer --- */
.footer { padding: 3.5rem 2rem 1.5rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand p { color: var(--ink-secondary); font-size: 0.85rem; margin-top: 0.85rem; line-height: 1.6; max-width: 280px; }
.footer h4 { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { color: var(--ink-secondary); font-size: 0.85rem; }
.footer ul li a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 6px; background: var(--bg-card);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--ink-secondary); transition: all 0.3s ease;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.footer-bottom {
  max-width: 1200px; margin: 2.5rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--border); display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.72rem; color: var(--ink-muted); font-family: var(--font-mono); }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: 0.72rem; color: var(--ink-muted); }

/* --- Legal --- */
.legal-content { max-width: 720px; margin: 0 auto; padding: 2rem; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--accent); }
.legal-content h3 { font-family: var(--font-display); font-size: 1rem; margin: 1.25rem 0 0.6rem; color: var(--ink); }
.legal-content p, .legal-content li { color: var(--ink-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.6rem; }
.legal-content ul { padding-left: 1.25rem; margin-bottom: 0.85rem; }
.legal-content .last-updated { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-muted); margin-bottom: 1.5rem; }

/* --- Animations --- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.6s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: all 0.6s var(--ease-out); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: all 0.6s var(--ease-out); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.95); transition: all 0.5s var(--ease-back); }
.scale-in.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.05s; } .stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; } .stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; } .stagger-6 { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .game-detail-info { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100vh; background: rgba(0,0,0,0.98);
    backdrop-filter: blur(20px); flex-direction: column;
    align-items: center; justify-content: center; gap: 0.5rem;
    padding: 2rem; opacity: 0; visibility: hidden; transition: all 0.35s var(--ease-out);
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links li a { font-size: 1.1rem; padding: 0.65rem 1.25rem; }
  .nav-hamburger { display: flex; }
  .nav-dropdown .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: transparent; box-shadow: none; border: none;
    padding: 0.2rem 0; max-height: 300px; overflow: visible;
  }
  .nav-dropdown .dropdown-menu a { font-size: 0.95rem; text-align: center; padding: 0.4rem 0.85rem; }
  .hero { min-height: 80vh; padding: 6rem 1.5rem 3rem; }
  .hero-logo { width: 110px; }
  .section { padding: 3.5rem 1.5rem; }
  .games-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 0.75rem; }
  .btn { padding: 0.7rem 1.4rem; font-size: 0.72rem; }
  .page-header { padding: 7rem 1rem 2.5rem; }
}
