/* ── Ironhold Marketing / Entry ──────────────────────────────── */
.landing {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(184, 160, 112, 0.14), transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(100, 140, 200, 0.1), transparent 45%),
    linear-gradient(165deg, #06080c 0%, #0a0e16 40%, #0c121c 100%);
  color: #e8eef6;
  font-family: 'Jost', system-ui, sans-serif;
  overflow-x: hidden;
}
.landing.hidden { display: none !important; }

.land-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(8, 10, 16, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.land-brand { display: flex; align-items: center; gap: 12px; }
.land-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(145deg, rgba(200,180,120,0.25), rgba(80,100,140,0.2));
  border: 1px solid rgba(200,180,120,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 24px rgba(200, 170, 90, 0.15);
}
.land-brand h1 {
  font-family: 'Cinzel', serif; font-size: 15px; letter-spacing: 0.18em;
  font-weight: 700; color: #e8dcc8; margin: 0;
}
.land-brand span { font-size: 10px; color: #6a7588; letter-spacing: 0.12em; text-transform: uppercase; }
.land-nav-links { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.land-nav-links a {
  color: #8a96aa; text-decoration: none; font-size: 13px; font-weight: 500;
  padding: 8px 12px; border-radius: 8px; transition: 0.15s;
}
.land-nav-links a:hover { color: #e8eef6; background: rgba(255,255,255,0.04); }
.land-nav-cta {
  background: linear-gradient(135deg, #c8b070, #8a7040) !important;
  color: #0a0c10 !important; font-weight: 600 !important;
  border-radius: 10px !important; padding: 8px 16px !important;
}
.land-nav-cta:hover { filter: brightness(1.08); }

/* Hero */
.land-hero {
  display: grid; grid-template-columns: 1.15fr 0.95fr; gap: 40px;
  max-width: 1180px; margin: 0 auto; padding: 56px 28px 40px;
  align-items: start;
}
@media (max-width: 960px) {
  .land-hero { grid-template-columns: 1fr; padding-top: 32px; }
}
.land-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #c8b070; background: rgba(200,176,112,0.1);
  border: 1px solid rgba(200,176,112,0.25); border-radius: 999px;
  padding: 6px 14px; margin-bottom: 18px;
}
.land-hero h2 {
  font-family: 'Cinzel', serif; font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.01em;
  color: #f2ebe0; margin: 0 0 16px;
}
.land-hero h2 em {
  font-style: normal;
  background: linear-gradient(120deg, #e4c98a, #b8c8e0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.land-lead {
  font-size: 17px; line-height: 1.65; color: #8a96aa; max-width: 520px; margin-bottom: 28px;
}
.land-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.btn-gold {
  border: none; border-radius: 12px; padding: 14px 22px;
  font: 600 14px 'Jost', sans-serif; cursor: pointer;
  background: linear-gradient(135deg, #d4bc7a, #a08040);
  color: #0a0c10; box-shadow: 0 12px 32px rgba(160, 120, 50, 0.28);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(160, 120, 50, 0.35); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 14px 22px;
  font: 500 14px 'Jost', sans-serif; cursor: pointer;
  background: rgba(255,255,255,0.03); color: #c8d0de;
  backdrop-filter: blur(8px); transition: 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.06); }

.land-trust {
  display: flex; flex-wrap: wrap; gap: 18px; font-size: 12px; color: #5a6478;
}
.land-trust strong { color: #b8c8e0; font-weight: 600; }

/* Glass login card */
.land-auth-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px 26px;
  backdrop-filter: blur(28px) saturate(1.5);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.land-auth-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.land-auth-card h3 {
  font-family: 'Cinzel', serif; font-size: 18px; color: #e8dcc8; margin: 0 0 6px;
}
.land-auth-card .sub { font-size: 13px; color: #6a7588; margin-bottom: 18px; }

/* Dual worlds */
.land-section {
  max-width: 1180px; margin: 0 auto; padding: 56px 28px;
}
.land-section-head { text-align: center; margin-bottom: 36px; }
.land-section-head h3 {
  font-family: 'Cinzel', serif; font-size: 28px; color: #f0e8dc; margin: 0 0 10px;
}
.land-section-head p { color: #6a7588; font-size: 15px; max-width: 560px; margin: 0 auto; line-height: 1.6; }

.dual-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 800px) { .dual-grid { grid-template-columns: 1fr; } }

.world-card {
  position: relative;
  border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 340px;
  padding: 28px;
  display: flex; flex-direction: column;
}
.world-card.command {
  background:
    linear-gradient(160deg, rgba(30, 40, 60, 0.9), rgba(12, 16, 28, 0.95)),
    linear-gradient(135deg, #1a2438, #0a0e18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.world-card.home {
  background:
    linear-gradient(160deg, rgba(60, 80, 55, 0.35), rgba(30, 40, 32, 0.9)),
    linear-gradient(145deg, #2a3a30, #1a221c);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(180, 200, 160, 0.12);
}
.world-badge {
  display: inline-flex; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; width: fit-content;
}
.world-card.command .world-badge {
  background: rgba(138,154,181,0.15); color: #b8c8e0; border: 1px solid rgba(138,154,181,0.25);
}
.world-card.home .world-badge {
  background: rgba(120,160,100,0.2); color: #c8dcb0; border: 1px solid rgba(140,180,110,0.3);
}
.world-card h4 {
  font-family: 'Cinzel', serif; font-size: 22px; margin: 0 0 8px; color: #f0ebe3;
}
.world-card p { font-size: 14px; line-height: 1.55; color: #8a96aa; margin: 0 0 18px; flex: 1; }
.world-card .world-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; text-decoration: none; color: #e4c98a;
  cursor: pointer; background: none; border: none; padding: 0; font-family: inherit;
}
.world-card.home .world-cta { color: #b8d89a; }

/* Feature bubbles */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

.feat-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 22px 20px 20px;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, transform 0.2s;
}
.feat-card:hover {
  border-color: rgba(200,176,112,0.3);
  transform: translateY(-2px);
}
.feat-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(145deg, rgba(200,176,112,0.15), rgba(100,120,160,0.12));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 14px;
}
.feat-card h5 {
  font-size: 15px; font-weight: 600; color: #e8eef6; margin: 0 0 8px;
}
.feat-card p { font-size: 13px; color: #6a7588; line-height: 1.5; margin: 0; }

/* Chat-bubble tooltips on features */
.feat-bubble {
  position: absolute; top: -10px; right: 14px;
  max-width: 200px;
  background: linear-gradient(145deg, #1a2235, #121826);
  border: 1px solid rgba(200,176,112,0.35);
  color: #d8dce8; font-size: 11px; line-height: 1.4;
  padding: 10px 12px; border-radius: 14px 14px 4px 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transform: translateY(6px); transition: 0.2s;
  z-index: 5;
}
.feat-card:hover .feat-bubble,
.feat-card:focus-within .feat-bubble {
  opacity: 1; transform: translateY(0);
}
.feat-bubble::after {
  content: ''; position: absolute; bottom: -6px; right: 16px;
  border: 6px solid transparent; border-top-color: #1a2235;
}

/* Pricing */
.price-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  align-items: stretch;
}
@media (max-width: 1000px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 26px 22px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: linear-gradient(165deg, rgba(200,176,112,0.12), rgba(255,255,255,0.03));
  border-color: rgba(200,176,112,0.4);
  box-shadow: 0 20px 50px rgba(160,120,50,0.12);
}
.price-card .pop {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #d4bc7a, #a08040);
  color: #0a0c10; font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 999px; white-space: nowrap;
}
.price-tier { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #8a96aa; margin-bottom: 8px; }
.price-name { font-family: 'Cinzel', serif; font-size: 20px; color: #f0e8dc; margin-bottom: 6px; }
.price-amt { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.price-amt span { font-size: 14px; font-weight: 400; color: #6a7588; }
.price-who { font-size: 12px; color: #6a7588; margin-bottom: 18px; line-height: 1.4; }
.price-list { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.price-list li {
  font-size: 13px; color: #a0aab8; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; gap: 8px; align-items: flex-start;
}
.price-list li::before { content: '✓'; color: #4caf7d; font-weight: 700; flex-shrink: 0; }

/* Rights */
.rights-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 700px) { .rights-grid { grid-template-columns: 1fr; } }
.rights-panel {
  border-radius: 20px; padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
}
.rights-panel.ll {
  background: linear-gradient(160deg, rgba(40,55,90,0.35), rgba(12,16,24,0.8));
}
.rights-panel.tn {
  background: linear-gradient(160deg, rgba(50,80,50,0.3), rgba(16,22,16,0.85));
}
.rights-panel h4 {
  font-family: 'Cinzel', serif; font-size: 18px; margin: 0 0 14px; color: #f0e8dc;
}
.rights-panel ul { margin: 0; padding: 0 0 0 18px; color: #8a96aa; font-size: 13px; line-height: 1.7; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 4px;
  font-size: 15px; font-weight: 500; color: #e0e6f0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: #c8b070; font-size: 18px; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 4px 18px; margin: 0; font-size: 14px; line-height: 1.65; color: #6a7588;
}

/* Docs strip */
.docs-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 700px) { .docs-row { grid-template-columns: 1fr; } }
.doc-pill {
  display: block; text-decoration: none;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 18px; color: inherit; transition: 0.15s;
}
.doc-pill:hover { border-color: rgba(200,176,112,0.3); background: rgba(255,255,255,0.05); }
.doc-pill strong { display: block; color: #e8eef6; font-size: 14px; margin-bottom: 4px; }
.doc-pill span { font-size: 12px; color: #6a7588; line-height: 1.4; }

.land-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px; text-align: center; font-size: 12px; color: #4a5568;
}
.land-footer a { color: #8a96aa; text-decoration: none; }

/* Auth fields on landing */
.land-auth-card .field-group { margin-bottom: 12px; }
.land-auth-card .field-group label {
  display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #6a7588; margin-bottom: 6px;
}
.land-auth-card .field-group input {
  width: 100%; background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 14px; color: #e8eef6; font: 14px 'Jost', sans-serif;
  outline: none;
}
.land-auth-card .field-group input:focus {
  border-color: rgba(200,176,112,0.45); box-shadow: 0 0 0 3px rgba(200,176,112,0.12);
}
.land-auth-card .auth-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  background: rgba(0,0,0,0.3); border-radius: 10px; padding: 4px; margin-bottom: 16px;
}
.land-auth-card .auth-tab {
  text-align: center; padding: 10px; border-radius: 8px; font-size: 13px;
  color: #6a7588; cursor: pointer; font-weight: 500;
}
.land-auth-card .auth-tab.active {
  background: rgba(255,255,255,0.08); color: #e8eef6;
}
.land-auth-card .btn-primary {
  width: 100%; margin-top: 4px;
  background: linear-gradient(135deg, #d4bc7a, #a08040);
  border: none; color: #0a0c10; font-weight: 700;
  border-radius: 10px; padding: 13px; cursor: pointer; font-family: 'Jost', sans-serif;
}
.land-auth-card .btn-google {
  width: 100%; margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px; color: #c8d0de; cursor: pointer;
  font: 500 13px 'Jost', sans-serif;
}
.land-auth-card .auth-divider {
  text-align: center; font-size: 11px; color: #5a6478; margin: 14px 0; position: relative;
}
.land-auth-card .auth-guest {
  text-align: center; margin-top: 14px; font-size: 12px; color: #6a7588;
}
.land-auth-card .auth-guest span { color: #c8b070; cursor: pointer; text-decoration: underline; }

.preview-bubbles {
  display: flex; flex-direction: column; gap: 10px; margin-top: 16px;
}
.preview-bubbles .pb {
  align-self: flex-start;
  max-width: 90%;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px 14px 14px 4px;
  padding: 10px 12px; font-size: 12px; color: #b0b8c8; line-height: 1.4;
}
.world-card.home .preview-bubbles .pb {
  border-radius: 14px 14px 4px 14px; align-self: flex-end;
  background: rgba(80,100,70,0.35);
}
