
:root{
  --bg:#030812;
  --bg-soft:#071120;
  --surface:#0b1728;
  --surface-2:#101f34;
  --line:rgba(134,178,223,.16);
  --line-strong:rgba(121,190,231,.24);
  --text:#f4f8fc;
  --muted:#9eb0c5;
  --cyan:#1cc8f6;
  --blue:#3573ff;
  --green:#4ade80;
  --amber:#fbbf24;
  --red:#fb7185;
  --shadow:0 28px 80px rgba(0,0,0,.32);
  --radius:22px;
  --max:1640px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 16% 10%,rgba(28,200,246,.10),transparent 28%),
    radial-gradient(circle at 86% 2%,rgba(53,115,255,.11),transparent 26%),
    var(--bg);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
body::before{
  content:"";
  position:fixed;inset:0;pointer-events:none;z-index:-1;
  background-image:
    linear-gradient(rgba(255,255,255,.014) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.014) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.78),transparent 78%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font:inherit}
.container{width:min(var(--max),calc(100% - 44px));margin-inline:auto}

/* HEADER — same visual language as first version, no white logo box */
.header{
  position:sticky;top:0;z-index:100;
  backdrop-filter:blur(18px);
  background:rgba(3,8,18,.80);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand{
  display:flex;
  align-items:center;
  gap:11px;
  min-width:292px;
  flex:0 0 auto;
}
.brand-mark{
  width:58px;height:60px;
  object-fit:contain;
}
.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.02;
}
.brand-copy strong{
  color:#f4f9ff;
  font-size:18px;
  letter-spacing:-.015em;
}
.brand-copy span{
  color:#6fdcf9;
  font-size:9px;
  font-weight:900;
  letter-spacing:.12em;
  margin-top:5px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:31px;
  color:#c1cedb;
  font-size:14px;
  font-weight:750;
  margin-left:auto;
}
.nav-links a:hover,.nav-links a.active{color:#fff}
.nav-cta{display:flex;align-items:center;gap:10px}
.menu-btn{
  display:none;width:44px;height:44px;border:1px solid var(--line);
  border-radius:12px;background:rgba(255,255,255,.04);color:#fff;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  min-height:46px;padding:0 18px;border-radius:13px;border:1px solid transparent;
  font-weight:800;font-size:14px;transition:.2s ease;cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  color:#02101d;
  background:linear-gradient(135deg,#51dcff,#2b83ff);
  box-shadow:0 10px 30px rgba(28,200,246,.16);
}
.btn-secondary{
  border-color:var(--line);
  background:rgba(255,255,255,.035);
  color:#edf6ff;
}
.btn-ghost{border-color:transparent;color:#b8c8da;background:transparent}

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;
  border:1px solid rgba(28,200,246,.22);background:rgba(28,200,246,.055);
  color:#9be9ff;font-size:11px;font-weight:900;letter-spacing:.1em;text-transform:uppercase
}
.dot{width:7px;height:7px;border-radius:50%;background:var(--green);box-shadow:0 0 14px var(--green)}
h1,h2,h3{margin:0;line-height:1.08;letter-spacing:-.035em}
h1{font-size:clamp(44px,4.55vw,72px);margin-top:20px}
h2{font-size:clamp(32px,3.7vw,48px)}
h3{font-size:22px}
.gradient-text{
  background:linear-gradient(110deg,#f6fbff 0%,#92eaff 48%,#77a7ff 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

/* HERO */
.hero{padding:90px 0 76px;overflow:hidden}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(700px,1.12fr);
  gap:76px;
  align-items:center;
}
.hero-copy{
  font-size:18px;color:var(--muted);max-width:720px;margin:24px 0 30px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px}
.hero-pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
.pill{
  padding:8px 11px;border-radius:10px;background:rgba(255,255,255,.035);
  border:1px solid var(--line);font-size:12px;color:#bdcada
}

/* Real-product showcase, styled like original v1.0 console */
.product-showcase{
  position:relative;
  border:1px solid rgba(128,188,244,.18);
  background:linear-gradient(160deg,rgba(16,31,52,.94),rgba(5,12,23,.98));
  border-radius:26px;
  padding:13px;
  box-shadow:var(--shadow);
}
.product-showcase::after{
  content:"";position:absolute;inset:-1px;border-radius:26px;pointer-events:none;
  background:linear-gradient(135deg,rgba(28,200,246,.25),transparent 29%,transparent 70%,rgba(53,115,255,.15));
  mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  mask-composite:exclude;padding:1px
}
.showcase-bar{
  height:34px;display:flex;align-items:center;gap:7px;padding:0 5px 10px;
  color:#7590a8;font:700 10px ui-monospace,SFMono-Regular,Menlo,monospace;
}
.showcase-bar i{width:7px;height:7px;border-radius:50%;background:#32465c}
.showcase-bar span{margin-left:6px}
.product-showcase img{
  width:100%;
  aspect-ratio:16/8.25;
  object-fit:cover;
  object-position:top;
  border-radius:16px;
  border:1px solid var(--line);
}

/* SECTIONS — deliberately nearly same background, soft transitions */
.section{padding:88px 0;background:transparent}
.section.alt{
  background:rgba(255,255,255,.012);
  border-block:1px solid rgba(255,255,255,.022)
}
.section-head{
  display:flex;justify-content:space-between;align-items:end;gap:30px;margin-bottom:34px
}
.section-kicker{
  color:#6bdcff;font-size:11px;font-weight:900;text-transform:uppercase;
  letter-spacing:.12em;margin-bottom:10px
}
.section-desc{max-width:620px;color:var(--muted);margin:0}
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.product-card{
  position:relative;min-height:450px;
  border-radius:var(--radius);
  background:linear-gradient(155deg,rgba(16,31,52,.90),rgba(6,14,27,.95));
  border:1px solid var(--line);overflow:hidden;display:flex;flex-direction:column
}
.product-card::before{
  content:"";position:absolute;width:180px;height:180px;border-radius:50%;
  right:-70px;top:-80px;background:rgba(28,200,246,.055);filter:blur(3px)
}
.product-shot{
  position:relative;
  aspect-ratio:16/8.6;
  overflow:hidden;
  background:#050e19;
  border-bottom:1px solid var(--line);
}
.product-shot img{
  width:100%;height:100%;
  object-fit:cover;object-position:top;
}
.product-shot::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to bottom,transparent 72%,rgba(5,14,25,.45));
  pointer-events:none;
}
.product-content{
  padding:22px 24px 24px;
  display:flex;flex-direction:column;flex:1;
}
.product-icon{
  width:44px;height:44px;border-radius:13px;display:grid;place-items:center;
  background:linear-gradient(145deg,rgba(28,200,246,.14),rgba(53,115,255,.10));
  border:1px solid rgba(98,201,244,.16);font-size:21px
}
.product-meta{
  margin:17px 0 0;color:#64d9fa;font-size:10px;font-weight:900;
  letter-spacing:.1em;text-transform:uppercase
}
.product-card h3{margin-top:6px;font-size:25px}
.product-card p{color:var(--muted);font-size:13.5px}
.feature-list{display:grid;gap:8px;margin:4px 0 22px;padding:0;list-style:none}
.feature-list li{display:flex;gap:10px;align-items:flex-start;color:#c4d1df;font-size:12.5px}
.feature-list li::before{content:"✓";color:#65defd;font-weight:900}
.product-actions{display:flex;gap:9px;flex-wrap:wrap;margin-top:auto}

.capabilities{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.cap-card{
  padding:20px;border:1px solid var(--line);border-radius:18px;
  background:rgba(255,255,255,.024)
}
.cap-card b{display:block;margin:12px 0 7px}
.cap-card p{margin:0;color:var(--muted);font-size:13px}
.flow{
  display:grid;grid-template-columns:1fr auto 1fr auto 1fr;
  align-items:center;gap:14px
}
.flow-card{
  padding:24px;border:1px solid var(--line);border-radius:18px;
  background:rgba(11,23,40,.82);min-height:160px
}
.flow-arrow{font-size:26px;color:#4acff5}
.flow-card small{color:#61d8fa;text-transform:uppercase;font-weight:900;letter-spacing:.08em}
.flow-card p{color:var(--muted);font-size:14px;margin-bottom:0}
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.service-card{
  padding:22px;border-radius:18px;border:1px solid var(--line);
  background:rgba(255,255,255,.022)
}
.service-card p{color:var(--muted);font-size:14px;margin-bottom:0}
.steps{counter-reset:step;display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.step{
  padding:22px;border:1px solid var(--line);border-radius:18px;
  background:rgba(11,23,40,.78)
}
.step::before{
  counter-increment:step;content:"0" counter(step);
  display:block;color:#52d8fa;font:800 12px ui-monospace,monospace;margin-bottom:18px
}
.cta{
  position:relative;overflow:hidden;padding:48px;border-radius:28px;
  border:1px solid rgba(86,195,244,.18);
  background:linear-gradient(130deg,rgba(13,37,59,.90),rgba(8,21,42,.92) 55%,rgba(16,35,67,.94));
}
.cta::after{
  content:"";position:absolute;inset:auto -110px -150px auto;width:360px;height:360px;
  border-radius:50%;background:rgba(28,200,246,.075)
}
.cta-grid{
  display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center;position:relative;z-index:1
}

/* FOOTER */
.footer{padding:54px 0 28px;border-top:1px solid var(--line);background:#02070f}
.footer-grid{display:grid;grid-template-columns:1.4fr .7fr .7fr .9fr;gap:32px}
.footer-brand-lockup{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.footer-brand-lockup .brand-mark{width:40px;height:44px}
.footer-brand-lockup strong{display:block;font-size:16px}
.footer-brand-lockup span{
  display:block;color:#6bdcf8;font-size:9px;font-weight:900;letter-spacing:.11em;margin-top:4px
}
.footer p,.footer a{color:#8fa3b7;font-size:13px}
.footer a:hover{color:#fff}
.footer h4{font-size:14px;margin:2px 0 12px;color:#eaf4ff}
.footer-links{display:grid;gap:8px}
.copyright{
  border-top:1px solid var(--line);margin-top:38px;padding-top:20px;
  display:flex;justify-content:space-between;gap:20px;color:#70869b;font-size:12px
}

/* Product index/detail */
.page-hero{padding:82px 0 50px;text-align:center}
.page-hero h1{font-size:clamp(38px,4.7vw,60px)}
.page-hero p{color:var(--muted);max-width:760px;margin:20px auto 0}
.breadcrumb{font-size:12px;color:#7990a7;margin-bottom:18px}
.detail-hero{padding:80px 0 60px}
.detail-grid{
  display:grid;grid-template-columns:minmax(0,.82fr) minmax(700px,1.18fr);
  gap:54px;align-items:center
}
.detail-hero h1{font-size:clamp(40px,4.8vw,64px)}
.detail-hero p{color:var(--muted);font-size:16px}
.tag-row{display:flex;flex-wrap:wrap;gap:8px;margin:24px 0}
.tag{
  font-size:11px;border:1px solid var(--line);border-radius:999px;
  padding:7px 10px;color:#bcd0e3;background:rgba(255,255,255,.025)
}
.detail-shot{
  border-radius:24px;border:1px solid rgba(100,188,235,.17);
  padding:12px;background:#07111e;box-shadow:var(--shadow)
}
.detail-shot img{
  width:100%;aspect-ratio:16/8.4;object-fit:cover;object-position:top;border-radius:15px
}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.info-card{
  padding:24px;border:1px solid var(--line);border-radius:20px;
  background:rgba(255,255,255,.022)
}
.info-card p{color:var(--muted);font-size:14px}
.link-card{
  display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px 20px;
  border:1px solid var(--line);border-radius:16px;background:#081321
}
.link-card code{font-size:12px;color:#75dcf8}
.gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.gallery-item{
  overflow:hidden;border-radius:19px;border:1px solid var(--line);
  background:rgba(9,20,35,.92)
}
.gallery-item img{
  width:100%;aspect-ratio:16/8.45;object-fit:cover;object-position:top
}
.gallery-caption{padding:15px 17px;border-top:1px solid var(--line)}
.gallery-caption b{display:block;font-size:14px}
.gallery-caption small{color:#7f94a8}
.badge-live{
  display:inline-flex;align-items:center;gap:7px;font-size:11px;color:#9df1b8;font-weight:800
}
.badge-live::before{
  content:"";width:7px;height:7px;background:#4ade80;border-radius:50%;
  box-shadow:0 0 10px #4ade80
}


@media(min-width:1500px){
  .nav{min-height:84px}
  .brand{min-width:315px}
  .brand-mark{width:62px;height:64px}
  .brand-copy strong{font-size:19px}
  .brand-copy span{font-size:9.5px}
  .hero-grid{gap:86px}
  .product-showcase{padding:15px}
  .product-showcase img{aspect-ratio:16/8.15}
  .section-head{margin-bottom:38px}
  .product-grid{gap:22px}
  .product-content{padding:24px 26px 26px}
}

@media(max-width:1080px){
  .nav-links,.nav-cta .btn-secondary{display:none}
  .menu-btn{display:grid;place-items:center}
  .nav.open .nav-links{
    display:flex;position:absolute;left:20px;right:20px;top:68px;flex-direction:column;
    align-items:stretch;padding:16px;border:1px solid var(--line);border-radius:16px;
    background:#07111e;box-shadow:var(--shadow)
  }
  .hero-grid,.detail-grid,.cta-grid{grid-template-columns:1fr}
  .hero{padding-top:68px}
  .product-showcase{max-width:800px}
  .product-grid{grid-template-columns:1fr 1fr}
  .capabilities{grid-template-columns:1fr 1fr}
  .flow{grid-template-columns:1fr}
  .flow-arrow{transform:rotate(90deg);text-align:center}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:680px){
  .container{width:min(var(--max),calc(100% - 28px))}
  .nav{min-height:70px}
  .brand{min-width:auto}
  .brand-mark{width:42px;height:44px}
  .brand-copy strong{font-size:15px}
  .brand-copy span{font-size:7px}
  .hero{padding:54px 0 46px}
  .hero-grid{gap:40px}
  h1{font-size:40px}
  .hero-copy{font-size:16px}
  .product-grid,.capabilities,.service-grid,.two-col,.steps,.gallery{grid-template-columns:1fr}
  .section{padding:64px 0}
  .section-head{display:block}
  .section-desc{margin-top:14px}
  .product-card{min-height:auto}
  .cta{padding:31px 23px}
  .cta-grid{gap:26px}
  .footer-grid{grid-template-columns:1fr}
  .copyright{display:block}
  .page-hero,.detail-hero{padding-top:54px}
}


/* =========================================================
   v1.5.0 BRAND FIX
   Original 1200x1087 transparent AUFAL Network artwork.
   No screenshot crop, no HTML-recreated wordmark.
   ========================================================= */

.header .nav{
  min-height:106px;
}

.header .brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  flex:0 0 auto;
  min-width:150px;
  padding:0;
  margin:0;
  overflow:visible;
}

.header .brand-logo{
  display:block;
  width:auto;
  height:92px;
  max-width:none;
  object-fit:contain;
  object-position:left center;
  image-rendering:auto;
}

.footer .footer-brand-lockup{
  display:flex;
  align-items:center;
  min-height:132px;
  margin-bottom:12px;
}

.footer .footer-logo{
  display:block;
  width:auto;
  height:126px;
  max-width:none;
  object-fit:contain;
  object-position:left center;
  image-rendering:auto;
}

/* Hide obsolete reconstructed logo children should cached HTML ever appear. */


@media(min-width:1500px){
  .header .nav{min-height:110px}
  .header .brand-logo{height:96px}
}

@media(max-width:1080px){
  .header .nav{min-height:90px}
  .header .brand{min-width:auto}
  .header .brand-logo{height:78px}
}

@media(max-width:680px){
  .header .nav{min-height:82px}
  .header .brand-logo{height:70px}
  .footer .footer-brand-lockup{min-height:106px}
  .footer .footer-logo{height:100px}
}


/* =========================================================
   v1.6.0 BRAND LOCKUP
   Original AUFAL symbol + separate wordmark text.
   Theme/layout from v1.5.0 remains unchanged.
   ========================================================= */

.header .nav{
  min-height:94px;
}

.header .brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:13px;
  min-width:270px;
  padding:0;
  margin:0;
  overflow:visible;
}

.header .brand-symbol{
  display:block;
  width:58px;
  height:66px;
  object-fit:contain;
  flex:0 0 auto;
}

.header .brand-copy{
  display:flex !important;
  flex-direction:column;
  justify-content:center;
  line-height:1.04;
  white-space:nowrap;
}

.header .brand-copy strong{
  display:block;
  color:#f5f9fd;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.02em;
}

.header .brand-copy span{
  display:block;
  margin-top:6px;
  color:#62d9f7;
  font-size:8.5px;
  font-weight:900;
  letter-spacing:.105em;
}

.footer .footer-brand-lockup{
  display:flex;
  align-items:center;
  gap:13px;
  min-height:74px;
  margin-bottom:14px;
}

.footer .footer-symbol{
  display:block;
  width:60px;
  height:68px;
  object-fit:contain;
  flex:0 0 auto;
}

.footer .footer-brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.04;
}

.footer .footer-brand-copy strong{
  display:block;
  color:#f5f9fd;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.02em;
}

.footer .footer-brand-copy span{
  display:block;
  margin-top:6px;
  color:#62d9f7;
  font-size:8.5px;
  font-weight:900;
  letter-spacing:.105em;
}

/* Disable the v1.5 full-logo rules. */
.header .brand-logo,
.footer .footer-logo{
  display:none !important;
}

@media(min-width:1500px){
  .header .nav{min-height:98px}
  .header .brand{min-width:285px}
  .header .brand-symbol{width:62px;height:70px}
  .header .brand-copy strong{font-size:19px}
  .header .brand-copy span{font-size:9px}
}

@media(max-width:1080px){
  .header .nav{min-height:86px}
  .header .brand{min-width:auto;gap:10px}
  .header .brand-symbol{width:52px;height:58px}
  .header .brand-copy strong{font-size:16px}
  .header .brand-copy span{font-size:7.5px}
}

@media(max-width:680px){
  .header .nav{min-height:78px}
  .header .brand{gap:8px}
  .header .brand-symbol{width:43px;height:50px}
  .header .brand-copy strong{font-size:14px}
  .header .brand-copy span{font-size:6.4px;letter-spacing:.08em;margin-top:4px}

  .footer .footer-symbol{width:52px;height:58px}
  .footer .footer-brand-copy strong{font-size:16px}
  .footer .footer-brand-copy span{font-size:7.5px}
}


/* =========================================================
   v1.7.0 NAVBAR BRAND LOCKUP
   Match the footer/capture styling.
   ========================================================= */

.header .nav{
  min-height:88px;
}

.header .brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  min-width:290px;
  padding:0;
  margin:0;
  overflow:visible;
}

.header .brand-symbol{
  display:block;
  width:58px;
  height:62px;
  object-fit:contain;
  object-position:center;
  flex:0 0 auto;
}

.header .brand-copy{
  display:flex !important;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  line-height:1;
  white-space:nowrap;
  transform:translateY(1px);
}

.header .brand-copy strong{
  display:block;
  margin:0;
  color:#f4f8fc;
  font-size:18px;
  line-height:1;
  font-weight:800;
  letter-spacing:-.02em;
}

.header .brand-copy span{
  display:block;
  margin-top:7px;
  color:#57d8f6;
  font-size:8px;
  line-height:1;
  font-weight:900;
  letter-spacing:.10em;
}

/* Footer remains the visual reference and uses the same proportions. */
.footer .footer-brand-lockup{
  gap:14px;
}
.footer .footer-symbol{
  width:58px;
  height:62px;
}
.footer .footer-brand-copy strong{
  font-size:18px;
  line-height:1;
}
.footer .footer-brand-copy span{
  margin-top:7px;
  font-size:8px;
  line-height:1;
}

@media(min-width:1500px){
  .header .nav{min-height:90px}
  .header .brand{min-width:300px}
  .header .brand-symbol{width:60px;height:64px}
  .header .brand-copy strong{font-size:18.5px}
  .header .brand-copy span{font-size:8.2px}
}

@media(max-width:1080px){
  .header .nav{min-height:82px}
  .header .brand{min-width:auto;gap:11px}
  .header .brand-symbol{width:52px;height:56px}
  .header .brand-copy strong{font-size:16px}
  .header .brand-copy span{font-size:7px;margin-top:6px}
}

@media(max-width:680px){
  .header .nav{min-height:76px}
  .header .brand{gap:9px}
  .header .brand-symbol{width:44px;height:48px}
  .header .brand-copy strong{font-size:14px}
  .header .brand-copy span{font-size:6.2px;margin-top:5px;letter-spacing:.085em}
}


/* =========================================================
   v1.8.0 FIX — BRAND TEXT VISIBILITY
   Remove legacy v1.5 hide conflict and enforce final lockup.
   ========================================================= */

.header .nav .brand .brand-copy{
  display:flex !important;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  visibility:visible !important;
  opacity:1 !important;
  width:auto;
  height:auto;
  overflow:visible;
  line-height:1;
  white-space:nowrap;
}

.header .nav .brand .brand-copy strong{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  color:#f4f8fc;
  font-size:18px;
  line-height:1;
  font-weight:800;
  letter-spacing:-.02em;
}

.header .nav .brand .brand-copy span{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  margin-top:7px;
  color:#57d8f6;
  font-size:8px;
  line-height:1;
  font-weight:900;
  letter-spacing:.10em;
}

@media(min-width:1500px){
  .header .nav .brand .brand-copy strong{font-size:18.5px}
  .header .nav .brand .brand-copy span{font-size:8.2px}
}

@media(max-width:1080px){
  .header .nav .brand .brand-copy strong{font-size:16px}
  .header .nav .brand .brand-copy span{font-size:7px;margin-top:6px}
}

@media(max-width:680px){
  .header .nav .brand .brand-copy strong{font-size:14px}
  .header .nav .brand .brand-copy span{font-size:6.2px;margin-top:5px;letter-spacing:.085em}
}
