:root{
  --bg:#f7f8fb; --card:#ffffff; --text:#12131a; --muted:#6b7280;
  --blue:#007aff; --purple:#af52de; --pink:#ff2d55; --line:#e7e8ee;
  --shadow: 0 30px 60px rgba(20,20,40,.12);
  --shadow2: 0 10px 24px rgba(20,20,40,.08);
  --radius: 22px;
  --font: 'Vazirmatn', 'Segoe UI', Tahoma, sans-serif;
}
[dir="ltr"]{ --font: 'Poppins','Segoe UI',sans-serif; }
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0; font-family:var(--font); background:var(--bg); color:var(--text);
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
body.dark{
  --bg:#0b0c10; --card:#15161d; --text:#f3f4f8; --muted:#9aa0ae; --line:#22232c;
  --shadow: 0 30px 60px rgba(0,0,0,.5); --shadow2: 0 10px 24px rgba(0,0,0,.35);
}
a{color:inherit;}
img{max-width:100%; display:block;}
.container{ width:min(1180px, 92%); margin:0 auto; }
.gradient-text{
  background:linear-gradient(90deg,var(--blue),var(--purple),var(--pink));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.icon{width:20px;height:20px;}
.icon-md{width:26px;height:26px;}
.icon-lg{width:30px;height:30px;}

/* Preloader */
.preloader{ position:fixed; inset:0; background:var(--bg); z-index:9999; display:grid; place-items:center; transition:.5s ease; }
.preloader.hide{ opacity:0; visibility:hidden; }
.loader-card{ display:grid; gap:14px; place-items:center; }
.loader-logo{ width:70px; height:70px; animation:spin 1.4s linear infinite; }
@keyframes spin{ to{ transform:rotate(360deg);} }
.loader-text{ color:var(--muted); font-size:14px; }

.blob{ position:fixed; border-radius:999px; filter:blur(60px); opacity:.16; pointer-events:none; z-index:-2; animation:blobMove 12s ease-in-out infinite alternate; }
.blob.one{ width:280px; height:280px; background:var(--blue); left:-100px; top:-80px; }
.blob.two{ width:320px; height:320px; background:var(--purple); right:-120px; top:220px; animation-delay:2s; }
.blob.three{ width:260px; height:260px; background:var(--pink); left:38%; bottom:-140px; animation-delay:4s; }
@keyframes blobMove{ to{ transform:translate(40px,30px) scale(1.1); } }

header{
  width:min(1180px,94%); min-height:70px; padding:0 16px; margin:14px auto 0;
  border-radius:999px; background:var(--card); border:1px solid var(--line);
  backdrop-filter:blur(20px); box-shadow:var(--shadow2);
  position:sticky; top:12px; z-index:60;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  animation:navDrop .7s ease both;
}
@keyframes navDrop{ from{ transform:translateY(-30px); opacity:0;} to{transform:none;opacity:1;} }
.brand{ display:flex; align-items:center; gap:10px; font-weight:800; font-size:19px; flex-shrink:0; text-decoration:none; color:var(--text); }
.brand-logo{ width:38px; height:38px; flex-shrink:0; }
nav{ display:flex; gap:18px; }
nav a{ text-decoration:none; color:var(--text); font-size:14px; font-weight:600; position:relative; padding:4px 0; white-space:nowrap; }
nav a::after{ content:''; position:absolute; bottom:-2px; left:0; width:0; height:2px; background:linear-gradient(90deg,var(--blue),var(--pink)); transition:.3s; }
nav a:hover::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:8px; flex-shrink:0; }
.theme-toggle,.lang-toggle,.menu-toggle{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--line); background:var(--bg);
  display:grid; place-items:center; cursor:pointer; color:var(--text); text-decoration:none;
  font-size:12px; font-weight:800; transition:.25s;
}
.theme-toggle:hover,.lang-toggle:hover,.menu-toggle:hover{ background:var(--line); }
.menu-toggle{ display:none; }
.btn{
  display:inline-flex; align-items:center; gap:8px; padding:12px 20px; border-radius:999px;
  font-weight:700; font-size:14px; text-decoration:none; border:none; cursor:pointer; transition:.25s;
  white-space:nowrap;
}
.btn-primary{ background:var(--text); color:var(--bg); padding:11px 22px; }
.btn-blue{ background:linear-gradient(90deg,var(--blue),var(--purple)); color:#fff; box-shadow:0 14px 30px rgba(0,122,255,.28); }
.btn-blue:hover{ transform:translateY(-2px); box-shadow:0 18px 36px rgba(0,122,255,.35); }
.btn-soft{ background:var(--card); border:1px solid var(--line); color:var(--text); }
.btn-soft:hover{ background:var(--line); }

.mobile-menu{ width:min(1180px,94%); margin:8px auto 0; background:var(--card); border:1px solid var(--line);
  border-radius:20px; padding:14px; box-shadow:var(--shadow2); display:none; position:sticky; top:88px; z-index:55; }
.mobile-menu.open{ display:grid; gap:10px; animation:fadeUp .25s ease both; }
.mobile-menu a{ text-decoration:none; color:var(--text); font-weight:600; padding:10px 12px; border-radius:12px; }
.mobile-menu a:hover{ background:var(--bg); }
@keyframes fadeUp{ from{opacity:0; transform:translateY(-8px);} to{opacity:1; transform:none;} }

.top-alert{
  width:min(1180px,94%); margin:14px auto 0; background:linear-gradient(90deg, rgba(0,122,255,.10), rgba(175,82,222,.10));
  border:1px solid var(--line); border-radius:999px; padding:10px 18px; display:flex; align-items:center; gap:10px;
  font-size:13px; color:var(--muted); animation:navDrop .8s ease both; flex-wrap:wrap; justify-content:center; text-align:center;
}
.top-alert .icon{ color:var(--blue); flex-shrink:0; }
.top-alert span{ color:var(--blue); font-weight:700; }

main{ position:relative; z-index:1; }
.hero{ display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center; padding:64px 0 40px; }
.eyebrow{ display:inline-flex; align-items:center; gap:8px; background:var(--card); border:1px solid var(--line);
  padding:8px 16px; border-radius:999px; font-size:13px; font-weight:700; margin-bottom:18px; }
h1{ font-size:clamp(32px,5vw,56px); line-height:1.15; margin:0 0 18px; letter-spacing:-1.5px; font-weight:800; }
.hero-desc{ color:var(--muted); font-size:clamp(15px,2vw,18px); line-height:1.8; max-width:560px; margin:0 0 26px; }
.actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:6px; }
.hero-stats{ display:flex; gap:28px; margin-top:34px; flex-wrap:wrap; }
.hero-stat{ display:flex; flex-direction:column; }
.hero-stat strong{ font-size:22px; font-weight:800; }
.hero-stat span{ color:var(--muted); font-size:13px; }

.visual{ position:relative; display:flex; justify-content:center; align-items:center; min-height:440px; }
.halo{ position:absolute; width:340px; height:340px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,122,255,.20), transparent 70%); filter:blur(10px); z-index:0; }
.iphone{
  position:relative; width:min(260px,72vw); height:min(540px,78vw); background:#0b0b0f; border-radius:46px;
  padding:12px; box-shadow: 0 40px 80px rgba(0,0,0,.30), inset 0 0 0 2px rgba(255,255,255,.06);
  z-index:3; animation:phoneFloat 5.5s ease-in-out infinite;
}
@keyframes phoneFloat{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
.screen{ width:100%; height:100%; background:var(--card); border-radius:36px; overflow:hidden; position:relative; }
.dynamic-island{ position:absolute; width:90px; height:24px; border-radius:999px; background:#101014; top:12px; left:50%; transform:translateX(-50%); z-index:10; }
.app{ height:100%; padding:56px 16px 16px; background:radial-gradient(circle at 50% 0%, rgba(0,122,255,.10), transparent 35%), var(--card); display:flex; flex-direction:column; gap:14px; }
.app-head{ display:flex; align-items:center; justify-content:space-between; }
.app-head small{ color:var(--muted); font-size:11px; }
.app-head h3{ margin:2px 0 0; font-size:15px; }
.app-logo{ width:34px; height:34px; }
.dashboard{ background:var(--bg); border-radius:18px; padding:14px; border:1px solid var(--line); }
.dashboard-top{ display:flex; justify-content:space-between; align-items:center; }
.dashboard-number{ font-weight:800; font-size:15px; }
.dashboard-label{ color:var(--muted); font-size:11px; }
.mini-chart{ margin-top:8px; }
.chart-line{ stroke-dasharray:600; stroke-dashoffset:600; animation:draw 2s ease forwards .3s; }
@keyframes draw{ to{ stroke-dashoffset:0; } }
.app-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.app-card{ background:var(--bg); border:1px solid var(--line); border-radius:14px; padding:10px; display:flex; align-items:center; gap:8px; }
.app-card strong{ display:block; font-size:12px; }
.app-card span{ color:var(--muted); font-size:10px; }

.floating{
  position:absolute; background:var(--card); border:1px solid var(--line); border-radius:18px; padding:12px 16px;
  display:flex; align-items:center; gap:10px; box-shadow:var(--shadow2); animation:float 5s ease-in-out infinite; z-index:4;
}
.floating strong{ display:block; font-size:13px; }
.floating span{ color:var(--muted); font-size:11px; }
.floating.one{ top:6%; left:-8%; animation-delay:.2s; }
.floating.two{ bottom:20%; right:-10%; animation-delay:.6s; }
.floating.three{ bottom:-4%; left:6%; animation-delay:1s; }
@keyframes float{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-10px);} }

.section{ padding:60px 0; }
.section.alt{ background:var(--card); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-head{ text-align:center; max-width:640px; margin:0 auto 40px; }
.mini-title{ display:inline-block; color:var(--blue); font-weight:800; font-size:13px; background:rgba(0,122,255,.08); padding:6px 14px; border-radius:999px; margin-bottom:12px; }
.section-head h2{ font-size:clamp(24px,3.4vw,36px); margin:0 0 10px; }
.section-head p{ color:var(--muted); line-height:1.8; }

.stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.stat{ background:var(--card); border:1px solid var(--line); border-radius:20px; padding:26px 16px; text-align:center; }
.stat-icon{ width:52px; height:52px; border-radius:16px; background:rgba(0,122,255,.10); display:grid; place-items:center; margin:0 auto 12px; color:var(--blue); }
.stat strong{ display:block; font-size:24px; font-weight:800; margin-bottom:6px; }
.stat span{ color:var(--muted); font-size:13px; line-height:1.5; }

.chips{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.chip{ display:flex; align-items:center; gap:8px; background:var(--bg); border:1px solid var(--line); padding:10px 16px;
  border-radius:999px; font-size:13px; }
.chip svg{ width:16px; height:16px; color:var(--blue); flex-shrink:0; }

.trust-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.trust-card{ background:var(--card); border:1px solid var(--line); border-radius:20px; padding:26px; }
.trust-icon{ width:52px; height:52px; border-radius:16px; background:rgba(175,82,222,.10); display:grid; place-items:center; margin-bottom:14px; color:var(--purple); }
.trust-card h3{ margin:0 0 8px; font-size:17px; }
.trust-card p{ color:var(--muted); font-size:14px; line-height:1.7; margin:0; }

.about-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:40px; align-items:center; }
.showcase-card{ background:var(--card); border:1px solid var(--line); border-radius:28px; padding:36px; text-align:center; box-shadow:var(--shadow2); }
.large-logo{ width:90px; height:90px; margin:0 auto 16px; }
.showcase-card h3{ margin:0 0 8px; font-size:20px; }
.showcase-card p{ color:var(--muted); font-size:14px; line-height:1.7; }
.content h2{ font-size:clamp(24px,3.2vw,32px); margin:0 0 18px; }
.read-more-box p{ color:var(--muted); line-height:1.85; margin:0 0 14px; }
.more-text{ max-height:0; overflow:hidden; transition:max-height .5s ease; }
.more-text.open{ max-height:600px; }
.read-btn{ background:none; border:none; color:var(--blue); font-weight:700; cursor:pointer; padding:0; margin-top:6px; font-size:14px; }

.info-wrap{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.info-card{ background:var(--card); border:1px solid var(--line); border-radius:16px; padding:18px; text-align:center; }
.info-card span{ display:block; color:var(--muted); font-size:12px; margin-bottom:6px; }
.info-card strong{ font-size:15px; }

.download-strip{ background:linear-gradient(90deg,var(--blue),var(--purple)); color:#fff; padding:44px 0;
  display:flex; flex-wrap:wrap; gap:20px; align-items:center; justify-content:space-between; }
.download-strip h2{ margin:0 0 6px; font-size:24px; }
.download-strip p{ margin:0; opacity:.9; font-size:14px; }
.download-strip .btn-blue{ background:#fff; color:var(--blue); box-shadow:none; }
.download-strip .btn-soft{ background:rgba(255,255,255,.15); border-color:rgba(255,255,255,.3); color:#fff; }

.features{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feature{ background:var(--card); border:1px solid var(--line); border-radius:20px; padding:26px; }
.feature-icon{ width:52px; height:52px; border-radius:16px; background:rgba(255,45,85,.10); color:var(--pink); display:grid; place-items:center; margin-bottom:14px; }
.feature h3{ margin:0 0 8px; font-size:17px; }
.feature p{ color:var(--muted); font-size:14px; line-height:1.7; margin:0; }

.install-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.install-card{ background:var(--card); border:1px solid var(--line); border-radius:20px; padding:26px; position:relative; }
.install-num{ width:40px; height:40px; border-radius:12px; background:linear-gradient(135deg,var(--blue),var(--purple)); color:#fff;
  display:grid; place-items:center; font-weight:800; margin-bottom:14px; }
.install-card h3{ margin:0 0 8px; font-size:16px; }
.install-card p{ color:var(--muted); font-size:14px; line-height:1.7; margin:0; }

.download-box{ text-align:center; padding:60px 0; max-width:720px; margin:0 auto; }
.download-box p{ color:var(--muted); line-height:1.8; margin:14px 0 26px; }
.apk-details{ display:flex; justify-content:center; gap:30px; flex-wrap:wrap; margin-top:34px; }
.apk-detail{ display:flex; flex-direction:column; align-items:center; }
.apk-detail strong{ font-size:17px; }
.apk-detail span{ color:var(--muted); font-size:12px; }

.download-page{ text-align:center; padding:70px 0; max-width:520px; margin:0 auto; }
.timer-circle{ width:120px; height:120px; border-radius:50%; border:4px solid var(--line); border-top-color:var(--blue);
  display:grid; place-items:center; margin:24px auto; font-size:34px; font-weight:800; animation:spin 3s linear infinite; }
.timer-circle span{ animation:none; display:block; }
.download-warning{ color:var(--muted); font-size:13px; margin-top:20px; line-height:1.7; }

.reviews-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.review{ background:var(--card); border:1px solid var(--line); border-radius:20px; padding:26px; }
.review-stars{ color:#ffb400; letter-spacing:2px; margin-bottom:10px; }
.review h3{ margin:0 0 8px; font-size:16px; }
.review p{ color:var(--muted); font-size:14px; line-height:1.7; margin:0; }

.reasons-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.reason{ display:flex; gap:16px; background:var(--card); border:1px solid var(--line); border-radius:18px; padding:20px; }
.reason-num{ font-size:22px; font-weight:800; color:var(--blue); flex-shrink:0; }
.reason h3{ margin:0 0 6px; font-size:15px; }
.reason p{ color:var(--muted); font-size:13px; line-height:1.7; margin:0; }

.faq-grid{ display:grid; gap:14px; max-width:800px; margin:0 auto; }
.faq{ background:var(--card); border:1px solid var(--line); border-radius:16px; overflow:hidden; }
.faq button{ width:100%; background:none; border:none; text-align:inherit; padding:18px 20px; font-size:15px; font-weight:700;
  display:flex; justify-content:space-between; align-items:center; cursor:pointer; color:var(--text); font-family:inherit; }
.faq .plus{ transition:.3s; flex-shrink:0; color:var(--blue); }
.faq.active .plus{ transform:rotate(45deg); }
.faq-body{ max-height:0; overflow:hidden; transition:max-height .35s ease, padding .35s ease; padding:0 20px; }
.faq.active .faq-body{ max-height:500px; padding:0 20px 18px; }
.faq-body p{ margin:0; color:var(--muted); font-size:14px; line-height:1.75; }

.floating-download{ position:fixed; left:50%; bottom:18px; transform:translateX(-50%); z-index:80; display:none; width:min(420px,92%); }
.floating-download .btn{ width:100%; min-height:52px; justify-content:center; box-shadow:0 20px 48px rgba(0,122,255,.35); }

footer{ text-align:center; padding:36px 20px 90px; color:var(--muted); font-size:13px; border-top:1px solid var(--line); margin-top:40px; }
footer div{ margin-bottom:6px; }

.page-hero{ text-align:center; padding:50px 0 20px; }
.page-hero h1{ font-size:clamp(26px,4vw,42px); margin-bottom:10px; }
.page-hero p{ color:var(--muted); max-width:620px; margin:0 auto; line-height:1.8; }
.breadcrumb{ display:flex; justify-content:center; gap:8px; color:var(--muted); font-size:13px; margin-bottom:16px; }
.breadcrumb a{ color:var(--blue); text-decoration:none; }

.apps-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:20px; }
.app-download-card{ background:var(--card); border:1px solid var(--line); border-radius:22px; padding:30px 20px; text-align:center; box-shadow:var(--shadow2); transition:.25s; }
.app-download-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.app-download-card .app-icon{ width:64px; height:64px; margin:0 auto 16px; }
.app-download-card h3{ margin:0 0 8px; font-size:17px; }
.app-download-card p{ color:var(--muted); font-size:13px; margin:0 0 18px; line-height:1.6; }

.gift-box{ background:var(--card); border:1px solid var(--line); border-radius:24px; padding:40px; text-align:center; max-width:640px; margin:20px auto; box-shadow:var(--shadow2); }
.gift-box .icon-lg{ width:56px; height:56px; color:var(--pink); margin:0 auto 16px; }
.gift-code-box{ background:var(--bg); border:2px dashed var(--blue); border-radius:16px; padding:18px; font-size:22px; font-weight:800; letter-spacing:3px; margin:22px 0; color:var(--blue); }

.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:20px; }
.contact-card{ background:var(--card); border:1px solid var(--line); border-radius:20px; padding:28px; display:flex; gap:16px; align-items:flex-start; }
.contact-card .icon-lg{ color:var(--blue); flex-shrink:0; background:rgba(0,122,255,.10); padding:12px; border-radius:14px; width:48px; height:48px; box-sizing:content-box; }
.contact-card h3{ margin:0 0 6px; font-size:16px; }
.contact-card p, .contact-card a{ color:var(--muted); font-size:14px; margin:0; text-decoration:none; line-height:1.7; }
.contact-text{ max-width:760px; margin:20px auto; color:var(--muted); line-height:1.9; font-size:15px; }
.contact-text p{ margin:0 0 14px; }

.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:10px; }
.blog-card{ background:var(--card); border:1px solid var(--line); border-radius:20px; overflow:hidden; box-shadow:var(--shadow2); transition:.25s; }
.blog-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.blog-thumb{ height:160px; background:linear-gradient(135deg,var(--blue),var(--purple)); display:flex; align-items:center; justify-content:center; }
.blog-thumb svg{ width:44px; height:44px; color:#fff; opacity:.9; }
.blog-card-body{ padding:18px 20px; }
.blog-card h3{ margin:0 0 8px; font-size:15px; line-height:1.5; }
.blog-card p{ color:var(--muted); font-size:13px; line-height:1.7; margin:0 0 12px; }
.blog-card a{ color:var(--blue); font-weight:700; font-size:13px; text-decoration:none; }
.featured-post{ display:grid; grid-template-columns:1fr 1fr; gap:0; background:var(--card); border:1px solid var(--line); border-radius:24px; overflow:hidden; margin-bottom:30px; box-shadow:var(--shadow2); }
.featured-thumb{ background:linear-gradient(135deg,var(--pink),var(--purple)); min-height:220px; display:flex; align-items:center; justify-content:center; }
.featured-thumb svg{ width:60px; height:60px; color:#fff; opacity:.9; }
.featured-body{ padding:32px; display:flex; flex-direction:column; justify-content:center; }
.featured-body span.mini-title{ align-self:flex-start; }
.featured-body h2{ margin:8px 0 12px; font-size:22px; }
.featured-body p{ color:var(--muted); line-height:1.8; margin:0 0 16px; }

.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

@media (max-width:1024px){
  .hero{ grid-template-columns:1fr; text-align:center; padding-top:40px; }
  .hero-desc{ margin-left:auto; margin-right:auto; }
  .actions{ justify-content:center; }
  .hero-stats{ justify-content:center; }
  .about-grid{ grid-template-columns:1fr; }
  .stats,.trust-grid,.features,.install-grid,.reviews-grid,.info-wrap,.apps-grid,.blog-grid{ grid-template-columns:repeat(2,1fr); }
  .contact-grid{ grid-template-columns:1fr; }
  .featured-post{ grid-template-columns:1fr; }
  .featured-thumb{ min-height:160px; }
  nav{ display:none; }
  .menu-toggle{ display:grid; }
}

@media (max-width:760px){
  header{ padding:0 10px; min-height:62px; }
  .brand{ font-size:16px; }
  .brand-logo{ width:34px; height:34px; }
  .header-actions .btn-primary{ display:none; }
  h1{ letter-spacing:-1px; }
  .section{ padding:44px 0; }
  .halo{ display:none; }
        .visual{ flex-wrap:wrap; justify-content:center; min-height:auto; gap:14px; }
      .iphone{ width:min(230px,60vw); aspect-ratio:230/480; height:auto; order:0; flex:0 0 100%; }

  .visual > .floating{ position:static !important; animation:none; width:auto; font-size:12px; padding:8px 12px; }
  .floating strong{ font-size:11px; }
  .floating span{ font-size:9px; }
  .floating.one{ order:1; }
  .floating.two{ order:2; }
  .floating.three{ order:3; }
}

@media (max-width:560px){
  .stats,.trust-grid,.features,.install-grid,.reviews-grid,.info-wrap,.apps-grid,.blog-grid{ grid-template-columns:1fr; }
  .reasons-grid{ grid-template-columns:1fr; }
  .download-strip{ flex-direction:column; text-align:center; }
  .apk-details{ gap:18px; }
  nav{ display:none; }
  .top-alert{ font-size:11px; padding:8px 12px; }
      .iphone{ width:min(200px,58vw); aspect-ratio:200/420; height:auto; }

  .floating span{ display:none; }
  .floating{ padding:8px 10px; }
}

@media (max-width:380px){
  .floating strong{ display:none; }
  .floating{ padding:8px; border-radius:14px; }
  .floating svg{ width:20px; height:20px; }
  header{ min-height:56px; }
  .brand span{ display:none; }
  h1{ font-size:28px; }
  .hero-desc{ font-size:14px; }
}
