/* =========================================================
   TOKENS — Teleporteam brand (navy / gold / white)
   ========================================================= */
:root {
  --navy:      #11143D;
  --navy-soft: #232966;
  --gold:      #F6B500;
  --gold-soft: #FFE9B0;
  --bg:        #FFFFFF;
  --surface:   #F6F7FB;
  --border:    #E7E9F1;
  --text:      #1A2150;
  --text-muted:#6E7390;

  --display: "Sora", "Helvetica Neue", Arial, sans-serif;
  --body:    "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

/* =========================================================
   BRAND MARK — split circle echoing the logo
   ========================================================= */
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: var(--gold);
}
.brand-mark.sm { width: 8px; height: 8px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img { height: 40px; width: auto; border-radius: 8px; }

.logo .name-accent { color: var(--gold); }
.logo .wordmark { display: inline-flex; }

.brand-mark.on-dark { background: #fff; }

.site-nav { display: flex; gap: 32px; align-items: center; }

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.site-nav a:hover { color: #fff; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 96px 0 84px;
  text-align: center;
  background:
    radial-gradient(60% 50% at 50% 0%, var(--gold-soft) 0%, rgba(255, 233, 176, 0) 70%);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--navy-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.hero h1 span {
  background: linear-gradient(100deg, var(--gold) 0%, #ffd35c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--text-muted);
  max-width: 48ch;
  font-size: 1.1rem;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-soft); }

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: var(--bg);
}
.btn-ghost:hover { border-color: var(--navy); }

/* =========================================================
   CATEGORY FILTER
   ========================================================= */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 8px 0 44px;
}

.filter-chip {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 20px;
  transition: all 0.15s ease;
}

.filter-chip:hover { color: var(--text); }

.filter-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* =========================================================
   PRODUCT GRID
   ========================================================= */
.section { padding: 24px 0 96px; }

.section-heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  text-align: center;
}

.section-sub {
  color: var(--text-muted);
  margin: 0 0 40px;
  font-size: 1rem;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 16px 40px rgba(26, 33, 80, 0.10);
  transform: translateY(-4px);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-media img { width: 100%; height: 100%; object-fit: cover; }

.product-media .no-image {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.stock-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.stock-tag.out { color: #C2410C; }

.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0;
  letter-spacing: -0.01em;
}

.product-specs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-specs li::before { content: "✓ "; color: var(--navy-soft); font-weight: 700; }

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.product-footer .inquire-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}
.product-footer .inquire-link:hover { color: var(--gold); }
.product-footer .inquire-link .arrow { transition: transform 0.15s ease; }
.product-footer .inquire-link:hover .arrow { transform: translateX(3px); }

.empty-state {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 56px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================================================
   CONTACT BAND
   ========================================================= */
.contact-band {
  background: var(--navy);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 56px 32px;
  text-align: center;
}

.contact-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.18;
  top: -180px;
  right: -140px;
}

.contact-band h2 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 10px;
  position: relative;
}

.contact-band > p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 36px;
  font-size: 1rem;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.contact-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.contact-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-item .value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-item .value a { text-decoration: none; color: #fff; }
.contact-item .value a:hover { color: var(--gold); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover { color: var(--navy); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 640px) {
  .site-header .container { height: auto; padding: 16px 20px; flex-wrap: wrap; gap: 12px; }
  .site-nav { gap: 16px; }
  .hero { padding: 64px 0 56px; }
  .contact-band { padding: 40px 20px; border-radius: 20px; }
  .section-heading { font-size: 1.8rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .product-card { transition: none; }
}

/* =========================================================
   SPLASH / HOME PAGE
   ========================================================= */
.splash {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 48px;
}

.splash-logo {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.splash-logo:hover { transform: scale(1.05); opacity: 0.9; }
.splash-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }

.brand-mark.lg {
  width: 200px;
  height: 200px;
  background: none;
}
.brand-mark.lg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 22px solid #fff;
  clip-path: inset(0 50% 0 0);
}
.brand-mark.lg::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 50%;
  border: 22px solid var(--gold);
  background: none;
  clip-path: inset(0 0 0 50%);
}

.splash-tagline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 18ch;
  margin: 0;
  color: #fff;
}
.splash-tagline .gold { color: var(--gold); }

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-content {
  max-width: 760px;
  margin: 0 auto;
}

.about-content .section-heading { text-align: center; }

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 18px;
  text-align: left;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.stat-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

/* =========================================================
   SOCIAL LINK (Instagram, etc.)
   ========================================================= */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.social-link:hover { color: var(--gold); }

.social-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.social-icon svg { width: 100%; height: 100%; }
.social-link:hover .social-icon { color: #fff; }

/* =========================================================
   INQUIRY / ORDER FORM
   ========================================================= */
.order-product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.order-product-card .label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.order-product-card .value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.form-alert {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  border: 1px solid var(--border);
}
.form-alert.success { border-color: var(--gold); color: var(--navy); background: var(--gold-soft); }
.form-alert.error { border-color: #C2410C; color: #C2410C; background: #FFF4ED; }

.order-form .field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-form label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.order-form input,
.order-form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--text);
  width: 100%;
  box-sizing: border-box;
}

.order-form textarea { resize: vertical; min-height: 120px; }

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.order-form .btn { margin-top: 6px; }
