/* =========================
   FORJEN – Main Styles
   ========================= */

:root{
  --bg: #1f1f1f;
  --fg: #F1EEE7;
  --accent: rgba(255,255,255,0.88);

  /* System lines */
  --line-1: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.06);
  --line-3: rgba(255,255,255,0.12);
  --line-4: rgba(255,255,255,0.15);

  /* Muted text */
  --muted-1: rgba(255,255,255,0.55);
  --muted-2: rgba(255,255,255,0.44);
  --muted-3: rgba(255,255,255,0.30);

  /* Layout */
  --container-max: 1400px;
  --pad-desktop: 40px;
  --pad-mobile: 18px;

  /* Motion */
  --ease: 0.2s;
}

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

body{
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================
   Type tiers
   ========================= */

.tier-1{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.tier-2{
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.015em;
  color: var(--muted-1);
}

.tier-3{
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.10em;
  color: var(--muted-2);
}

/* =========================
   Header
   ========================= */

header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(31,31,31,0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-2);
}

.header-content{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 18px var(--pad-desktop);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color: rgba(255,255,255,0.90);
}

.brand-icon{
  width:30px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity: 0.95;
  flex: 0 0 auto;
}
.brand-icon svg{ width:100%; height:100%; }

.brand-word{
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}

.kern-j{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  display:inline-block;
  margin-left: -2px;
  transform: translateY(0.5px);
}

.brand:hover .brand-word{ color: rgba(255,255,255,0.95); }
.brand:hover .brand-icon{ opacity: 1; }

.header-status{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:center;
  flex: 1;
  min-width: 0;
}

.status-pill{
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  border: 1px solid var(--line-3);
  background: rgba(255,255,255,0.02);
  padding: 7px 10px;
  white-space: nowrap;
  text-decoration: none;
}

.status-dot{
  width:4px;
  height:4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}

.status-link{
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 1px solid var(--line-3);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: all var(--ease);
}
.status-link:hover{
  color: rgba(255,255,255,0.78);
  border-bottom-color: rgba(255,255,255,0.28);
}

.status-link-active{
  color: rgba(255,255,255,0.80);
  border-bottom-color: rgba(255,255,255,0.35);
}

.access-btn{
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 18px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: all 0.25s;
  font-weight: 600;
  white-space: nowrap;
}
.access-btn:hover{
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.92);
}

.access-btn:focus-visible,
.status-link:focus-visible{
  outline: 2px solid rgba(255,255,255,0.25);
  outline-offset: 3px;
}

/* =========================
   Header Actions (Cart Button)
   ========================= */

.header-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Cart Button - Color Independent Design */
.cart-btn{
  position: relative;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.25s;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-btn:hover{
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.03);
}

/* When cart has items - white highlight theme */
.cart-btn.has-items{
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}

.cart-btn.has-items:hover{
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
}

/* Cart Count Badge */
.cart-count{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.85);
}

/* When cart has items - invert badge */
.cart-btn.has-items .cart-count{
  background: rgba(255,255,255,0.95);
  color: #1f1f1f;
}

.cart-label{
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* =========================
   Cart Panel (Slide-out)
   ========================= */

.cart-panel{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.cart-panel.active{
  display: block;
}

.cart-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.cart-content{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: #1f1f1f;
  border-left: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Cart Header */
.cart-header{
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title{
  font-size: 18px;
  letter-spacing: 0.12em;
}

.cart-close{
  background: none;
  border: none;
  color: rgba(255,255,255,0.40);
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  transition: color 0.2s;
}

.cart-close:hover{
  color: rgba(255,255,255,0.85);
}

/* Cart Body */
.cart-body{
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* Empty State */
.cart-empty{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  min-height: 300px;
}

.cart-empty-icon{
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.cart-empty-text{
  font-size: 16px;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.60);
}

.cart-empty-subtext{
  color: rgba(255,255,255,0.30);
}

/* Cart Items */
.cart-items{
  padding: 0;
}

.cart-item{
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
}

.cart-item:hover{
  background: rgba(255,255,255,0.02);
}

.cart-item-image{
  width: 80px;
  height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.25)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.06));
}

.cart-item-info{
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cart-item-name{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
}

.cart-item-details{
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

.cart-item-price{
  font-size: 15px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.05em;
}

.cart-item-remove{
  background: none;
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.35);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.cart-item-remove:hover{
  border-color: rgba(255,0,0,0.40);
  color: rgba(255,0,0,0.80);
  background: rgba(255,0,0,0.05);
}

/* Cart Footer */
.cart-footer{
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.cart-total-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-total-label{
  color: rgba(255,255,255,0.45);
}

.cart-total-value{
  font-size: 28px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.95);
}

/* Checkout Button - White theme (universal) */
.cart-checkout-btn{
  width: 100%;
  border: 1.5px solid rgba(255,255,255,0.85);
  padding: 16px;
  background: transparent;
  color: rgba(255,255,255,0.95);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Work Sans', sans-serif;
  margin-bottom: 12px;
}

.cart-checkout-btn:hover{
  background: rgba(255,255,255,0.95);
  color: #1f1f1f;
  border-color: rgba(255,255,255,0.95);
}

.cart-footer-note{
  text-align: center;
  color: rgba(255,255,255,0.30);
  font-size: 10px;
  line-height: 1.5;
}

.cart-item-size{
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Footer row for qty controls + price */
.cart-item-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  gap: 12px;
}

/* Quantity controls container */
.cart-item-qty-controls{
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  padding: 4px 8px;
  background: rgba(255,255,255,0.02);
}

/* Quantity +/- buttons */
.qty-btn{
  background: none;
  border: none;
  color: rgba(255,255,255,0.60);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.2s;
  font-weight: 400;
}

.qty-btn:hover:not(:disabled){
  color: rgba(255,255,255,0.95);
}

.qty-btn:disabled{
  color: rgba(255,255,255,0.20);
  cursor: not-allowed;
}

/* Quantity value display */
.qty-value{
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  min-width: 20px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
}

/* =========================
   Restore Modal
   ========================= */

.restore-modal{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(12px);
  z-index: 150;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.restore-modal.active{ 
  display: flex; 
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.restore-overlay{
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.restore-content{
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
  z-index: 1;
  text-align: center;
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.restore-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border: 2px solid rgba(255,255,255,0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.88);
}

.restore-title{
  font-size: 24px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.95);
}

.restore-message{
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.6;
}

.restore-details{
  margin: 24px 0;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  text-align: left;
}

.restore-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.restore-item:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.restore-item-image{
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.restore-item-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restore-item-info{
  flex: 1;
  min-width: 0;
}

.restore-item-name{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.restore-item-details{
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.restore-question{
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 24px 0 28px;
  line-height: 1.5;
}

.restore-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.restore-btn{
  width: 100%;
  padding: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Work Sans', sans-serif;
  border: 1.5px solid;
}

.restore-btn-primary{
  border-color: rgba(255,255,255,0.88);
  background: transparent;
  color: rgba(255,255,255,0.95);
}

.restore-btn-primary:hover{
  background: rgba(255,255,255,0.88);
  color: rgba(255,255,255,0.95);
}

.restore-btn-secondary{
  border-color: rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.75);
}

.restore-btn-secondary:hover{
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.02);
}

.restore-note{
  color: rgba(255,255,255,0.30);
  font-size: 10px;
  line-height: 1.5;
}

/* =========================
   Layout
   ========================= */

main{ padding-top: 64px; padding-bottom: 64px; }

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

.crumb{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.crumb-dot{
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
}
.crumb .tier-3{
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.14em;
}

.god-name{
  font-size: clamp(56px, 8vw, 140px);
  line-height: 0.9;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.88);;
}

.content-grid{
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
}

/* =========================
   Left column
   ========================= */

.image-container{
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.image-container img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 0.5px rgba(255,255,255,0.25))
    drop-shadow(0 0 12px rgba(255,255,255,0.06));
}

.god-law{
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.45;
  max-width: 540px;
}

.doctrine{
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-3);
}

.why-line{
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.38);
  max-width: 520px;
}

.placement-info,
.specs{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-1);
}

.placement-info{ margin-top: 22px; }

.placement-row,
.spec-row{
  display: flex;
  gap: 48px;
  margin-bottom: 8px;
}

.placement-label{ color: var(--muted-3); min-width: 120px; }
.placement-value{ color: var(--muted-2); }

.fineprint{
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
  max-width: 560px;
}

/* =========================
   Right column
   ========================= */

.data-column{ padding-top: 0; }

.data-section{
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-1);
}
.data-section:last-child{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.data-label{ margin-bottom: 14px; }

.timer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timer-unit{ text-align: left; }

.timer-value{
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  font-family: 'Oswald', sans-serif;
}
.timer-label{
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

.stock-value,
.cost-value{
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  font-family: 'Oswald', sans-serif;
}

.stock-bar{
  width: 100%;
  height: 2px;
  background: var(--line-3);
  position: relative;
}
.stock-fill{
  position: absolute;
  inset: 0;
  left: 0;
  background: rgba(255,255,255,0.88);
  opacity: 0.80;
  transition: width 0.5s;
}

.acquire-btn{
  width: 100%;
  border: 1.5px solid rgba(255,255,255,0.88);
  padding: 18px;
  background: transparent;
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
}
.acquire-btn:hover{
  background: rgba(255,255,255,0.88);
  color: black;
}
.acquire-btn:focus-visible{
  outline: 2px solid rgba(255,255,255,0.25);
  outline-offset: 3px;
}

.trust-row{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.trust-pill{
  border: 1px solid rgba(255,255,255,0.10);
  padding: 8px 10px;
  background: rgba(255,255,255,0.02);
}

/* =========================
   How it works
   ========================= */

.how{
  border-top: 1px solid var(--line-1);
  padding: 64px 0;
  margin-top: 64px;
}
.how-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.how-item{ padding-top: 8px; }
.how-item .tier-3{
  color: rgba(255,255,255,0.30);
  margin-bottom: 10px;
}
.how-item .tier-2{
  line-height: 1.6;
  color: rgba(255,255,255,0.52);
  max-width: 360px;
}

/* =========================
   Next section
   ========================= */

.next-section{
  border-top: 1px solid var(--line-1);
  padding: 80px 0;
}

.next-grid{
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
}

.next-month{
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.next-name{
  font-size: 110px;
  line-height: 0.9;
  margin-bottom: 20px;
}

.next-law{
  font-size: 18px;
  line-height: 1.45;
  max-width: 540px;
}

.request-btn{
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 24px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.request-btn:hover{
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.92);
}
.request-btn:focus-visible{
  outline: 2px solid rgba(255,255,255,0.25);
  outline-offset: 3px;
}

/* =========================
   Footer
   ========================= */

footer{
  border-top: 1px solid var(--line-1);
  padding: 44px 0;
}

.footer-content{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-desktop);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-text{
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

.footer-link{
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 2px;
  transition: all var(--ease);
}
.footer-link:hover{
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.30);
}

/* =========================
   Modal
   ========================= */

.modal{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(12px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.modal.active{ display: flex; }

.modal-content{
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  max-width: 520px;
  width: 100%;
  padding: 56px;
  position: relative;
}

.modal-close{
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.25s;
}
.modal-close:hover{ color: rgba(255,255,255,0.75); }

.modal-title{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.modal-description{
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  line-height: 1.65;
}

.modal-reassure{
  font-size: 11px;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 34px;
  line-height: 1.6;
}

.modal-input{
  width: 100%;
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px;
  color: white;
  font-size: 13px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  font-family: 'Work Sans', sans-serif;
}
.modal-input:focus{
  outline: none;
  border-color: rgba(255,255,255,0.35);
}

.modal-input::placeholder{
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

.modal-submit{
  width: 100%;
  border: 1.5px solid white;
  padding: 16px;
  background: transparent;
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
}
.modal-submit:hover{
  background: white;
  color: black;
}

.modal-confirmed{
  text-align: center;
  padding: 48px 0;
}

.confirmed-title{
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-family: 'Oswald', sans-serif;
}

.confirmed-text{
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.next-teaser-locked{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.next-locked-title{
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.12em;
  line-height: 0.95;
  color: rgba(255,255,255,0.88);
  margin-top: 10px;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1024px){
  .content-grid,
  .next-grid{
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .next-name{ font-size: 80px; }
  .how-grid{ grid-template-columns: 1fr; gap: 24px; }
  .next-teaser-locked{ flex-direction: column; align-items: flex-start; }
  .next-teaser-locked .request-btn{ width: 100%; padding: 16px 18px; }
}

@media (max-width: 768px){
  .header-status{ display:none; }
  .brand-icon{ width:22px; height:22px; }
  .brand-word{ font-size: 14px; letter-spacing: 0.14em; }
  .header-content{ padding: 16px var(--pad-mobile); }

  .container{ padding: 0 var(--pad-mobile); }

  .god-name{ font-size: 56px; }
  .next-name{ font-size: 56px; }

  .timer-value,
  .stock-value,
  .cost-value{ font-size: 40px; }

  .cart-content{
    max-width: 100%;
  }

  .cart-item{
    grid-template-columns: 70px 1fr auto;
    gap: 12px;
    padding: 16px 20px;
  }

  .cart-item-image{
    width: 70px;
    height: 70px;
  }

  .cart-label{
    display: none;
  }

  .cart-btn{
    padding: 8px 12px;
  }

  .restore-content{
    padding: 40px 28px;
    max-width: 100%;
    margin: 0 20px;
  }

  .restore-title{
    font-size: 20px;
  }

  .restore-message{
    font-size: 14px;
  }

  .restore-icon{
    width: 56px;
    height: 56px;
  }

  .restore-icon svg{
    width: 40px;
    height: 40px;
  }
}