.page-simulator{
  padding:0 0 80px;
  font-family:"Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  color:#000;
}

.page-simulator .simulator-option-label{
  display:inline-flex;
  align-items:center;
}

.page-simulator .simulator-option-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.page-simulator .simulator-option-icon svg{
  width:14px;
  height:14px;
}

.page-simulator .simulator-shell{
  width:min(1100px, 92vw);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:0;
}

.page-simulator .hub-layout-field{
  width:min(260px, 100%);
  margin:0 auto 22px;
  display:flex;
  flex-direction:column;
  gap:0;
  color:var(--t-text-secondary, #334155);
  font-size:13px;
  font-weight:700;
}

.page-simulator .hub-layout-select{
  width:100%;
  border:1px solid var(--t-border, rgba(15,23,42,.12));
  border-radius:10px;
  background:var(--t-surface, #fff);
  color:var(--t-text-primary, #0f172a);
  height:32px;
  padding:6px 36px 6px 10px;
  font:inherit;
  font-size:12px;
  line-height:1;
}

.page-simulator .simulator-hero{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  align-items:center;
  justify-items:center;
  padding:32px 34px;
  border-radius:28px;
  background:transparent;
  border:none;
  position:relative;
  overflow:hidden;
  text-align:center;
}

.page-simulator .simulator-kicker{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.2em;
  font-weight:700;
  color:rgba(37,99,235,.82);
  margin-bottom:10px;
}

.page-simulator .simulator-title{
  font-size:36px;
  font-weight:800;
  margin:0 0 12px;
  color:#000;
}

.page-simulator .simulator-subtitle{
  font-size:16px;
  font-weight:600;
  margin:0 0 10px;
  color:#000;
}

.page-simulator .simulator-copy{
  font-size:14px;
  line-height:1.6;
  color:#000;
  margin:0;
}

.page-simulator .simulator-hero-art{
  display:none;
}

.page-simulator .simulator-hero-tile{
  position:absolute;
  width:84px;
  height:84px;
  border-radius:22px;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(59,130,246,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2563eb;
}

.page-simulator .simulator-hero-tile svg{
  width:36px;
  height:36px;
}

.page-simulator .simulator-hero-tile.first{
  right:96px;
  top:10px;
  transform:rotate(-8deg);
}

.page-simulator .simulator-hero-tile.second{
  right:18px;
  top:48px;
  transform:rotate(6deg);
}

.page-simulator .simulator-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
  margin-top:-12px;
}

.page-simulator .simulator-card{
  background:var(--t-surface, #fff);
  border-radius:22px;
  padding:26px 28px;
  border:1px solid rgba(148,163,184,.2);
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
  min-height:210px;
}

.page-simulator .simulator-card-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(59,130,246,.12);
  color:#2563eb;
}

.page-simulator .simulator-card-icon svg{
  width:22px;
  height:22px;
}

.page-simulator .simulator-card-title{
  font-size:18px;
  font-weight:700;
  margin:0;
  color:#000;
}

.page-simulator .simulator-card-desc{
  font-size:13px;
  line-height:1.6;
  color:#000;
  margin:0;
  max-width:360px;
}

.page-simulator .simulator-card-corner-ghost{
  position:absolute;
  right:22px;
  top:20px;
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(59,130,246,.30);
  opacity:.42;
  pointer-events:none;
}

.page-simulator .simulator-card-corner-ghost svg{
  width:72px;
  height:72px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
}

.page-simulator .simulator-card-corner-ghost.support{
  transform:rotate(9deg);
}

.page-simulator .simulator-card-corner-ghost.email{
  transform:rotate(-8deg);
}

.page-simulator .simulator-card-corner-ghost.code{
  transform:rotate(11deg);
}

.page-simulator .simulator-card-corner-ghost.apps{
  transform:rotate(-10deg);
}

.page-simulator .simulator-card-action{
  margin-top:auto;
  align-self:flex-start;
  border:none;
  background:#3b82f6;
  color:white;
  font-size:13px;
  font-weight:600;
  padding:8px 16px;
  border-radius:10px;
  cursor:pointer;
  transition:transform .12s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}

.page-simulator .simulator-card-action.secondary{
  background:rgba(59,130,246,.12);
  color:#1d4ed8;
  box-shadow:none;
}

.page-simulator .simulator-card-action-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.page-simulator .simulator-card-action-icon svg{
  width:14px;
  height:14px;
}

.page-simulator .simulator-action-wrap{
  position:relative;
  align-self:flex-start;
}

.page-simulator .simulator-option-menu{
  position:absolute;
  left:0;
  top:calc(100% + 10px);
  min-width:200px;
  background:#fff;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.2);
  padding:12px;
  z-index:20;
}

.page-simulator .simulator-option-menu.hidden{
  display:none;
}

.page-simulator .simulator-option-title{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:inherit;
  font-weight:700;
  margin-bottom:10px;
}

.page-simulator .simulator-option-list{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.page-simulator .simulator-option-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 12px;
  border-radius:10px;
  background:rgba(59,130,246,.1);
  color:#1e40af;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  transition:background .12s ease, transform .12s ease;
}

.page-simulator .simulator-option-btn:hover{
  background:rgba(59,130,246,.18);
  transform:translateX(1px);
}

.page-simulator .simulator-card.disabled{
  opacity:0.55;
  cursor:not-allowed;
}

.page-simulator .simulator-card.disabled .simulator-card-icon{
  background:rgba(148,163,184,.12);
  color:#64748b;
}

.page-simulator .simulator-soon-badge{
  align-self:flex-start;
  display:inline-flex;
  padding:6px 12px;
  border-radius:20px;
  background:rgba(59,130,246,.12);
  color:inherit;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.05em;
}

[data-theme="dark"] .page-simulator{
  color:#fff;
}

[data-theme="dark"] .page-simulator .simulator-title,
[data-theme="dark"] .page-simulator .simulator-subtitle,
[data-theme="dark"] .page-simulator .simulator-copy,
[data-theme="dark"] .page-simulator .simulator-card-title,
[data-theme="dark"] .page-simulator .simulator-card-desc{
  color:#fff;
}

[data-theme="light"] .page-simulator :is(
  .simulator-title,
  .simulator-subtitle,
  .simulator-copy,
  .simulator-card-title,
  .simulator-card-desc,
  .simulator-option-title,
  .simulator-soon-badge
){
  color:#000;
}

[data-theme="dark"] .page-simulator :is(
  .simulator-title,
  .simulator-subtitle,
  .simulator-copy,
  .simulator-card-title,
  .simulator-card-desc,
  .simulator-option-title,
  .simulator-soon-badge
){
  color:#fff;
}

[data-theme="dark"] .page-simulator .simulator-card.disabled{
  opacity:0.4;
}

[data-theme="dark"] .page-simulator .simulator-card.disabled .simulator-card-icon{
  background:rgba(148,163,184,.08);
  color:#94a3b8;
}

[data-theme="dark"] .page-simulator .simulator-card-corner-ghost{
  color:rgba(147,197,253,.62);
  opacity:.72;
}

[data-theme="dark"] .page-simulator .simulator-card-icon{
  background:rgba(59,130,246,.22);
  color:#93c5fd;
}

[data-theme="dark"] .page-simulator .simulator-card-icon svg{
  stroke-width:2;
}

[data-theme="dark"] .page-simulator .simulator-card-action.secondary{
  background:rgba(255,255,255,.06);
  color:#e5e7eb;
  border:1px solid rgba(255,255,255,.2);
}

[data-theme="dark"] .page-simulator .simulator-card-action.secondary:hover{
  background:rgba(255,255,255,.1);
  color:#ffffff;
  border-color:rgba(255,255,255,.3);
}

[data-theme="dark"] .page-simulator .simulator-soon-badge{
  background:rgba(59,130,246,.22);
  color:inherit;
}

[data-theme="dark"] .page-simulator .simulator-option-menu{
  background:rgba(28,28,27,.96);
  border-color:rgba(148,163,184,.28);
}

[data-theme="dark"] .page-simulator .simulator-option-btn{
  background:rgba(255,255,255,.06);
  color:#e5e7eb;
}

[data-theme="dark"] .page-simulator .simulator-option-btn:hover{
  background:rgba(255,255,255,.1);
}

.page-simulator .simulator-card-action:hover{
  transform:translateY(-1px);
}

.page-simulator .simulator-card-action.secondary:hover{
  box-shadow:none;
}

@media (max-width: 900px){
  .page-simulator .simulator-hero{
    grid-template-columns:1fr;
  }
  .page-simulator .simulator-hero-art{
    max-width:none;
    height:120px;
  }
  .page-simulator .simulator-grid{
    grid-template-columns:1fr;
  }
}
