/** Shopify CDN: Minification failed

Line 398:4 Expected ":"

**/
/* ============================================================
   GRAILS — Cyber Theme (matches GRAILS Homepage v2 mockup)
   ============================================================ */

:root {
  --gr-black:    #04000a;
  --gr-dark:     #080010;
  --gr-card:     #0c0018;
  --gr-cyan:     #00e5ff;
  --gr-cyan-dim: rgba(0,229,255,0.08);
  --gr-cyan-glow:rgba(0,229,255,0.25);
  --gr-purple:   #8b2fff;
  --gr-purple-dim:rgba(139,47,255,0.1);
  --gr-gold:     #ffa828;
  --gr-gold-dim: rgba(255,168,40,0.1);
  --gr-gold-glow:rgba(255,168,40,0.3);
  --gr-white:    #ffffff;
  --gr-off:      #a0a0b8;
  --gr-muted:    #454560;
  --gr-border-c: rgba(0,229,255,0.15);
  --gr-border-p: rgba(139,47,255,0.2);
}

/* ─── GLOBAL RESET ─── */
.grails-body, .grails-body * , .grails-body *::before, .grails-body *::after {
  box-sizing: border-box;
}
.grails-body {
  margin: 0;
  padding: 0;
  background: var(--gr-black) !important;
  color: var(--gr-white) !important;
  font-family: 'Rajdhani', sans-serif !important;
  overflow-x: hidden;
  min-height: 100vh;
}
.grails-body a { color: inherit; text-decoration: none; }
.grails-body img { max-width: 100%; display: block; }
.grails-body button { font-family: 'Rajdhani', sans-serif; cursor: pointer; }

/* ─── GRID BG ─── */
.grails-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.grails-body > * { position: relative; z-index: 1; }

/* ─── HEADER / NAV ─── */
.gr-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(4,0,10,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gr-border-c);
  box-shadow: 0 1px 40px rgba(0,229,255,0.06);
}
.gr-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.gr-nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,229,255,0.4));
}
.gr-nav-logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--gr-white);
}
.gr-nav-logo-text span { color: var(--gr-cyan); }
.gr-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gr-nav-links a {
  display: block;
  padding: 8px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gr-off);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.gr-nav-links a.active, .gr-nav-links a:hover { color: var(--gr-cyan); }
.gr-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 2px;
  background: var(--gr-cyan);
  box-shadow: 0 0 8px var(--gr-cyan);
}
.gr-nav-links a.services-link {
  color: var(--gr-gold);
  border: 1px solid rgba(255,168,40,0.3);
  background: var(--gr-gold-dim);
}
.gr-nav-links a.services-link:hover {
  border-color: var(--gr-gold);
  box-shadow: 0 0 16px var(--gr-gold-dim);
  color: var(--gr-gold);
}
.gr-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.gr-nav-icon {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gr-white);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
  opacity: 0.75;
  background: none;
  border: none;
  cursor: pointer;
}
.gr-nav-icon:hover { color: var(--gr-cyan); opacity: 1; text-shadow: 0 0 10px var(--gr-cyan-glow); }
.gr-cart-pill {
  background: var(--gr-cyan);
  color: var(--gr-black);
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  display: inline-block;
}
.gr-cart-pill:hover {
  box-shadow: 0 0 24px var(--gr-cyan-glow);
  transform: translateY(-1px);
  color: var(--gr-black);
}

/* ─── TICKER ─── */
.gr-ticker {
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 199;
  height: 30px;
  background: linear-gradient(90deg, var(--gr-purple), #5b00cc, var(--gr-purple));
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(139,47,255,0.4);
}
.gr-ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: gr-tick 22s linear infinite;
}
.gr-ticker-track span {
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.gr-ticker-track span.gr-dot { color: var(--gr-cyan); font-size: 16px; line-height: 0; }
@keyframes gr-tick { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ─── PAGE TOP SPACER ─── */
.gr-pt-nav { padding-top: calc(68px + 30px); }

/* ─── BUTTONS ─── */
.gr-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.gr-btn-primary { background: var(--gr-cyan); color: var(--gr-black); }
.gr-btn-primary:hover { box-shadow: 0 0 32px var(--gr-cyan-glow); transform: translateY(-2px); color: var(--gr-black); }
.gr-btn-gold { background: var(--gr-gold); color: var(--gr-black); }
.gr-btn-gold:hover { box-shadow: 0 0 32px var(--gr-gold-glow); transform: translateY(-2px); color: var(--gr-black); }
.gr-btn-ghost { background: transparent; color: var(--gr-cyan); border: 1px solid var(--gr-cyan); }
.gr-btn-ghost:hover { background: var(--gr-cyan-dim); box-shadow: 0 0 20px var(--gr-cyan-glow); color: var(--gr-cyan); }
.gr-btn-purple { background: transparent; color: var(--gr-purple); border: 1px solid var(--gr-purple); }
.gr-btn-purple:hover { background: rgba(139,47,255,0.1); box-shadow: 0 0 20px rgba(139,47,255,0.25); color: var(--gr-purple); }

/* ─── HERO ─── */
.gr-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(68px + 30px + 80px) 60px 80px;
  position: relative;
  overflow: hidden;
}
.gr-hero::before {
  content: '';
  position: absolute;
  top: -10%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,47,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.gr-hero::after {
  content: '';
  position: absolute;
  bottom: -15%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,229,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.gr-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.gr-hero-eyebrow-line {
  width: 40px; height: 2px;
  background: var(--gr-cyan);
  box-shadow: 0 0 8px var(--gr-cyan);
}
.gr-hero-eyebrow-text {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gr-cyan);
}
.gr-hero-heading {
  font-family: 'Orbitron', monospace;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  position: relative;
  z-index: 2;
}
.gr-hero-heading .line-gold { color: var(--gr-gold); text-shadow: 0 0 40px var(--gr-gold-glow); display:block; }
.gr-hero-heading .line-cyan { color: var(--gr-cyan); text-shadow: 0 0 40px var(--gr-cyan-glow); display:block; }
.gr-hero-heading .line-white { color: var(--gr-white); display:block; }
.gr-hero-sub {
  font-size: 18px;
  font-weight: 500;
  color: var(--gr-off);
  max-width: 520px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin: 0 0 48px;
  position: relative;
  z-index: 2;
}
.gr-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* ─── PACKAGES GRID ─── */
.gr-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
.gr-pkg-card {
  background: var(--gr-card);
  border: 1px solid var(--gr-border-c);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, background 0.3s;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  overflow: hidden;
}
.gr-pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gr-cyan);
  box-shadow: 0 0 16px var(--gr-cyan);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.gr-pkg-card:hover { border-color: var(--gr-cyan); background: rgba(0,229,255,0.04); }
.gr-pkg-card:hover::before { opacity: 1; }
.gr-pkg-card.featured {
  border-color: var(--gr-gold);
  background: rgba(255,168,40,0.04);
}
.gr-pkg-card.featured::before {
  background: var(--gr-gold);
  box-shadow: 0 0 16px var(--gr-gold);
  opacity: 1;
}
.gr-pkg-card.featured:hover { border-color: var(--gr-gold); }
.gr-pkg-badge {
  position: absolute;
  top: 0; right: 24px;
  font-family: 'Orbitron', monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--gr-gold);
  color: var(--gr-black);
  padding: 4px 10px;
}
.gr-pkg-number {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gr-cyan);
  margin-bottom: 16px;
}
.gr-pkg-card.featured .gr-pkg-number { color: var(--gr-gold); }
.gr-pkg-title {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: 0.05em;
  color: var(--gr-white);
}
.gr-pkg-tagline {
  font-size: 13px;
  color: var(--gr-off);
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0 0 28px;
}
.gr-pkg-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 32px;
  pa