/* ============================================================
   ARFmedia — Neon Skyline Theme
   A signage-built futuristic landing page.
   Every glowing "sign" on this page is real content:
   a service, a language, a market — nothing here is decorative filler.
   ============================================================ */

:root{
  --void:      #05060d;
  --panel:     #0c1024;
  --panel-2:   #10142b;
  --line:      #2a2f52;

  --pink:      #ff2f92;
  --cyan:      #22e8ff;
  --amber:     #ffb703;
  --violet:    #9d5bff;

  --text:      #eef0fb;
  --muted:     #9aa0c0;
  --muted-2:   #6b7196;

  --font-display: "Unbounded", sans-serif;
  --font-body: "Manrope", sans-serif;

  --radius: 3px;
  --container: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--void);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1,h2,h3{
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
  font-weight: 700;
}

p{ margin: 0 0 1em; color: var(--muted); }
p:last-child{ margin-bottom: 0; }

::selection{ background: var(--pink); color: var(--void); }

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ============================================================
   Reusable "console panel" frame — thin double border + corner ticks
   Stands in for the album's engraved-plate look, without copying it.
   ============================================================ */
.panel{
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 40px;
}
.panel::before{
  content:"";
  position:absolute; inset: 6px;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events:none;
}
.corner-ticks::after,
.corner-ticks::before{ content:none; }
.corner-ticks{ position:relative; }
.corner-ticks span.tick{
  position:absolute; width:14px; height:14px;
  border: 1px solid var(--cyan);
  opacity:.55;
}
.tick.tl{ top:-1px; left:-1px; border-right:none; border-bottom:none; }
.tick.tr{ top:-1px; right:-1px; border-left:none; border-bottom:none; }
.tick.bl{ bottom:-1px; left:-1px; border-right:none; border-top:none; }
.tick.br{ bottom:-1px; right:-1px; border-left:none; border-top:none; }

/* ============================================================
   NAV (header.php)
   ============================================================ */
.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(5,6,13,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.brand-mark{
  width: 30px; height:30px; flex:none;
}
.brand-mark path{ fill:none; stroke: var(--cyan); stroke-width: 6; }
.brand small{
  display:block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  color: var(--muted-2);
  letter-spacing: .12em;
}

.nav-links{
  display:flex; align-items:center; gap: 30px;
  list-style:none; margin:0; padding:0;
}
.nav-links a{
  font-size: 0.86rem;
  color: var(--muted);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-links a:hover, .nav-links a.is-active{
  color: var(--text);
  border-color: var(--pink);
}
.nav-cta{
  color: var(--void) !important;
  background: var(--cyan);
  padding: 9px 18px !important;
  font-weight: 700;
  border: none !important;
}
.nav-cta:hover{ background: var(--pink); color: var(--void) !important; border-color: transparent !important; }

.nav-toggle{
  display:none;
  background:none; border: 1px solid var(--line); color: var(--text);
  width:40px; height:40px; cursor:pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:18px; height:2px; background: var(--text);
  margin: 4px auto; transition: transform .2s ease;
}

@media (max-width: 860px){
  .nav-toggle{ display:block; }
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:flex-start; gap:0;
    background: var(--void);
    border-bottom: 1px solid var(--line);
    max-height:0; overflow:hidden;
  }
  .nav-links.is-open{ max-height: 400px; }
  .nav-links li{ width:100%; }
  .nav-links a{ display:block; padding: 16px 28px; border-bottom: 1px solid var(--line); }
  .nav-cta{ margin: 12px 28px; display:inline-block; }
}

/* ============================================================
   HERO — signage skyline
   ============================================================ */
.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(ellipse 900px 500px at 18% -10%, rgba(157,91,255,.35), transparent 60%),
    radial-gradient(ellipse 700px 500px at 90% 0%, rgba(34,232,255,.18), transparent 60%),
    linear-gradient(180deg, #0a0620 0%, #05060d 65%);
  border-bottom: 1px solid var(--line);
}

.hero-inner{
  position:relative;
  padding: 96px 28px 0;
  max-width: var(--container);
  margin: 0 auto;
  z-index:2;
}

.hero-eyebrow{
  font-size:.8rem;
  color: var(--muted-2);
  margin-bottom: 22px;
  max-width: 480px;
}

.hero h1{
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  max-width: 12ch;
  color: var(--text);
}
.hero h1 .glow{
  color: var(--cyan);
  text-shadow: 0 0 6px rgba(34,232,255,.9), 0 0 26px rgba(34,232,255,.5);
}

.hero-sub{
  max-width: 46ch;
  margin: 26px 0 34px;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom: 64px; }

.btn{
  display:inline-block;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  border: 1px solid var(--line);
  cursor:pointer;
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}
.btn-solid{
  background: var(--pink);
  color: var(--void);
  border-color: var(--pink);
}
.btn-solid:hover{ background: #ff5aa8; transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-outline:hover{ border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

/* --- skyline made of real content: buildings + neon signs --- */
.skyline{
  position:relative;
  display:flex;
  align-items:flex-end;
  gap: 3px;
  height: 260px;
  padding: 0 0 0;
  overflow:hidden;
}
.building{
  position:relative;
  flex:1 1 auto;
  background: linear-gradient(180deg, #0e1230, #05060d 85%);
  border-top: 1px solid rgba(255,255,255,.06);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap: 8px;
  padding-top: 10px;
  min-width: 64px;
}
.building .sign{
  font-family: var(--font-display);
  font-size: .58rem;
  letter-spacing: .04em;
  padding: 5px 8px;
  border: 1px solid currentColor;
  white-space: nowrap;
  text-shadow: 0 0 6px currentColor;
  box-shadow: 0 0 10px -2px currentColor inset, 0 0 14px -4px currentColor;
}
.building .sign.pink{ color: var(--pink); }
.building .sign.cyan{ color: var(--cyan); }
.building .sign.amber{ color: var(--amber); }
.building .sign.violet{ color: var(--violet); }

.building .lights{
  display:grid;
  grid-template-columns: repeat(3, 4px);
  gap: 6px;
  margin-top: 6px;
}
.building .lights i{
  width:4px; height:4px; background: rgba(238,240,251,.18);
}
.building .lights i:nth-child(3n){ background: rgba(34,232,255,.4); }

.building.tall{ height: 240px; }
.building.mid{ height: 170px; }
.building.low{ height: 110px; }

.sign.flicker{ animation: flicker 6s infinite; }
@keyframes flicker{
  0%, 19%, 21%, 23%, 54%, 56%, 100%{ opacity: 1; }
  20%, 22%, 55%{ opacity: .35; }
}

@media (prefers-reduced-motion: reduce){
  .sign.flicker{ animation: none; }
}

@media (max-width: 700px){
  .skyline{ height: 170px; }
  .building.tall{ height: 160px; }
  .building.mid{ height: 120px; }
  .building.low{ height: 80px; }
  .building .sign{ font-size:.5rem; padding:4px 6px; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #08091a;
  overflow:hidden;
  white-space:nowrap;
  position:relative;
}
.ticker-track{
  display:inline-flex;
  gap: 48px;
  padding: 14px 0;
  animation: scroll-left 32s linear infinite;
}
.ticker-track span{
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing:.04em;
  color: var(--muted);
  display:inline-flex; align-items:center; gap:10px;
}
.ticker-track span::before{
  content:"◆"; color: var(--pink); font-size:.6rem;
}
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .ticker-track{ animation: none; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section{ padding: 96px 0; }
.section-head{
  max-width: 640px;
  margin-bottom: 48px;
}
.kicker{
  font-family: var(--font-display);
  font-size: .78rem;
  color: var(--amber);
  margin-bottom: 14px;
}
.section-head h2{
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.section-head p{ font-size: 1.02rem; }

/* --- About: split with terminal readout --- */
.about-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items:start;
}
.about-grid .copy p{ margin-bottom: 1.1em; }
.about-grid .copy p:first-child{ color: var(--text); font-size: 1.08rem; }

.terminal{
  background: #05060d;
  border: 1px solid var(--line);
  font-family: "Space Mono", monospace;
  font-size: .82rem;
  color: var(--cyan);
  padding: 22px;
}
.terminal .tbar{
  display:flex; gap:6px; margin-bottom:16px;
}
.terminal .tbar i{ width:8px; height:8px; background: var(--line); border-radius:50%; }
.terminal .row{ display:flex; justify-content:space-between; padding: 7px 0; border-bottom: 1px dashed rgba(255,255,255,.08); }
.terminal .row span:first-child{ color: var(--muted); }
.terminal .row span:last-child{ color: var(--text); }
.terminal .row:last-child{ border-bottom:none; }

@media (max-width: 860px){
  .about-grid{ grid-template-columns: 1fr; }
}

/* --- Services grid --- */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card{
  background: var(--panel);
  padding: 30px 26px;
  position:relative;
}
.service-card .num{
  font-family: var(--font-display);
  font-size: .7rem;
  color: var(--muted-2);
  margin-bottom: 18px;
  display:block;
}
.service-card h3{
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p{ font-size: .92rem; margin:0; }
.service-card .glyph{
  position:absolute; top:26px; right:26px;
  width: 26px; height:26px;
}
.service-card .glyph path,
.service-card .glyph circle,
.service-card .glyph rect,
.service-card .glyph line{
  stroke: var(--pink); fill:none; stroke-width:1.6;
}
.service-card:nth-child(3n+2) .glyph path,
.service-card:nth-child(3n+2) .glyph circle,
.service-card:nth-child(3n+2) .glyph rect,
.service-card:nth-child(3n+2) .glyph line{ stroke: var(--cyan); }
.service-card:nth-child(3n) .glyph path,
.service-card:nth-child(3n) .glyph circle,
.service-card:nth-child(3n) .glyph rect,
.service-card:nth-child(3n) .glyph line{ stroke: var(--amber); }

@media (max-width: 860px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .services-grid{ grid-template-columns: 1fr; }
}

/* --- Mission --- */
.mission{
  background: linear-gradient(180deg, #0a0d22, #05060d);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mission-inner{
  max-width: 780px;
}
.mission .kicker{ color: var(--violet); }
.mission blockquote{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  color: var(--text);
  border-left: 2px solid var(--violet);
  padding-left: 28px;
}

/* --- Markets split (tourism/gaming) --- */
.markets{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items:center;
}
.markets .copy p{ margin-bottom: 1.1em; }
.sign-cluster{
  display:flex; flex-wrap:wrap; gap: 12px;
  justify-content:flex-start;
}
.sign-cluster span{
  font-family: var(--font-display);
  font-size: .74rem;
  padding: 10px 16px;
  border: 1px solid currentColor;
  text-shadow: 0 0 6px currentColor;
  box-shadow: 0 0 12px -4px currentColor;
}
.sign-cluster span:nth-child(4n+1){ color: var(--pink); }
.sign-cluster span:nth-child(4n+2){ color: var(--cyan); }
.sign-cluster span:nth-child(4n+3){ color: var(--amber); }
.sign-cluster span:nth-child(4n+4){ color: var(--violet); }

@media (max-width: 860px){
  .markets{ grid-template-columns: 1fr; }
}

/* --- Go international / languages wall --- */
.lang-wall{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top: 30px;
}
.lang-wall span{
  font-size: .84rem;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.lang-wall span.lit{
  border-color: var(--cyan);
  color: var(--cyan);
  text-shadow: 0 0 6px rgba(34,232,255,.6);
}

/* --- Contact / beacon --- */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.beacon{
  position:relative;
  padding: 34px;
}
.beacon .dot{
  width:10px; height:10px; background: var(--pink);
  box-shadow: 0 0 10px 2px var(--pink);
  margin-bottom: 18px;
}
.beacon address{ font-style:normal; color: var(--text); line-height:1.7; }
.beacon .label{ font-size:.76rem; color: var(--muted-2); margin-bottom:6px; }

@media (max-width: 860px){
  .contact{ grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER (footer.php)
   ============================================================ */
.site-footer{
  background: #030409;
  border-top: 1px solid var(--line);
  padding-top: 64px;
}
.footer-skyline{
  display:flex; align-items:flex-end; gap:2px;
  height: 46px;
  opacity:.7;
  margin-bottom: 48px;
}
.footer-skyline i{
  flex:1; background: linear-gradient(180deg, var(--line), transparent);
  display:block;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-grid h4{
  font-family: var(--font-display);
  font-size: .78rem;
  color: var(--muted-2);
  margin: 0 0 18px;
}
.footer-grid ul{ list-style:none; margin:0; padding:0; }
.footer-grid li{ margin-bottom: 11px; }
.footer-grid a{ font-size: .9rem; color: var(--muted); }
.footer-grid a:hover{ color: var(--cyan); }
.footer-brand p{ max-width: 32ch; font-size:.9rem; }

.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 20px;
  flex-wrap:wrap;
}
.footer-bottom small{ color: var(--muted-2); font-size:.8rem; }
.eu-badge{ display:flex; align-items:center; gap:10px; color: var(--muted-2); font-size:.76rem; }
.eu-badge svg circle.star{ fill: var(--amber); }

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
}
