/* ── Future glass refresh ── */
:root {
  --future-bg: #070b16;
  --future-panel: rgba(18, 26, 43, 0.74);
  --future-panel-strong: rgba(24, 35, 57, 0.9);
  --future-line: rgba(177, 226, 255, 0.2);
  --future-mint: #60e6b5;
  --future-blue: #4f8cff;
  --future-cyan: #66ddff;
  --future-white: #f8fbff;
  --soft: #07101f;
  --paper: #0b1526;
}

body {
  background: #07101f;
  overflow-x: hidden;
}

.topbar {
  background: #08111f;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(248,251,255,.82);
}

nav {
  top: 14px;
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto 14px;
  height: 78px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(15, 20, 27, 0.54);
  box-shadow: 0 22px 58px rgba(0,0,0,.24);
  backdrop-filter: blur(18px) saturate(1.25);
}

.nav-star {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.94);
  color: var(--brand);
  font-size: 26px;
  filter: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,.26), 0 12px 30px rgba(0,0,0,.24);
}

.nav-brand {
  color: var(--future-white);
  font-size: 22px;
  text-transform: uppercase;
}

.nav-brand em {
  color: var(--future-mint);
  letter-spacing: .24em;
}

.nav-links {
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.nav-links a {
  border: 0;
  color: rgba(255,255,255,.76);
  border-radius: 8px;
  padding: 9px 16px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: #113423;
  background: rgba(255,255,255,.94);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
}

.nav-cta {
  background: linear-gradient(135deg, rgba(96,230,181,.95), rgba(79,140,255,.95));
  color: #06101f !important;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(79,140,255,.26);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #7df0c9, #6aa0ff);
}

.hero-future {
  position: relative;
  min-height: 780px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 510px);
  align-items: center;
  gap: 52px;
  margin-top: -92px;
  padding: 150px 60px 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,9,19,.95) 0%, rgba(7,11,22,.84) 48%, rgba(7,11,22,.7) 100%),
    var(--hero-bg) center / cover no-repeat;
}

.hero-future::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,16,31,0) 72%, #07101f 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 74px);
}

.hero-future .hero-text {
  position: relative;
  z-index: 1;
  padding: 0;
  color: #fff;
  gap: 24px;
}

.hero-future .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-color: rgba(96,230,181,.28);
  background: rgba(13, 33, 48, .86);
  color: #8ef3ce;
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}

.hero-future .hero-tag span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--future-mint);
  box-shadow: 0 0 0 6px rgba(96,230,181,.14);
}

.hero-future .hero-text h1 {
  max-width: 760px;
  font-size: 74px;
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: transparent;
  background: linear-gradient(135deg, #76ebb7 0%, #70eadf 45%, #4f8cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 24px 58px rgba(42, 203, 198, .16);
}

.hero-future .hero-text p {
  max-width: 610px;
  color: rgba(248,251,255,.78);
  font-size: 20px;
  line-height: 1.85;
}

.hero-future .btn-primary,
.hero-future .btn-outline {
  border-radius: 8px;
  min-height: 50px;
  font-weight: 800;
}

.hero-future .btn-primary {
  background: linear-gradient(135deg, var(--future-mint), var(--future-blue));
  color: #06101f;
  box-shadow: 0 18px 44px rgba(79,140,255,.24);
}

.hero-future .btn-outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}

.hero-command {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.command-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 150px;
  padding: 28px 30px;
  border: 1px solid var(--future-line);
  border-radius: 8px;
  background: var(--future-panel);
  color: var(--future-white);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(16px) saturate(1.15);
}

.command-card.is-accent {
  background: rgba(26, 39, 63, .84);
  border-color: rgba(102,221,255,.28);
}

.command-icon {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(96,230,181,.35);
  background: rgba(96,230,181,.08);
  color: var(--future-mint);
  font-size: 31px;
  font-weight: 800;
}

.command-card h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.command-card p {
  color: rgba(248,251,255,.68);
  font-size: 15px;
  line-height: 1.7;
}

.stats {
  position: relative;
  z-index: 2;
  margin: -38px auto 0;
  width: min(1180px, calc(100% - 32px));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(16, 27, 45, .86);
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}

.stat {
  border-right-color: rgba(255,255,255,.1);
}

.stat:hover {
  background: rgba(255,255,255,.06);
}

.stat-num {
  color: var(--future-mint);
}

.stat-label {
  color: rgba(248,251,255,.68);
}

section,
section.alt {
  background: #07101f;
  color: var(--future-white);
}

section.alt {
  background:
    linear-gradient(180deg, #07101f, #0b1526);
}

.page-hero {
  background:
    linear-gradient(120deg, rgba(7,16,31,0.97), rgba(11,21,38,0.94)),
    radial-gradient(circle at 80% 20%, rgba(96,230,181,0.08), transparent 40%);
}
.page-hero h1 { color: #fff; }
.page-hero p  { color: rgba(248,251,255,.66); }

.section-label {
  color: var(--future-mint);
}

.section-title {
  color: #fff;
}

.section-sub,
.chain-item p,
.product-info p,
.promo-info p,
.footer-brand p,
.footer-col ul li a,
.footer-bottom span {
  color: rgba(248,251,255,.66);
}

.chain-item,
.product-card,
.promo-card,
.staff-card,
.branch-card,
.contact-box,
.service-card,
.job-item,
.apply-box {
  border-color: rgba(255,255,255,.12);
  background: rgba(18, 26, 43, .74);
  color: #fff;
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}

.product-card:hover,
.promo-card:hover,
.service-card:hover {
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}

.product-info h3,
.promo-info h3,
.chain-item h3,
.branch-card h3,
.staff-info h3,
.footer-logo,
.footer-col h4 {
  color: #fff;
}

.product-img {
  background: linear-gradient(135deg, rgba(96,230,181,.16), rgba(79,140,255,.16)) !important;
}

.cat-label,
.menu-chip {
  background: rgba(96,230,181,.1);
  border-color: rgba(96,230,181,.24);
  color: #92f5d4;
}

.product-price,
.promo-read-more,
.chain-kicker,
.branch-tel,
.staff-info a {
  color: var(--future-mint);
}

.pact-detail,
.cat-btn.active,
.cat-btn:hover {
  background: linear-gradient(135deg, var(--future-mint), var(--future-blue));
  color: #06101f;
}

.pact-inquiry,
.cat-btn,
.page-btn {
  background: rgba(255,255,255,.06);
  color: rgba(248,251,255,.8);
  border-color: rgba(255,255,255,.13);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(16,37,46,.92), rgba(9,15,30,.96)),
    linear-gradient(90deg, rgba(96,230,181,.18), rgba(79,140,255,.16));
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

footer {
  background: #060b15;
  border-top-color: rgba(255,255,255,.12);
}

.footer-bottom {
  border-top-color: rgba(255,255,255,.12);
}

.footer-social a,
.footer-admin {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(248,251,255,.7);
}

@media (max-width: 980px) {
  nav {
    top: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 0 18px;
  }
  .nav-links {
    top: 68px;
    background: rgba(8,17,31,.97);
    border-color: rgba(255,255,255,.12);
  }
  .nav-toggle {
    color: #fff;
  }
  .hero-future {
    margin-top: 0;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 58px 20px 44px;
    gap: 28px;
    overflow: hidden;
  }
  .hero-future .hero-text,
  .hero-future .hero-btns,
  .hero-command,
  .command-card {
    width: 100%;
    max-width: min(330px, calc(100vw - 56px));
  }
  .hero-future .hero-text h1 {
    font-size: 42px;
    max-width: 100%;
  }
  .hero-future .hero-text p {
    font-size: 17px;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }
  .hero-command {
    gap: 14px;
    min-width: 0;
  }
  .command-card {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 122px;
    padding: 20px;
    min-width: 0;
  }
  .command-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
  .command-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .nav-brand {
    font-size: 18px;
  }
  .nav-star {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .hero-future .hero-text h1 {
    font-size: 25px;
    line-height: 1.18;
    letter-spacing: 0;
    word-break: break-all;
    line-break: anywhere;
  }
  .hero-future .hero-text p { font-size: 15px; }
  .command-card {
    grid-template-columns: 1fr;
  }
}
