
/* Responsive Image & Banner Wrappers */
.hero-image-wrap {
  width: 100%;
  max-width: 1060px;
  margin: 36px auto 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.16);
  border: 1px solid var(--border-color);
  background: var(--bg-alt);
}
.hero-featured-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1200 / 628;
  object-fit: cover;
}
.content-media-wrap {
  width: 100%;
  max-width: 860px;
  margin: 28px auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  background: var(--bg-alt);
}
.content-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 800 / 500;
  object-fit: cover;
}

/* Design Archetype: split_showcase | Brand: Cragosculpture */
:root {
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --secondary: #0369a1;
  --accent: #38bdf8;
  --dark: #0c4a6e;
  --dark-bg: #164e63;
  --bg-light: #f0f9ff;
  --bg-white: #ffffff;
  --border-color: #e0f2fe;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --badge-bg: #e0f2fe;
  --badge-color: #0369a1;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: all 0.2s; }
a:hover { color: var(--primary-hover); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  font-size: 0.95rem;
}
.btn-primary { background: var(--primary); color: #ffffff !important; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-outline { border-color: var(--border-color); color: var(--text-main); background: transparent; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 14px 30px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn-pill { border-radius: 9999px; }
.btn-bold { background: #000; color: #fff !important; font-weight: 800; border-radius: 0; text-transform: uppercase; letter-spacing: 1px; }
.btn-bold:hover { background: var(--primary); }
.btn-cta { background: #fff; color: var(--dark) !important; font-weight: 700; padding: 14px 32px; border-radius: var(--radius-sm); }

/* Common Nav */
.site-header { background: #fff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.35rem; color: var(--dark); }
.brand-icon { font-size: 1.5rem; }
.main-nav .nav-menu { display: flex; list-style: none; gap: 20px; }
.nav-menu a { font-weight: 600; font-size: 0.92rem; color: #334155; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.header-action { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }

/* -----------------------------------------------------------
   ARCHETYPE 1: SAAS BENTO CSS
----------------------------------------------------------- */
.arch-saas_bento .hero-saas {
  padding: 84px 0 60px;
  background: radial-gradient(circle at 50% 20%, var(--bg-light) 0%, #ffffff 80%);
}
.arch-saas_bento .badge-pill {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--badge-bg);
  color: var(--badge-color);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 20px;
}
.arch-saas_bento .hero-title-giant {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 20px;
}
.arch-saas_bento .hero-subtitle-center {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 32px;
}
.arch-saas_bento .hero-actions-center { display: flex; justify-content: center; gap: 16px; }

/* Bento Grid */
.bento-section { padding: 40px 0 80px; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.08); }
.bento-span-2 { grid-column: span 2; }
.bento-span-1 { grid-column: span 1; }
.bento-card-main {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-bg) 100%);
  color: #fff;
  border: none;
}
.bento-card-main h3 { font-size: 1.7rem; font-weight: 800; margin: 12px 0; color: #fff; }
.bento-card-main p { color: #94a3b8; font-size: 0.95rem; }
.bento-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}
.bento-metrics-row {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.bento-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: #fff; }
.bento-stat span { font-size: 0.8rem; color: #94a3b8; }
.bento-icon { font-size: 2.2rem; margin-bottom: 12px; }

/* -----------------------------------------------------------
   ARCHETYPE 2: ENTERPRISE CLASSIC CSS
----------------------------------------------------------- */
.top-utility-strip {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.82rem;
  color: #475569;
  padding: 6px 0;
}
.utility-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.utility-tax { font-weight: 700; color: #1e293b; }
.header-enterprise { background: #fff; border-bottom: 2px solid var(--primary); }
.brand-seal { font-size: 1.6rem; }
.hero-enterprise { padding: 60px 0; background: var(--bg-light); border-bottom: 1px solid var(--border-color); }
.hero-enterprise-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.enterprise-kicker { font-size: 0.85rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.enterprise-h1 { font-size: 2.5rem; font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 18px; }
.enterprise-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.enterprise-points .pt-row { font-size: 0.95rem; margin-bottom: 10px; color: #334155; }
.booking-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.booking-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.booking-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }
.enterprise-pillars { padding: 60px 0; border-bottom: 1px solid var(--border-color); }
.pillar-col { padding: 24px; border-left: 2px solid var(--border-color); }
.pillar-num { font-size: 2.2rem; font-weight: 900; color: var(--primary); margin-bottom: 8px; }

/* -----------------------------------------------------------
   ARCHETYPE 3: BOLD AGENCY CSS
----------------------------------------------------------- */
.header-bold { border-bottom: 3px solid #000; background: #fff; }
.nav-menu-bold a { text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.hero-bold { padding: 64px 0 40px; background: #fff; }
.bold-tagline { font-family: monospace; font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.bold-giant-h1 { font-size: 3.6rem; font-weight: 900; line-height: 1.05; letter-spacing: -2px; color: #000; margin-bottom: 40px; }
.bold-triptych { display: grid; grid-template-columns: 1.5fr 1fr 1fr; border: 2px solid #000; }
.triptych-cell { padding: 24px; border-right: 2px solid #000; }
.triptych-cell:last-child { border-right: none; }
.t-lbl { font-family: monospace; font-size: 0.75rem; font-weight: 800; color: #64748b; margin-bottom: 8px; display: block; }
.bold-stat-num { font-size: 2.2rem; font-weight: 900; color: #000; }
.bold-stat-sub { font-size: 0.85rem; color: #64748b; }
.triptych-action { display: flex; flex-direction: column; justify-content: space-between; }
.section-bold-services { padding: 64px 0; }
.bold-sec-title { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.5px; border-bottom: 2px solid #000; padding-bottom: 16px; }
.bold-service-row { display: grid; grid-template-columns: 80px 1fr 180px; align-items: center; padding: 28px 0; border-bottom: 1px solid #e2e8f0; gap: 24px; }
.bold-num { font-size: 2.8rem; font-weight: 900; color: var(--primary); }
.bold-service-info h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 6px; }
.bold-service-info p { color: var(--text-muted); font-size: 0.95rem; }
.bold-cta-strip { background: #000; color: #fff; padding: 60px 0; }
.bold-cta-strip h2 { font-size: 2.4rem; font-weight: 900; margin-bottom: 12px; }

/* -----------------------------------------------------------
   ARCHETYPE 4: SERVICE LEADGEN CSS
----------------------------------------------------------- */
.header-leadgen { border-bottom: 1px solid var(--border-color); }
.header-call-pill { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; background: var(--bg-light); padding: 6px 14px; border-radius: 20px; }
.pulse-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; display: inline-block; }
.hero-leadgen { padding: 56px 0; background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%); }
.hero-leadgen-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.leadgen-alert-badge { display: inline-block; font-size: 0.8rem; font-weight: 700; background: #dcfce7; color: #166534; padding: 4px 12px; border-radius: 4px; margin-bottom: 16px; }
.leadgen-h1 { font-size: 2.5rem; font-weight: 800; color: var(--dark); line-height: 1.18; margin-bottom: 16px; }
.leadgen-sub { font-size: 1.08rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.leadgen-badges-row { display: flex; flex-wrap: wrap; gap: 10px; }
.lg-badge { font-size: 0.82rem; font-weight: 600; background: #fff; border: 1px solid var(--border-color); padding: 4px 10px; border-radius: 4px; }
.calc-widget { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 28px; box-shadow: var(--shadow-lg); }
.calc-header { margin-bottom: 16px; border-bottom: 1px solid var(--border-color); padding-bottom: 12px; }
.calc-header h3 { font-size: 1.2rem; font-weight: 700; }
.calc-header span { font-size: 0.8rem; color: var(--text-muted); }
.calc-output { background: var(--bg-light); border: 1px dashed var(--primary); padding: 12px; border-radius: 6px; margin-top: 14px; font-size: 0.88rem; color: var(--dark); font-weight: 500; }
.roadmap-section { padding: 60px 0; }
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.roadmap-step { background: #fff; border: 1px solid var(--border-color); padding: 24px; border-radius: 8px; position: relative; }
.step-num { width: 36px; height: 36px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 14px; }
.price-hint { font-size: 0.75rem; font-weight: 700; background: var(--badge-bg); color: var(--badge-color); padding: 3px 8px; border-radius: 4px; }

/* -----------------------------------------------------------
   ARCHETYPE 5: SWISS MINIMAL CSS
----------------------------------------------------------- */
.hero-swiss { padding: 80px 0; background: #ffffff; }
.hero-swiss-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 56px; align-items: start; }
.swiss-kicker { font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; display: block; }
.swiss-h1 { font-size: 2.9rem; font-weight: 700; line-height: 1.15; letter-spacing: -1px; margin-bottom: 24px; color: var(--dark); }
.swiss-lead { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.swiss-link { font-weight: 700; font-size: 1rem; color: var(--primary); border-bottom: 2px solid var(--primary); padding-bottom: 2px; }
.swiss-spec-card { border: 1px solid #e2e8f0; padding: 28px; }
.spec-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #f1f5f9; font-size: 0.88rem; }
.spec-k { color: #64748b; font-weight: 500; }
.spec-v { font-weight: 700; color: #0f172a; text-align: right; }
.swiss-alt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 56px 0; border-top: 1px solid #e2e8f0; align-items: center; }
.row-reversed { direction: rtl; }
.row-reversed > * { direction: ltr; }
.swiss-num { font-size: 1.5rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 8px; }
.spec-box { background: var(--bg-light); padding: 24px; border-radius: 4px; }
.swiss-quote { font-size: 1.4rem; font-weight: 500; font-style: italic; line-height: 1.6; color: var(--dark); margin-bottom: 16px; }
.swiss-quote-author { font-size: 0.9rem; color: var(--text-muted); }

/* -----------------------------------------------------------
   ARCHETYPE 6: CONSULTING CARDS CSS
----------------------------------------------------------- */
.header-consulting { border-bottom: 2px solid #0f172a; background: #ffffff; }
.brand-crest { font-size: 1.5rem; margin-right: 8px; }
.header-cert-badge { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; background: #f8fafc; border: 1px solid #cbd5e1; padding: 4px 10px; border-radius: 4px; color: #334155; }
.btn-consulting { background: #0f172a; color: #f8fafc; font-weight: 700; font-size: 0.88rem; padding: 10px 18px; border-radius: 4px; }
.btn-consulting:hover { background: #1e293b; color: #ffffff; }
.hero-consulting { background: #0b1329; color: #f8fafc; padding: 80px 0; border-bottom: 3px solid #d97706; }
.hero-consulting-wrap { max-width: 860px; margin: 0 auto; text-align: center; }
.consulting-badge { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; color: #f59e0b; background: rgba(245,158,11,0.12); padding: 6px 14px; border-radius: 4px; margin-bottom: 20px; border: 1px solid rgba(245,158,11,0.3); }
.hero-consulting-title { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: #ffffff; }
.hero-consulting-sub { font-size: 1.2rem; color: #cbd5e1; line-height: 1.7; margin-bottom: 32px; }
.consulting-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-gold { background: #d97706; color: #ffffff; font-weight: 700; padding: 14px 28px; border-radius: 4px; }
.btn-gold:hover { background: #b45309; color: #fff; }
.btn-outline-light { border: 1px solid #64748b; color: #f8fafc; font-weight: 600; padding: 14px 28px; border-radius: 4px; }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); color: #fff; }
.section-horizons { padding: 72px 0; }
.horizons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.horizon-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 32px 24px; position: relative; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.horizon-highlight { border-top: 4px solid #d97706; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); }
.horizon-tag { font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; color: #64748b; background: #f1f5f9; padding: 3px 8px; border-radius: 4px; display: inline-block; margin-bottom: 16px; }
.horizon-tag-active { color: #b45309; background: #fef3c7; }
.horizon-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: #0f172a; }
.horizon-card p { font-size: 0.92rem; color: #475569; line-height: 1.6; margin-bottom: 20px; }
.horizon-list { list-style: none; border-top: 1px solid #f1f5f9; padding-top: 16px; }
.horizon-list li { font-size: 0.88rem; color: #334155; margin-bottom: 8px; font-weight: 500; }
.ledger-table-wrap { overflow-x: auto; background: #ffffff; border: 1px solid #cbd5e1; border-radius: 8px; margin-top: 32px; }
.ledger-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.92rem; }
.ledger-table th { background: #f8fafc; padding: 14px 18px; font-weight: 700; color: #334155; border-bottom: 1px solid #cbd5e1; }
.ledger-table td { padding: 14px 18px; border-bottom: 1px solid #e2e8f0; color: #475569; }
.status-pill-green { background: #dcfce7; color: #166534; font-weight: 700; font-size: 0.82rem; padding: 3px 8px; border-radius: 4px; }
.card-consulting { border-left: 3px solid #0f172a; }

/* -----------------------------------------------------------
   ARCHETYPE 7: STARTUP GLOW CSS
----------------------------------------------------------- */
.header-glass { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); background: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(226,232,240,0.8); position: sticky; top: 0; z-index: 100; }
.brand-dot-glow { width: 10px; height: 10px; background: #06b6d4; border-radius: 50%; display: inline-block; box-shadow: 0 0 10px #06b6d4; margin-right: 8px; }
.tech-version-pill { font-size: 0.7rem; background: #e0f2fe; color: #0284c7; padding: 2px 6px; border-radius: 99px; font-weight: 700; margin-left: 6px; }
.btn-glow { background: linear-gradient(135deg, var(--primary), #3b82f6); color: #fff; font-weight: 700; border-radius: 99px; padding: 10px 20px; box-shadow: 0 4px 14px rgba(59,130,246,0.3); }
.hero-startup { padding: 80px 0; background: radial-gradient(circle at top right, rgba(59,130,246,0.08), transparent 60%); }
.hero-startup-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.glow-kicker { font-size: 0.82rem; font-weight: 800; letter-spacing: 1px; color: var(--primary); margin-bottom: 16px; }
.hero-startup-title { font-size: 2.85rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: var(--dark); }
.hero-startup-sub { font-size: 1.12rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.hero-actions-row { display: flex; gap: 14px; margin-bottom: 28px; }
.startup-sla-strip { display: flex; gap: 20px; font-size: 0.88rem; color: #64748b; background: #f8fafc; border: 1px solid #e2e8f0; padding: 10px 16px; border-radius: 8px; display: inline-flex; }
.terminal-box { background: #0f172a; border-radius: 10px; border: 1px solid #334155; box-shadow: 0 20px 40px rgba(0,0,0,0.25); overflow: hidden; font-family: monospace; font-size: 0.82rem; color: #cbd5e1; }
.terminal-bar { background: #1e293b; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #334155; }
.terminal-dots { display: flex; gap: 6px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.t-red { background: #ef4444; }
.t-yellow { background: #f59e0b; }
.t-green { background: #10b981; }
.terminal-title { font-size: 0.75rem; color: #94a3b8; }
.terminal-body { padding: 18px; line-height: 1.8; }
.term-time { color: #64748b; margin-right: 6px; }
.term-info { color: #38bdf8; font-weight: 700; }
.term-success { color: #4ade80; font-weight: 700; }
.term-auth { color: #facc15; font-weight: 700; }
.term-pulse { color: #06b6d4; font-weight: 800; animation: blink 1s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.section-tabs-glow { padding: 64px 0; }
.tab-controls-wrap { display: flex; justify-content: center; margin-bottom: 36px; }
.tab-pills { display: inline-flex; background: #f1f5f9; padding: 4px; border-radius: 99px; gap: 4px; }
.tab-btn { background: none; border: none; padding: 10px 22px; font-weight: 700; font-size: 0.88rem; color: #475569; border-radius: 99px; cursor: pointer; transition: all 0.2s; }
.tab-btn.active { background: #ffffff; color: var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.card-glow { border: 1px solid #e2e8f0; position: relative; overflow: hidden; }
.card-glow:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgba(59,130,246,0.12); }
.card-metric { display: inline-block; font-size: 0.78rem; font-weight: 800; color: #0284c7; background: #e0f2fe; padding: 4px 8px; border-radius: 4px; margin-top: 14px; }

/* -----------------------------------------------------------
   ARCHETYPE 8: PORTAL DIRECTORY CSS
----------------------------------------------------------- */
.header-portal { background: #ffffff; border-bottom: 2px solid #cbd5e1; }
.portal-top-bar { background: #f1f5f9; border-bottom: 1px solid #e2e8f0; padding: 6px 0; font-size: 0.8rem; color: #475569; }
.portal-top-inner { display: flex; justify-content: space-between; align-items: center; }
.portal-main-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }
.portal-search-mockup { display: flex; align-items: center; background: #f8fafc; border: 1px solid #cbd5e1; border-radius: 4px; padding: 6px 12px; width: 380px; }
.portal-search-input { border: none; background: transparent; width: 100%; font-size: 0.85rem; outline: none; margin-left: 8px; }
.btn-portal { background: #1e293b; color: #ffffff; font-weight: 700; font-size: 0.85rem; padding: 8px 16px; border-radius: 4px; }
.portal-hero { background: #f8fafc; border-bottom: 1px solid #e2e8f0; padding: 24px 0; }
.portal-notice-banner { background: #eff6ff; border-left: 4px solid #3b82f6; padding: 12px 16px; border-radius: 4px; font-size: 0.9rem; color: #1e3a8a; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.notice-badge { background: #3b82f6; color: #fff; font-size: 0.72rem; font-weight: 800; padding: 2px 6px; border-radius: 3px; }
.portal-chips-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.chip-label { font-size: 0.82rem; font-weight: 700; color: #64748b; }
.portal-chip { font-size: 0.82rem; font-weight: 600; color: #334155; background: #ffffff; border: 1px solid #cbd5e1; padding: 4px 12px; border-radius: 99px; text-decoration: none; }
.portal-chip:hover { border-color: #3b82f6; color: #3b82f6; }
.portal-grid-layout { display: grid; grid-template-columns: 320px 1fr; gap: 36px; }
.portal-sidebar .sidebar-box { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 6px; padding: 20px; margin-bottom: 20px; }
.sidebar-box-highlight { background: #f8fafc !important; border-top: 3px solid var(--primary) !important; }
.sidebar-title { font-size: 1rem; font-weight: 700; margin-bottom: 14px; border-bottom: 1px solid #f1f5f9; padding-bottom: 8px; color: #0f172a; }
.sidebar-info-list { list-style: none; font-size: 0.85rem; line-height: 1.8; color: #475569; }
.sidebar-doc-list { list-style: none; font-size: 0.85rem; line-height: 2; color: #1e293b; }
.doc-size { font-size: 0.75rem; color: #94a3b8; }
.portal-content-heading { font-size: 1.5rem; font-weight: 800; margin-bottom: 24px; color: #0f172a; }
.dockets-list { display: flex; flex-direction: column; gap: 18px; }
.docket-card { background: #ffffff; border: 1px solid #cbd5e1; border-radius: 6px; padding: 24px; position: relative; }
.docket-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.docket-code { font-size: 0.75rem; font-weight: 800; background: #f1f5f9; color: #475569; padding: 2px 8px; border-radius: 4px; }
.docket-time { font-size: 0.8rem; font-weight: 600; color: #059669; }
.docket-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: #0f172a; }
.docket-desc { font-size: 0.92rem; color: #475569; line-height: 1.6; margin-bottom: 16px; }
.docket-meta { display: flex; gap: 20px; font-size: 0.82rem; color: #64748b; border-top: 1px solid #f1f5f9; padding-top: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.docket-actions { display: flex; gap: 10px; justify-content: flex-end; }
.portal-accordion { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.faq-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 6px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 18px 20px; font-weight: 700; font-size: 1rem; color: #0f172a; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding: 0 20px 18px; font-size: 0.95rem; color: #475569; line-height: 1.6; }

/* -----------------------------------------------------------
   ARCHETYPE 9: SPLIT SHOWCASE CSS
----------------------------------------------------------- */
.header-split { border-bottom: 1px solid var(--border-color); background: #ffffff; }
.btn-split { background: var(--dark); color: #ffffff; font-weight: 700; font-size: 0.88rem; padding: 10px 18px; border-radius: 4px; }
.hero-split-50 { display: flex; min-height: 520px; padding: 0; background: #ffffff; }
.split-col { width: 50%; display: flex; align-items: center; }
.split-col-left { background: var(--primary); color: #ffffff; padding: 60px 48px; }
.split-left-inner { max-width: 540px; margin-left: auto; }
.split-tag { font-size: 0.78rem; font-weight: 800; letter-spacing: 1px; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.split-hero-title { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 18px; color: #ffffff; }
.split-hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 28px; }
.split-actions { display: flex; gap: 14px; margin-bottom: 24px; }
.btn-light-solid { background: #ffffff; color: var(--primary); font-weight: 700; padding: 12px 24px; border-radius: 4px; }
.btn-outline-white { border: 1px solid rgba(255,255,255,0.4); color: #ffffff; font-weight: 600; padding: 12px 24px; border-radius: 4px; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.split-badges { display: flex; gap: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.8); }
.split-col-right { background: #f8fafc; padding: 60px 48px; }
.split-right-inner { max-width: 540px; margin-right: auto; width: 100%; }
.benchmark-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 28px; box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
.benchmark-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; color: #0f172a; }
.benchmark-sub { font-size: 0.88rem; color: #64748b; margin-bottom: 20px; }
.benchmark-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; text-align: left; }
.benchmark-table th { padding: 10px 12px; border-bottom: 2px solid #e2e8f0; font-weight: 700; color: #334155; }
.benchmark-table td { padding: 12px; border-bottom: 1px solid #f1f5f9; }
.col-highlight { color: var(--primary); font-weight: 800; }
.text-dim { color: #94a3b8; }
.text-win { color: #0f172a; }
.section-tabbed-deck { padding: 64px 0; }
.deck-tabs-wrap { display: flex; justify-content: center; margin-bottom: 36px; }
.deck-tabs { display: inline-flex; border-bottom: 2px solid #e2e8f0; gap: 24px; }
.deck-tab-btn { background: none; border: none; border-bottom: 3px solid transparent; padding: 12px 6px; font-weight: 700; font-size: 0.95rem; color: #64748b; cursor: pointer; margin-bottom: -2px; }
.deck-tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

/* -----------------------------------------------------------
   ARCHETYPE 10: NORDIC CLEAN CSS
----------------------------------------------------------- */
.header-nordic { padding: 24px 0; border-bottom: 1px solid #f1f5f9; background: #ffffff; }
.nordic-title { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.5px; color: #1e293b; }
.nav-menu-nordic a { color: #475569; font-weight: 500; font-size: 0.92rem; }
.btn-nordic { border: 1px solid #cbd5e1; color: #1e293b; font-weight: 600; font-size: 0.85rem; padding: 8px 18px; border-radius: 99px; }
.btn-nordic:hover { border-color: #0f172a; color: #0f172a; }
.hero-nordic { padding: 110px 0 80px; background: #ffffff; }
.nordic-pill { font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #64748b; background: #f8fafc; border: 1px solid #e2e8f0; padding: 6px 16px; border-radius: 99px; display: inline-block; margin-bottom: 24px; }
.hero-nordic-title { font-size: 3.2rem; font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; color: #0f172a; margin-bottom: 24px; }
.hero-nordic-sub { font-size: 1.25rem; color: #64748b; line-height: 1.8; margin-bottom: 36px; max-width: 680px; margin-left: auto; margin-right: auto; }
.hero-nordic-actions { display: flex; gap: 14px; justify-content: center; }
.nordic-stats-section { border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; padding: 36px 0; background: #fafafa; }
.nordic-stats-row { display: flex; justify-content: space-around; align-items: center; }
.nordic-stat-item { text-align: center; }
.nordic-stat-val { font-size: 2.2rem; font-weight: 800; color: #0f172a; display: block; margin-bottom: 4px; }
.nordic-stat-label { font-size: 0.82rem; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.nordic-stat-sep { width: 1px; height: 40px; background: #e2e8f0; }
.section-nordic-story { padding: 80px 0; }
.nordic-quote-box { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 48px; text-align: center; }
.nordic-blockquote { font-size: 1.35rem; font-style: italic; line-height: 1.8; color: #1e293b; margin-bottom: 24px; }
.nordic-quote-cite { font-size: 0.9rem; color: #64748b; }
.card-nordic { border: 1px solid #f1f5f9; box-shadow: none; }
.card-nordic:hover { border-color: #cbd5e1; transform: none; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }

@media (max-width: 900px) {
  .hero-startup-grid, .hero-enterprise-grid, .hero-swiss-grid, .portal-grid-layout { grid-template-columns: 1fr; }
  .hero-split-50 { flex-direction: column; }
  .split-col { width: 100%; }
  .nordic-stats-row { flex-direction: column; gap: 24px; }
  .nordic-stat-sep { display: none; }
}

/* Common Inner Pages & Cards */
.page-header { background: var(--bg-light); padding: 48px 0; border-bottom: 1px solid var(--border-color); margin-bottom: 40px; }
.page-header h1 { font-size: 2.2rem; font-weight: 800; color: var(--dark); }
.breadcrumbs { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }
.page-body { font-size: 1.05rem; line-height: 1.8; }
.page-body h2 { font-size: 1.6rem; font-weight: 700; margin: 32px 0 16px; color: var(--dark); }
.page-body h3 { font-size: 1.3rem; font-weight: 600; margin: 24px 0 12px; color: var(--dark); }
.page-body p { margin-bottom: 16px; }
.max-w-4xl { max-width: 860px; margin: 0 auto; }
.my-6 { margin-top: 24px; margin-bottom: 24px; }
.my-8 { margin-top: 32px; margin-bottom: 32px; }

.section { padding: 64px 0; }
.section-alt { background: var(--bg-light); }
.section-header { margin-bottom: 36px; }
.text-center { text-align: center; }
.section-title { font-size: 2rem; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.card-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.card-link { font-weight: 700; font-size: 0.9rem; color: var(--primary); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: #334155; }
.form-control {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--primary); }
.alert-success { background: #dcfce7; color: #166534; padding: 14px; border-radius: var(--radius-sm); font-weight: 500; font-size: 0.9rem; }

.site-footer { background: #0f172a; color: #cbd5e1; padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-col .brand-logo { color: #ffffff; margin-bottom: 12px; }
.footer-desc { font-size: 0.88rem; line-height: 1.6; margin-bottom: 12px; }
.footer-tax { font-size: 0.85rem; color: #e2e8f0; }
.footer-reg { font-size: 0.8rem; color: #94a3b8; }
.footer-heading { color: #ffffff; font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; font-size: 0.88rem; }
.footer-links a { color: #94a3b8; }
.footer-links a:hover { color: #ffffff; }
.footer-info { font-size: 0.85rem; line-height: 1.6; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 24px 0; font-size: 0.82rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.legal-links a { color: #94a3b8; margin-left: 16px; }
.legal-links a:hover { color: #ffffff; }

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 580px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 999;
}
.cookie-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.cookie-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }
.cookie-actions { display: flex; gap: 8px; shrink: 0; }

@media (max-width: 900px) {
  .hero-enterprise-grid, .hero-leadgen-grid, .hero-swiss-grid, .contact-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2 { grid-column: span 1; }
  .bold-triptych { grid-template-columns: 1fr; }
  .triptych-cell { border-right: none; border-bottom: 2px solid #000; }
  .bold-service-row { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: 1fr 1fr; }
  .swiss-alt-row { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .menu-toggle { display: flex; }
  .main-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border-color); padding: 20px; box-shadow: var(--shadow-md); }
  .main-nav.is-open { display: block; }
  .nav-menu { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
