:root {
  --bg:rgb(23 23 23);
  --panel:rgba(34,34,34,.88);
  --border:rgba(168,148,32,.22);
  --border-strong:rgba(168,148,32,.48);
  --text:#f2f0e8;
  --muted:#aaa391;
  --gold:rgb(168 148 32);
  --gold-soft:rgba(168,148,32,.12);
  --green:#83d18a;
  --shadow:0 24px 80px rgba(0,0,0,.42);
  --font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  min-height:100vh;
  font-family:var(--font);
  color:var(--text);
  background:radial-gradient(circle at top left,rgba(168,148,32,.16),transparent 32rem),radial-gradient(circle at bottom right,rgba(168,148,32,.08),transparent 30rem),linear-gradient(180deg,rgb(23 23 23),rgb(18 18 18));
  overflow-x:hidden
}
body:before {
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom,black,transparent 85%);
  z-index:-1
}
a {
  color:inherit;
  text-decoration:none
}
button,input,textarea {
  font:inherit
}
button {
  cursor:pointer
}
.site-header {
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px clamp(18px,4vw,54px);
  background:rgba(23,23,23,.86);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(22px)
}
.brand {
  display:flex;
  align-items:center;
  gap:12px
}
.brand-mark {
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:14px;
  color:#171717;
  background:linear-gradient(135deg,var(--gold),#d8c863);
  font-weight:900;
  box-shadow:0 0 32px rgba(168,148,32,.22)
}
.brand-title {
  font-size:18px;
  font-weight:850;
  letter-spacing:.02em
}
.brand-title span,.site-footer span,.hero h1 span {
  color:var(--gold)
}
.brand-subtitle {
  margin-top:2px;
  color:var(--muted);
  font-size:12px
}
.site-nav {
  display:flex;
  align-items:center;
  gap:8px
}
.site-nav a {
  color:var(--muted);
  padding:10px 13px;
  border:1px solid transparent;
  border-radius:999px;
  transition:.18s ease
}
.site-nav a:hover,.site-nav .nav-pill {
  color:var(--text);
  border-color:var(--border);
  background:var(--gold-soft)
}
.menu-toggle {
  display:none;
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 14px;
  color:var(--text);
  background:rgba(255,255,255,.045)
}
.section {
  max-width:1300px;
  padding:clamp(58px,8vw,104px) clamp(18px,4vw,54px);
  margin: 0 auto
}
.hero {
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:24px;
  align-items:center;
  min-height:calc(100vh - 80px)
}
.section-kicker {
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase
}
.hero h1 {
  margin:16px 0 0;
  max-width:760px;
  font-size:clamp(56px,10vw,122px);
  line-height:.88;
  letter-spacing:-.08em
}
.hero-lead {
  max-width:560px;
  margin:26px 0 0;
  color:var(--muted);
  font-size:clamp(18px,2vw,24px);
  line-height:1.45
}
.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:34px
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  border:1px solid var(--border);
  color:var(--text);
  background:rgba(255,255,255,.045);
  border-radius:999px;
  padding:11px 16px;
  transition:.18s ease
}
.btn:hover {
  background-color: var(--gold-soft);
  border-color:var(--border-strong);
  transform:translateY(-1px)
}
.btn-primary {
  background:linear-gradient(135deg,rgba(168,148,32,.28),rgba(255,255,255,.04))
}
.card {
  position:relative;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:24px;
  background:var(--panel);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px)
}
.card:before {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg,rgba(255,255,255,.06),transparent 36%)
}
.card-inner {
  position:relative;
  padding:20px
}
.hero-showcase {
  min-height:540px
}
.status-row {
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:13px
}
.status-row strong {
  color:var(--green)
}
.pulse-dot {
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--green);
  box-shadow:0 0 18px var(--green)
}
.metric-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px
}
.metric-grid div {
  padding:14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.035)
}
.metric-grid span {
  display:block;
  color:var(--muted);
  font-size:12px
}
.metric-grid strong {
  display:block;
  margin-top:6px;
  font-size:15px
}
.section-head {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,420px);
  gap:20px;
  align-items:end;
  margin-bottom:22px
}
.section-head h2,.split-section h2,.about-band h2,.contact-card h2 {
  margin:8px 0 0;
  font-size:clamp(28px,4vw,48px);
  line-height:1.02;
  letter-spacing:-.06em
}
.section-head p,.card p,.about-band p,.contact-card p {
  color:var(--muted);
  line-height:1.65
}
.product-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px
}
.product-card {
  min-height:300px
}
.product-icon {
  position:relative;
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  border-radius:18px;
  color:var(--gold);
  border:1px solid var(--border);
  background:var(--gold-soft);
  font-weight:900
}
.product-card h3 {
  margin:24px 0 0;
  font-size:24px
}
.text-link {
  display:inline-flex;
  margin-top:16px;
  color:var(--gold);
  font-weight:800
}
.showcase-slider {
  position:relative;
  min-height:490px;
  overflow:hidden;
  border-radius:22px;
  background:radial-gradient(circle at 70% 35%,rgba(168,148,32,.2),transparent 34%),rgba(255,255,255,.025)
}
.showcase-slide {
  position:absolute;
  inset:0;
  display:grid;
  grid-template-rows:auto 1fr;
  gap:18px;
  padding:22px;
  opacity:0;
  transform:translateX(24px);
  transition:opacity .45s ease,transform .45s ease
}
.showcase-slide.active {
  opacity:1;
  transform:translateX(0);
  z-index:2
}
.showcase-copy span {
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase
}
.showcase-copy h3 {
  margin:8px 0 0;
  font-size:clamp(28px,4vw,44px);
  line-height:1;
  letter-spacing:-.05em
}
.showcase-copy p {
  max-width:420px;
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.55
}

.showcase-product-image {
  min-height:230px;
  margin:0;
  display:grid;
  place-items:center;
  border-radius:20px;
  background:linear-gradient(135deg,rgba(168,148,32,.14),rgba(255,255,255,.035));
  overflow:hidden;
}
.showcase-product-image img {
  width:min(88%,360px);
  max-height:250px;
  object-fit:contain;
  filter:drop-shadow(0 22px 32px rgba(0,0,0,.35));
}

.showcase-visual {
  position:relative;
  min-height:230px;
  display:grid;
  place-items:center
}
.bot-body {
  position:relative;
  width:230px;
  height:130px;
  border:1px solid var(--border-strong);
  border-radius:38px;
  background:linear-gradient(135deg,rgba(168,148,32,.22),rgba(255,255,255,.05));
  box-shadow:0 0 70px rgba(168,148,32,.13)
}
.bot-body:before {
  content:"";
  position:absolute;
  left:36px;
  right:36px;
  top:28px;
  height:20px;
  border-radius:999px;
  background:rgba(255,255,255,.08)
}
.bot-body span {
  position:absolute;
  bottom:34px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 18px rgba(168,148,32,.5)
}
.bot-body span:first-child {
  left:58px
}
.bot-body span:last-child {
  right:58px
}
.bot-wheel {
  position:absolute;
  bottom:34px;
  width:58px;
  height:58px;
  border-radius:50%;
  border:10px solid rgba(255,255,255,.12);
  background:#151515
}
.bot-wheel.left {
  left:calc(50% - 125px)
}
.bot-wheel.right {
  right:calc(50% - 125px)
}
.arm-visual {
  align-items:end
}
.arm-base {
  width:148px;
  height:44px;
  border-radius:22px 22px 10px 10px;
  border:1px solid var(--border-strong);
  background:rgba(255,255,255,.06)
}
.arm-link {
  position:absolute;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(168,148,32,.55),rgba(255,255,255,.08));
  box-shadow:0 0 40px rgba(168,148,32,.12);
  transform-origin:left center
}
.arm-link.one {
  width:150px;
  height:28px;
  bottom:95px;
  left:calc(50% - 36px);
  transform:rotate(-48deg)
}
.arm-link.two {
  width:138px;
  height:24px;
  bottom:184px;
  left:calc(50% + 56px);
  transform:rotate(28deg)
}
.arm-link:before {
  content:"";
  position:absolute;
  left:-12px;
  top:50%;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid var(--border-strong);
  background:#202020;
  transform:translateY(-50%)
}
.arm-grip {
  position:absolute;
  bottom:203px;
  left:calc(50% + 178px);
  width:50px;
  height:42px;
  border-top:8px solid var(--gold);
  border-left:8px solid var(--gold);
  border-right:8px solid var(--gold);
  border-radius:12px 12px 4px 4px;
  transform:rotate(28deg)
}
.gate-visual i {
  position:absolute;
  width:260px;
  height:260px;
  border:1px solid rgba(168,148,32,.18);
  border-radius:50%;
  animation:pulseRing 3s infinite
}
.gate-visual i:nth-child(2) {
  width:190px;
  height:190px;
  animation-delay:.4s
}
.gate-visual i:nth-child(3) {
  width:120px;
  height:120px;
  animation-delay:.8s
}
.gate-core {
  display:grid;
  place-items:center;
  width:120px;
  height:120px;
  border-radius:34px;
  color:#171717;
  background:linear-gradient(135deg,var(--gold),#e0d070);
  font-size:58px;
  font-weight:950;
  box-shadow:0 0 70px rgba(168,148,32,.22);
  z-index:2
}
.showcase-dots {
  display:flex;
  gap:9px;
  justify-content:center;
  margin-top:18px
}
.showcase-dots button {
  width:32px;
  height:8px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  padding:0
}
.showcase-dots button.active {
  background:var(--gold)
}
@keyframes pulseRing {
  0% {
    transform:scale(.88);
    opacity:.9
  }
  100% {
    transform:scale(1.16);
    opacity:.05
  }
}
.driving-mini:before,.driving-mini:after {
  content:"";
  position:absolute;
  bottom:11px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--gold)
}
.driving-mini:before {
  left:11px
}
.driving-mini:after {
  right:11px
}
.driving-mini {
  background:linear-gradient(180deg,rgba(168,148,32,.18),rgba(255,255,255,.04))
}
.arm-mini:before {
  content:"";
  width:34px;
  height:8px;
  border-radius:999px;
  background:var(--gold);
  transform:rotate(-34deg);
  box-shadow:18px -10px 0 rgba(168,148,32,.55)
}
.gate-mini {
  font-size:24px
}
.product-image {
  position:relative;
  min-height:128px;
  margin-top:18px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  background:radial-gradient(circle at 65% 35%,rgba(168,148,32,.18),transparent 45%),rgba(255,255,255,.028);
  overflow:hidden
}
.product-driving:before {
  content:"";
  position:absolute;
  left:50%;
  top:40px;
  width:155px;
  height:58px;
  border-radius:28px;
  transform:translateX(-50%);
  border:1px solid var(--border-strong);
  background:rgba(255,255,255,.055)
}
.product-driving:after {
  content:"";
  position:absolute;
  left:50%;
  bottom:24px;
  width:170px;
  height:34px;
  transform:translateX(-50%);
  background:radial-gradient(circle at 20% 50%,#111 0 17px,transparent 18px),radial-gradient(circle at 80% 50%,#111 0 17px,transparent 18px)
}
.product-arm:before {
  content:"";
  position:absolute;
  left:50%;
  bottom:25px;
  width:90px;
  height:28px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  transform:translateX(-50%)
}
.product-arm:after {
  content:"";
  position:absolute;
  left:50%;
  bottom:64px;
  width:125px;
  height:16px;
  border-radius:999px;
  background:var(--gold);
  transform:translateX(-10%) rotate(-35deg);
  box-shadow:72px -36px 0 rgba(168,148,32,.55)
}
.product-gate:before {
  content:"X";
  position:absolute;
  left:50%;
  top:50%;
  display:grid;
  place-items:center;
  width:74px;
  height:74px;
  border-radius:23px;
  color:#171717;
  background:var(--gold);
  font-size:34px;
  font-weight:950;
  transform:translate(-50%,-50%)
}
.product-gate:after {
  content:"";
  position:absolute;
  inset:22px;
  border:1px solid rgba(168,148,32,.23);
  border-radius:50%;
  box-shadow:0 0 0 28px rgba(168,148,32,.06),0 0 0 56px rgba(168,148,32,.035)
}
@media(max-width:560px) {
  .showcase-slider {
    min-height:390px
  }
  .showcase-slide {
    padding:18px
  }
  .bot-body {
    width:190px
  }
  .bot-wheel.left {
    left:calc(50% - 105px)
  }
  .bot-wheel.right {
    right:calc(50% - 105px)
  }
  .arm-link.two {
    left:calc(50% + 42px)
  }
  .arm-grip {
    left:calc(50% + 148px)
  }
}
.split-section {
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
  gap:18px
}
.service-status-card p {
  max-width: 620px;
}

.service-status-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.service-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.service-status-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.status-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 999px;
}

.service-name {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-label {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-status-row.is-live .status-dot {
  background: #2cff8f;
  box-shadow: 0 0 18px rgba(44, 255, 143, 0.75);
}

.service-status-row.is-live .status-label {
  color: #2cff8f;
  background: rgba(44, 255, 143, 0.1);
  border: 1px solid rgba(44, 255, 143, 0.24);
}

.service-status-row.is-down .status-dot {
  background: #ff4d5f;
  box-shadow: 0 0 18px rgba(255, 77, 95, 0.75);
}

.service-status-row.is-down .status-label {
  color: #ff4d5f;
  background: rgba(255, 77, 95, 0.1);
  border: 1px solid rgba(255, 77, 95, 0.24);
}
.about-band {
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(320px,1.1fr);
  gap:26px;
  align-items:center;
  padding:clamp(26px,4vw,42px);
  border:1px solid var(--border);
  border-radius:28px;
  background:var(--panel);
  box-shadow:var(--shadow)
}
.contact-card .card-inner {
  display:grid;
  grid-template-columns:minmax(260px,.8fr) minmax(0,1.2fr);
  gap:22px
}
.contact-options {
  display:grid;
  gap:10px
}
.contact-options button {
  text-align:left;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  color:var(--text);
  background:rgba(255,255,255,.035);
  padding:14px
}
.contact-form {
  grid-column:1/-1;
  display:grid;
  gap:12px
}
.field {
  display:grid;
  gap:7px
}
.field label {
  color:var(--muted);
  font-size:12px;
  font-weight:700
}
input,textarea {
  width:100%;
  color:var(--text);
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.09);
  border-radius:16px;
  outline:0;
  padding:13px 14px
}
textarea {
  min-height:120px;
  resize:vertical
}
.site-footer {
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:18px;
  align-items:center;
  padding:28px clamp(18px,4vw,54px);
  border-top:1px solid var(--border);
  color:var(--muted);
  background:rgba(20,20,20,.66)
}
.site-footer strong {
  color:var(--text)
}
.site-footer p {
  margin:4px 0 0
}
.footer-links {
  display:flex;
  gap:12px
}
.auth-page {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100vh;
  padding:24px
}
.auth-shell {
  width:100%;
  max-width:460px
}
.auth-card {
  border:1px solid var(--border);
  border-radius:28px;
  background:var(--panel);
  backdrop-filter:blur(20px);
  box-shadow:var(--shadow);
  padding:32px
}
.auth-brand {
  margin-bottom:32px
}
.auth-head {
  margin-bottom:26px
}
.auth-head h1 {
  margin:0;
  font-size:34px;
  letter-spacing:-.05em
}
.auth-head p {
  margin-top:8px;
  color:var(--muted)
}
.auth-form {
  display:grid;
  gap:16px
}
.auth-btn {
  width:100%
}
.auth-footer {
  margin-top:24px;
  text-align:center;
  color:var(--muted);
  font-size:14px
}
.auth-footer a {
  color:var(--gold);
  font-weight:800
}
@media(max-width:920px) {
  .hero,.split-section,.section-head,.about-band,.contact-card .card-inner,.site-footer {
    grid-template-columns:1fr
  }
  .hero {
    min-height:auto
  }
  .product-grid {
    grid-template-columns:1fr
  }
  .site-nav {
    position:fixed;
    top:76px;
    left:14px;
    right:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:14px;
    border:1px solid var(--border);
    border-radius:22px;
    background:rgba(23,23,23,.96);
    backdrop-filter:blur(18px)
  }
  .site-nav.open {
    display:flex
  }
  .menu-toggle {
    display:inline-flex
  }
  .hero-showcase {
    min-height:auto
  }
}
@media(max-width:560px) {
  .brand-subtitle {
    display:none
  }
  .metric-grid {
    grid-template-columns:1fr
  }
  .hero h1 {
    font-size:56px
  }
  .auth-card {
    padding:24px
  }
}
/* AI chat contact */ .chat-card {
  overflow:hidden
}
.chat-card.card {
  max-width:1100px;
  margin:0 auto
}
.chat-topbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  border-bottom:1px solid var(--border);
  background:rgba(255,255,255,.025)
}
.chat-topbar strong {
  display:block
}
.chat-topbar span {
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:13px
}
.chat-status {
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-weight:800;
  font-size:13px
}
.chat-status span {
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 18px var(--green);
  margin:0
}
.chat-window {
  display:grid;
  gap:14px;
  height:min(60vh,620px);
  min-height:360px;
  max-height:420px;
  overflow-y:auto;
  overscroll-behavior:contain;
  padding:22px;
  background:radial-gradient(circle at 20% 0,rgba(168,148,32,.12),transparent 34%),rgba(255,255,255,.018)
}
.chat-message {
  display:flex;
  align-items:flex-start;
  gap:10px;
  max-width:760px
}
.chat-message.user {
  justify-self:end;
  justify-content:flex-end
}
.avatar {
  display:grid;
  place-items:center;
  flex:0 0 34px;
  width:34px;
  height:34px;
  border-radius:12px;
  color:#171717;
  background:var(--gold);
  font-weight:950
}
.bubble {
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.05);
  box-shadow:0 12px 34px rgba(0,0,0,.18)
}
.chat-message.bot .bubble {
  border-top-left-radius:6px
}
.chat-message.user .bubble {
  border-top-right-radius:6px;
  background:rgba(168,148,32,.16);
  border-color:var(--border)
}
.bubble p {
  margin:0;
  color:var(--muted);
  line-height:1.55
}
.chat-starters {
  padding-top: 10px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-left:44px
}
.chat-starters button {
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--text);
  background:var(--gold-soft);
  padding:10px 13px;
  font-weight:800
}
.chat-starters button:hover {
  border-color:var(--border-strong);
  background:rgba(168,148,32,.18)
}
.chat-form {
  display:grid;
  gap:12px;
  padding:18px 20px;
  border-top:1px solid var(--border);
  background:rgba(20,20,20,.55)
}
.chat-input-row {
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px
}
.chat-input-row textarea {
  min-height:54px;
  max-height:160px
}
.sample {
  opacity:.78
}
.chat-window::-webkit-scrollbar {
  width:8px
}
.chat-window::-webkit-scrollbar-track {
  background:rgba(255,255,255,.035);
  border-radius:999px
}
.chat-window::-webkit-scrollbar-thumb {
  background:rgba(168,148,32,.38);
  border-radius:999px
}
.chat-window::-webkit-scrollbar-thumb:hover {
  background:rgba(168,148,32,.58)
}
/* Account page */ .account-page {
  min-height:100vh
}
.account-hero {
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
  gap:20px;
  align-items:end;
  padding-bottom:26px
}
.account-hero h1 {
  margin:14px 0 0;
  font-size:clamp(40px,6vw,72px);
  line-height:.95;
  letter-spacing:-.065em
}
.account-hero p {
  max-width:720px;
  color:var(--muted);
  line-height:1.65
}
.profile-row {
  display:flex;
  align-items:center;
  gap:14px
}
.profile-row strong {
  display:block;
  font-size:22px
}
.profile-row span {
  display:block;
  color:var(--muted);
  margin-top:4px
}
.profile-avatar {
  display:grid;
  place-items:center;
  width:62px;
  height:62px;
  border-radius:22px;
  color:#171717;
  background:linear-gradient(135deg,var(--gold),#e0d070);
  font-weight:950
}
.summary-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:22px
}
.summary-grid div {
  padding:14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.035)
}
.summary-grid span,.info-grid span,.table-list span,.payment-card span,.ticket-box span {
  display:block;
  color:var(--muted);
  font-size:12px
}
.summary-grid strong {
  display:block;
  margin-top:6px;
  font-size:24px
}
.account-layout {
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:18px;
  padding-top:20px
}
.account-sidebar {
  position:sticky;
  top:96px;
  height:max-content
}
.account-sidebar .card-inner {
  display:grid;
  gap:8px
}
.account-sidebar a {
  padding:12px 13px;
  border:1px solid transparent;
  border-radius:14px;
  color:var(--muted);
  font-weight:800
}
.account-sidebar a:hover {
  color:var(--text);
  border-color:var(--border);
  background:var(--gold-soft)
}
.account-content {
  display:grid;
  gap:18px
}
.panel-title {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px
}
.panel-title h2 {
  margin:0;
  font-size:28px;
  letter-spacing:-.04em
}
.panel-title button {
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--text);
  background:var(--gold-soft);
  padding:9px 13px;
  font-weight:800
}
.info-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px
}
.info-grid div,.address-card,.payment-card,.ticket-box {
  padding:16px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.035)
}
.info-grid strong {
  display:block;
  margin-top:7px
}
.address-card p {
  color:var(--muted);
  line-height:1.55
}
.address-card span {
  color:var(--gold);
  font-weight:800
}
.table-list {
  display:grid;
  gap:10px
}
.table-list div {
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:12px;
  align-items:center;
  padding:14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:rgba(255,255,255,.035)
}
.table-list strong {
  color:var(--green)
}
.table-list em {
  font-style:normal;
  color:var(--muted)
}
.payment-card {
  display:flex;
  align-items:center;
  gap:14px
}
.card-chip {
  width:54px;
  height:36px;
  border-radius:10px;
  background:linear-gradient(135deg,rgba(168,148,32,.85),rgba(255,255,255,.16));
  box-shadow:0 0 24px rgba(168,148,32,.18)
}
.activity-list {
  display:grid;
  gap:12px
}
.activity-list div {
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted)
}
.activity-list span {
  width:10px;
  height:10px;
  border-radius:99px;
  background:var(--gold);
  box-shadow:0 0 14px var(--gold)
}
.activity-list p {
  margin:0
}
.ticket-box p {
  color:var(--muted);
  line-height:1.55
}
.mini-ticket-form {
  display:grid;
  gap:12px;
  margin-top:14px
}
@media(max-width:920px) {
  .chat-input-row,.account-hero,.account-layout,.info-grid {
    grid-template-columns:1fr
  }
  .account-sidebar {
    position:static
  }
  .summary-grid {
    grid-template-columns:1fr
  }
  .chat-starters {
    margin-left:0
  }
  .chat-topbar {
    align-items:flex-start;
    flex-direction:column
  }
  .table-list div {
    grid-template-columns:1fr
  }
  .chat-message {
    max-width:100%
  }
}

/* Legal pages */
.legal-hero {
  padding-bottom:24px
}
.legal-hero h1 {
  margin:14px 0 0;
  font-size:clamp(42px,7vw,86px);
  line-height:.95;
  letter-spacing:-.06em
}
.legal-hero p {
  max-width:720px;
  color:var(--muted);
  font-size:18px;
  line-height:1.55
}
.legal-section {
  padding-top:24px
}
.legal-card {
  max-width:980px;
  margin:0 auto
}
.legal-content {
  padding:clamp(22px,4vw,48px);
  color:var(--muted);
  line-height:1.72
}
.legal-content h1,
.legal-content h2 {
  color:var(--text);
  letter-spacing:-.035em
}
.legal-content h1 {
  margin-top:0;
  font-size:clamp(30px,4vw,48px)
}
.legal-content h2 {
  margin:34px 0 10px;
  font-size:24px
}
.legal-content p {
  margin:12px 0
}
.legal-content ul {
  margin:12px 0 22px;
  padding-left:22px
}
.legal-content li {
  margin:8px 0
}
.legal-content a {
  color:var(--gold);
  font-weight:800
}
.legal-content .highlight {
  color:var(--gold)
}
.legal-cookie-note {
  margin-top:34px;
  padding-top:22px;
  border-top:1px solid var(--border)
}
.cookie-banner {
  position:fixed;
  left:clamp(14px,3vw,30px);
  right:clamp(14px,3vw,30px);
  bottom:clamp(14px,3vw,30px);
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  max-width:980px;
  margin:0 auto;
  padding:16px;
  border:1px solid var(--border-strong);
  border-radius:22px;
  background:rgba(23,23,23,.96);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px)
}
.cookie-banner p {
  margin:0;
  color:var(--muted);
  line-height:1.45
}
.cookie-banner strong {
  color:var(--text)
}
.cookie-banner a {
  color:var(--gold);
  font-weight:800
}
.cookie-banner button {
  flex:0 0 auto;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--text);
  background:var(--gold-soft);
  padding:10px 16px
}
@media(max-width:680px) {
  .cookie-banner {
    flex-direction:column;
    align-items:flex-start
  }
}

/* Reusable real image area for product cards. Swap the SVG files in assets/img/products/ with final product images later. */
.product-image {
  display:block;
  min-height:0;
  aspect-ratio:16 / 10;
  margin:18px 0 0;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  background:radial-gradient(circle at 65% 35%,rgba(168,148,32,.18),transparent 45%),rgba(255,255,255,.028);
  overflow:hidden;
}
.product-image img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.product-image:before,
.product-image:after {
  content:none !important;
}
.coming-soon-main {
  min-height:calc(100vh - 80px);
  display:grid;
  place-items:center;
}
.coming-soon-card {
  max-width:860px;
  width:100%;
}
.coming-soon-card h1 {
  margin:12px 0 0;
  font-size:clamp(46px,8vw,92px);
  line-height:.9;
  letter-spacing:-.08em;
}
.coming-soon-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}


/* Form validation */
.field-error {
  color:#ff6b6b;
  font-size:13px;
  margin-top:4px;
}

.input-error {
  border-color:#ff6b6b !important;
  box-shadow:0 0 0 3px rgba(255,107,107,.15);
  background-color: #ff00001a;
}

.input-success {
  border-color:#83d18a !important;
}






/* Account */
.logout-btn{
  width:100%;
  margin-top:18px;
}


.product-account-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.owned-product-card{
    padding:18px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    background:rgba(255,255,255,.03);
}

.owned-product-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:16px;
}

.owned-product-card h3{
    margin:18px 0 8px;
}

.owned-product-card p{
    color:var(--muted);
}

.owned-product-actions{
    display:flex;
    gap:12px;
    margin-top:18px;
}

@media(max-width:920px){

    .product-account-grid{
        grid-template-columns:1fr;
    }

}


/* Account edit modal + editable account fields - clean version */


.editable-info-item,
.payment-editable{
  position:relative;
  padding-right:58px;
}

.field-edit-btn{
  position:absolute;
  top:50%;
  right:10px;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  color:var(--gold);
  cursor:pointer;
  transition:.18s ease;
}

.field-edit-btn:hover{
  background:var(--gold-soft);
  border-color:var(--border-strong);
}

.account-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:1000;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(6px);
}

.account-modal-box{
  position:relative;
  width:min(440px,100%);
  padding:28px;
  border-radius:24px;
  border:1px solid var(--border);
  background:var(--panel);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}

.activity-modal-box{
  width:min(620px,100%);
}

.account-modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}

.account-modal-head h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.04em;
}

.modal-close-btn{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
  font-size:22px;
  line-height:1;
}

.modal-close-btn:hover{
  background:rgba(255,255,255,.08);
}

.modal-field-label{
  display:block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}

#edit-input:focus{
  border-color:var(--border-strong);
}

.account-modal-actions{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  margin-top:22px;
}

.ghost-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
}

.invoice-list div{
  grid-template-columns:1fr auto auto auto;
}

.invoice-print-btn{
  min-height:36px;
  padding:7px 12px;
}

.full-activity-list{
  max-height:420px;
  overflow:auto;
  padding-right:6px;
}

@media(max-width:920px){
  .invoice-list div{
    grid-template-columns:1fr;
  }
  
}
