
:root {
  --titan-bg-main: #0B0D11;
  --titan-bg-card: #14181F;
  --titan-bg-card-hover: #1A202A;
  --titan-bg-hero: #0F1217;
  --titan-bg-sub: #161B23;
  --titan-text-main: #E6EDF3;
  --titan-text-muted: #8B949E;
  --titan-text-dim: #545D68;
  --titan-gold: #E5A93C;
  --titan-gold-hover: #CCA529;
  --titan-gold-bg: rgba(229, 169, 60, 0.12);
  --titan-cyan: #38BDF8;
  --titan-green: #22C55E;
  --titan-border: rgba(255, 255, 255, 0.08);
  --titan-border-focus: rgba(229, 169, 60, 0.35);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-main: 0 4px 14px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 4px 16px rgba(229, 169, 60, 0.25);
  --font-heading: 'Chakra Petch', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--titan-bg-main);
  color: var(--titan-text-main);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .titan-name, .btn-titan-primary, .btn-titan-download, .btn-titan-search {
  font-family: var(--font-heading);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.shell {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}

.titan-nav-header {
  background-color: var(--titan-bg-hero);
  border-bottom: 1px solid var(--titan-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-titan-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.titan-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-titan-shield {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--titan-gold), #B47818);
  color: #000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 2px 10px rgba(229, 169, 60, 0.3);
}

.brand-titan-text {
  display: flex;
  flex-direction: column;
}

.titan-name {
  color: #FFF;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.titan-sub {
  color: var(--titan-gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.titan-desk-nav {
  display: none;
  gap: 22px;
}

.titan-menu-item {
  color: var(--titan-text-muted);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.15s;
}

.titan-menu-item:hover, .titan-menu-item.active {
  color: var(--titan-gold);
}

.titan-menu-item.gold-burn {
  color: #FCD34D;
}

.titan-nav-security {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: var(--titan-green);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.titan-dot {
  width: 8px;
  height: 8px;
  background: var(--titan-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--titan-green);
}

.titan-category-slider {
  background-color: var(--titan-bg-sub);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  border-bottom: 1px solid var(--titan-border);
}

.titan-category-slider::-webkit-scrollbar {
  display: none;
}

.slider-wrap {
  display: flex;
  gap: 10px;
  padding: 8px 16px;
}

.slider-item {
  color: var(--titan-text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.slider-item.active, .slider-item:hover {
  background: var(--titan-gold);
  color: #000;
  font-weight: 700;
}

.titan-hero-jumbo {
  background: radial-gradient(circle at top right, #1F2733, var(--titan-bg-hero));
  padding: 24px 0 34px;
  border-bottom: 1px solid var(--titan-border);
}

.jumbo-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jumbo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--titan-border);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #CBD5E1;
  margin-bottom: 12px;
}

.pill-radar-dot {
  width: 8px;
  height: 8px;
  background: var(--titan-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--titan-gold);
}

.jumbo-h1 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.jumbo-p {
  color: var(--titan-text-muted);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.5;
}

.titan-search-box {
  display: flex;
  align-items: center;
  background: #181D26;
  border: 1px solid var(--titan-border);
  border-radius: var(--radius-sm);
  padding: 5px;
  box-shadow: var(--shadow-main);
}

.search-symbol {
  padding: 0 10px;
  font-size: 16px;
}

.titan-search-box input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: #FFF;
}

.btn-titan-search {
  background: var(--titan-gold);
  color: #000;
  border: none;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: var(--radius-xs);
  cursor: pointer;
}

.titan-hero-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--titan-border);
  border-radius: var(--radius-md);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.hero-titan-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--titan-gold);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.hero-titan-layout {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-titan-ico {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  overflow: hidden;
  background: #181D26;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.hero-titan-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.hero-titan-specs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
}

.titan-gold-stars {
  color: var(--titan-gold);
}

.titan-score {
  font-weight: 700;
}

.titan-tag-clean {
  background: rgba(34, 197, 94, 0.15);
  color: var(--titan-green);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.hero-titan-desc {
  color: var(--titan-text-muted);
  font-size: 13px;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-titan-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-titan-primary {
  background: var(--titan-gold);
  color: #000;
  font-weight: 800;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-xs);
  font-size: 14px;
  box-shadow: var(--shadow-gold);
}

.btn-titan-secondary {
  border: 1px solid var(--titan-border);
  color: #FFF;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 600;
}

.titan-workspace {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 24px;
  padding-bottom: 40px;
}

.titan-main-flow {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-titan-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.section-titan-h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.section-titan-p {
  color: var(--titan-text-dim);
  font-size: 12px;
  margin-top: 2px;
}

.section-titan-more {
  color: var(--titan-gold);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.titan-grid-stream {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.titan-cell-card {
  background: var(--titan-bg-card);
  border: 1px solid var(--titan-border);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-main);
  gap: 12px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.titan-cell-card:active {
  transform: scale(0.99);
}

.cell-click-layer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.cell-ico-frame {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: #181D26;
  flex-shrink: 0;
}

.ico-titan-txt {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1C232E, #0F131A);
  color: var(--titan-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.cell-info-stack {
  flex: 1;
  min-width: 0;
}

.cell-app-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cell-meta-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  margin-bottom: 2px;
}

.meta-star {
  color: var(--titan-gold);
  font-weight: 700;
}

.meta-div {
  color: var(--titan-text-dim);
}

.meta-size {
  color: var(--titan-text-muted);
}

.meta-shield {
  color: var(--titan-green);
  font-weight: 700;
}

.cell-app-desc {
  font-size: 12px;
  color: var(--titan-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cell-btn-dock {
  flex-shrink: 0;
}

.btn-cell-direct {
  background: var(--titan-gold-bg);
  color: var(--titan-gold);
  border: 1px solid rgba(229, 169, 60, 0.3);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.titan-guide-module {
  background: linear-gradient(135deg, #181D26, #10131A);
  border: 1px solid var(--titan-border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-titan-left h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.guide-titan-left p {
  color: var(--titan-text-muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.titan-steps-cluster {
  display: flex;
  gap: 6px;
}

.t-step {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.t-step span {
  background: var(--titan-gold);
  color: #000;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
}

.btn-titan-guide {
  background: var(--titan-gold);
  color: #000;
  font-weight: 800;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-xs);
  font-size: 13px;
}

.titan-side-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.titan-widget-card {
  background: var(--titan-bg-card);
  border: 1px solid var(--titan-border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-main);
}

.widget-titan-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--titan-border);
  padding-bottom: 8px;
}

.titan-rank-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.titan-rank-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-xs);
  transition: background 0.15s ease;
}

.titan-rank-item:hover {
  background: var(--titan-bg-card-hover);
}

.rank-titan-badge {
  font-size: 13px;
  font-weight: 800;
  color: var(--titan-text-dim);
  min-width: 20px;
  text-align: center;
}

.rank-titan-badge.rank-1 { color: var(--titan-gold); }
.rank-titan-badge.rank-2 { color: #CBD5E1; }
.rank-titan-badge.rank-3 { color: #CD7F32; }

.rank-titan-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  background: #181D26;
  flex-shrink: 0;
}

.rank-titan-meta {
  flex: 1;
  overflow: hidden;
}

.rank-titan-name {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #FFF;
}

.rank-titan-sub {
  font-size: 11px;
  color: var(--titan-text-dim);
}

.rank-titan-pill {
  font-size: 11px;
  font-weight: 700;
  color: var(--titan-gold);
  background: var(--titan-gold-bg);
  padding: 4px 8px;
  border-radius: 6px;
}

.titan-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.titan-tag {
  background: #181D26;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
  color: var(--titan-text-muted);
}

.titan-cat-jumbo {
  background: var(--titan-bg-hero);
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--titan-border);
}

.breadcrumb {
  font-size: 12px;
  color: var(--titan-text-dim);
  margin-bottom: 8px;
}

.breadcrumb a {
  color: var(--titan-text-muted);
}

.cat-titan-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.cat-titan-desc {
  font-size: 13px;
  color: var(--titan-text-muted);
  margin-bottom: 12px;
}

.cat-titan-alert {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--titan-border);
  border-radius: var(--radius-xs);
  padding: 8px 12px;
  font-size: 12px;
  color: #CBD5E1;
  display: flex;
  gap: 8px;
}

.titan-cat-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.titan-cat-link {
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  background: #181D26;
  font-size: 13px;
  font-weight: 600;
}

.titan-cat-link:hover {
  background: var(--titan-gold);
  color: #000;
}

.titan-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.t-page-btn {
  background: var(--titan-bg-card);
  border: 1px solid var(--titan-border);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  font-weight: 700;
  font-size: 13px;
}

.t-page-btn.current {
  background: var(--titan-gold);
  border-color: var(--titan-gold);
  color: #000;
}

.detail-titan-hero {
  background: var(--titan-bg-hero);
  padding: 20px 0 28px;
  border-bottom: 1px solid var(--titan-border);
}

.detail-titan-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.detail-titan-avatar {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  background: #181D26;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.detail-titan-h1 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.detail-titan-meta {
  font-size: 13px;
  color: var(--titan-text-dim);
  margin-bottom: 12px;
}

.badge-titan-clean {
  color: var(--titan-green);
  background: rgba(34, 197, 94, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
}

.detail-titan-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 16px;
}

.spec-titan-pill {
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 6px;
  color: #CBD5E1;
}

.detail-titan-cta {
  display: flex;
  gap: 10px;
}

.btn-titan-download {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--titan-gold);
  color: #000;
  font-weight: 800;
  padding: 14px;
  border-radius: var(--radius-xs);
  font-size: 15px;
  box-shadow: var(--shadow-gold);
}

.btn-titan-sub {
  background: rgba(255, 255, 255, 0.06);
  color: #FFF;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius-xs);
  font-size: 13px;
}

.titan-audit-strip {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tas-icon {
  font-size: 26px;
}

.tas-info strong {
  color: var(--titan-green);
  font-size: 14px;
  display: block;
}

.tas-info p {
  color: #A7F3D0;
  font-size: 12px;
  margin: 0;
}

.titan-panel {
  background: var(--titan-bg-card);
  border: 1px solid var(--titan-border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-main);
}

.titan-panel-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--titan-border);
  padding-bottom: 8px;
}

.titan-panel-content {
  font-size: 14px;
  line-height: 1.65;
  color: #CBD5E1;
}

.titan-panel-content p {
  margin-bottom: 12px;
}

.titan-table-container {
  overflow-x: auto;
}

.titan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.titan-table th, .titan-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--titan-border);
  text-align: left;
}

.titan-table th {
  color: var(--titan-text-dim);
  width: 35%;
  font-weight: 600;
}

.titan-table td {
  font-weight: 600;
  color: #FFF;
}

.titan-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.titan-step-box {
  background: #181D26;
  border-radius: var(--radius-xs);
  padding: 14px;
}

.step-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--titan-text-dim);
  display: block;
}

.titan-step-box h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.titan-step-box p {
  font-size: 12px;
  color: var(--titan-text-muted);
}

.titan-faq-stream {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.titan-faq-card {
  border: 1px solid var(--titan-border);
  border-radius: var(--radius-xs);
  padding: 10px 14px;
}

.titan-faq-card summary {
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.titan-faq-card p {
  font-size: 12px;
  color: var(--titan-text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

.simple-page-space {
  padding-top: 24px;
  padding-bottom: 40px;
}

.simple-titan-article h1 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.titan-lead {
  color: var(--titan-text-muted);
  font-size: 14px;
}

.titan-sep {
  border: 0;
  height: 1px;
  background: var(--titan-border);
  margin: 16px 0;
}

.simple-titan-article h2 {
  font-size: 16px;
  margin: 16px 0 8px;
}

.simple-titan-article p, .simple-titan-article li {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.6;
}

.simple-titan-article ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.titan-form-unit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.titan-form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.titan-field {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--titan-border);
  background: #181D26;
  color: #FFF;
  font-family: inherit;
  font-size: 13px;
}

.titan-field.area {
  min-height: 110px;
  resize: vertical;
}

.btn-titan-submit {
  background: var(--titan-gold);
  color: #000;
  border: none;
  font-weight: 800;
  padding: 12px;
  border-radius: var(--radius-xs);
  cursor: pointer;
}

.titan-footer {
  background: #080A0E;
  color: var(--titan-text-muted);
  padding: 36px 0 0;
  border-top: 1px solid var(--titan-border);
}

.footer-core-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 28px;
}

.footer-manifesto {
  font-size: 12px;
  line-height: 1.6;
  margin: 12px 0 14px;
}

.titan-cert-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.titan-cert {
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  color: #CBD5E1;
}

.f-col-heading {
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-col a {
  font-size: 13px;
  color: var(--titan-text-dim);
}

.footer-links-col a:hover {
  color: var(--titan-gold);
}

.footer-sub-floor {
  background: #050709;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.floor-flex p {
  font-size: 11px;
  line-height: 1.5;
  color: var(--titan-text-dim);
}

.floor-copy {
  margin-top: 6px;
}

@media (min-width: 640px) {
  .titan-form-row {
    flex-direction: row;
  }
}

@media (min-width: 900px) {
  .titan-desk-nav {
    display: flex;
  }
  .jumbo-grid {
    flex-direction: row;
    align-items: center;
  }
  .jumbo-left {
    flex: 1.1;
  }
  .titan-hero-panel {
    flex: 0.9;
  }
  .jumbo-h1 {
    font-size: 34px;
  }
  .hero-titan-layout {
    flex-direction: row;
  }
  .hero-titan-buttons {
    flex-direction: row;
  }
  .titan-workspace {
    flex-direction: row;
    gap: 30px;
  }
  .titan-main-flow {
    flex: 1;
  }
  .titan-side-flow {
    width: 320px;
    flex-shrink: 0;
  }
  .sticky-card {
    position: sticky;
    top: 80px;
  }
  .titan-grid-stream {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .titan-steps-grid {
    flex-direction: row;
  }
  .titan-step-box {
    flex: 1;
  }
  .detail-titan-card {
    flex-direction: row;
    align-items: center;
  }
  .detail-titan-avatar {
    width: 104px;
    height: 104px;
  }
  .detail-titan-h1 {
    font-size: 28px;
  }
  .detail-titan-cta {
    max-width: 380px;
  }
  .footer-core-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
}
