@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@300;400&display=swap');

:root {
  --ink:    #0d0c0b;
  --paper:  #13120f;
  --vellum: #1c1a16;
  --parch:  #252218;
  --gold:   #c9a96e;
  --gold2:  #e8c98a;
  --ash:    #6b6456;
  --smoke:  #3a342b;
  --cream:  #f0e8d8;
  --dim:    #8a7f72;
  --danger: #b85050;
  --ok:     #4a7c5f;
  --glow:   rgba(201,169,110,.12);
  --glow2:  rgba(201,169,110,.06);
  --shadow: 0 24px 60px rgba(0,0,0,.5);
  --r:      20px;
}

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

body.time-confessions-theme {
  background: var(--ink);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── HEADER ─────────────────────────────────────────── */
.tc-site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(201,169,110,.1);
  background: rgba(13,12,11,.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.tc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 36px;
  gap: 24px;
}
.tc-brand a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.tc-brand a::after {
  content: '·';
  color: var(--gold);
  font-size: 28px;
  line-height: 0;
  position: relative;
  top: 4px;
}
.tc-brand small { display: none; }
.tc-menu, .tc-site-nav ul {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.tc-site-nav a {
  font-size: 13px; font-weight: 400; letter-spacing: .08em;
  text-transform: uppercase; color: var(--dim); transition: color .2s;
}
.tc-site-nav a:hover { color: var(--gold); }

/* ── LAYOUT ─────────────────────────────────────────── */
.site-content { min-height: 100vh; }
.tc-container { max-width: 1140px; margin: 0 auto; padding: 0 36px; }
.tc-home { padding-top: 80px; }

/* ── HERO ────────────────────────────────────────────── */
.tc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.tc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 10% 50%, rgba(201,169,110,.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 85% 15%, rgba(201,169,110,.04) 0%, transparent 60%);
  pointer-events: none;
}
.tc-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px; opacity: .5; pointer-events: none;
}
.tc-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%; max-width: 1140px;
  margin: 0 auto; padding: 0 36px;
}
.tc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 300; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.tc-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold); opacity: .7;
}
.tc-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 500; line-height: 1.04; letter-spacing: -.02em;
  color: var(--cream); margin-bottom: 28px;
}
.tc-hero h1 em { font-style: italic; color: var(--gold); }
.tc-hero-desc {
  font-size: 18px; color: var(--dim); line-height: 1.75;
  max-width: 440px; margin-bottom: 36px; font-weight: 300;
}
.tc-hero-micro {
  margin-top: 14px; font-size: 12px; color: var(--ash);
  font-family: 'DM Mono', monospace; letter-spacing: .06em;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.tc-button {
  appearance: none; border: none; border-radius: 999px;
  padding: 13px 26px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: .04em; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .22s ease; white-space: nowrap;
}
.tc-button-lg { padding: 16px 34px; font-size: 15px; }
.tc-button-primary { background: var(--gold); color: var(--ink); }
.tc-button-primary:hover {
  background: var(--gold2); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,169,110,.35);
}
.tc-button-secondary {
  background: transparent; color: var(--cream);
  border: 1px solid var(--smoke);
}
.tc-button-secondary:hover { border-color: var(--gold); color: var(--gold); }
.tc-button-soft {
  background: var(--parch); color: var(--dim); border: 1px solid var(--smoke);
}
.tc-button-soft:hover { color: var(--cream); border-color: var(--ash); }
.tc-button-ghost {
  background: transparent; color: var(--ash);
  border: 1px solid transparent; font-size: 12px; padding: 13px 16px;
}
.tc-button-ghost:hover { color: var(--dim); }

/* ── EXAMPLE CARD ────────────────────────────────────── */
.tc-example-card {
  background: var(--vellum);
  border: 1px solid rgba(201,169,110,.18);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(201,169,110,.1);
  position: relative;
}
.tc-example-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 20px;
}
.tc-example-confession {
  background: var(--parch);
  border: 1px solid var(--smoke);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.tc-example-response {
  background: rgba(201,169,110,.05);
  border: 1px solid rgba(201,169,110,.12);
  border-radius: 14px;
  padding: 18px 20px;
}
.tc-example-who {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; opacity: .85;
}
.tc-example-confession p,
.tc-example-response p {
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-style: italic;
  color: var(--dim); line-height: 1.7; margin: 0 0 0;
}

/* ── TRUST BAR ───────────────────────────────────────── */
.tc-trust-bar {
  background: var(--vellum);
  border-top: 1px solid rgba(201,169,110,.15);
  border-bottom: 1px solid rgba(201,169,110,.15);
  position: relative; overflow: hidden;
}
.tc-trust-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(201,169,110,.04) 0%, rgba(201,169,110,.08) 50%, rgba(201,169,110,.04) 100%);
  pointer-events: none;
}
.tc-trust-inner {
  position: relative; max-width: 1140px; margin: 0 auto; padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}
.tc-trust-item {
  display: flex; align-items: center; gap: 14px; padding: 26px 20px;
  transition: background .2s;
}
.tc-trust-item:hover { background: rgba(201,169,110,.05); }
.tc-trust-icon { font-size: 20px; flex-shrink: 0; line-height: 1; }
.tc-trust-item div { display: flex; flex-direction: column; gap: 2px; }
.tc-trust-item strong {
  font-size: 13px; font-weight: 500; color: var(--cream);
  letter-spacing: .01em; line-height: 1.2;
}
.tc-trust-item span { font-size: 12px; color: var(--ash); font-weight: 300; }
.tc-trust-divider {
  width: 1px; height: 36px;
  background: rgba(201,169,110,.15); flex-shrink: 0;
}

/* ── SECTIONS ────────────────────────────────────────── */
.tc-section { padding: 88px 0; }
.tc-section-label {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.tc-section-label::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--gold);
}
.tc-home h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 500; line-height: 1.1; letter-spacing: -.015em;
  color: var(--cream); margin-bottom: 16px;
}
.tc-home h2 em { font-style: italic; color: var(--gold); }
.tc-section-desc {
  font-size: 16px; color: var(--ash); max-width: 500px;
  line-height: 1.8; margin-bottom: 48px; font-weight: 300;
}

/* ── CONFESSION SECTION ──────────────────────────────── */
.tc-confess-section { padding-top: 80px; padding-bottom: 80px; }
.tc-confess-header { text-align: center; margin-bottom: 48px; }
.tc-confess-header h2 { font-size: clamp(34px, 4vw, 56px); }
.tc-confess-header .tc-section-desc {
  max-width: 520px; margin: 0 auto; text-align: center;
}

/* ── FEATURED PANEL ──────────────────────────────────── */
.tc-panel {
  background: var(--vellum);
  border: 1px solid rgba(201,169,110,.12);
  border-radius: 28px; padding: 48px;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.tc-panel::before {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--glow2) 0%, transparent 70%);
  pointer-events: none;
}
.tc-panel-featured {
  border-color: rgba(201,169,110,.22);
  box-shadow: var(--shadow), 0 0 0 1px rgba(201,169,110,.06), inset 0 1px 0 rgba(201,169,110,.12);
}

/* ── CONFESSION INPUT ────────────────────────────────── */
.tc-confession-wrap { margin-bottom: 24px; }
.tc-confession-label {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; opacity: .85;
}
textarea#tc-confession {
  width: 100%; min-height: 200px; resize: vertical;
  border-radius: 16px; border: 1px solid var(--smoke);
  padding: 22px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 400; font-style: italic;
  line-height: 1.75;
  background: var(--parch); color: var(--cream);
  transition: border-color .25s, box-shadow .25s; outline: none;
}
textarea#tc-confession:focus {
  border-color: rgba(201,169,110,.45);
  box-shadow: 0 0 0 3px rgba(201,169,110,.08);
}
textarea#tc-confession::placeholder { color: var(--ash); opacity: .6; }

/* ── MODE CONTROLS ───────────────────────────────────── */
.tc-mode-header {
  font-size: 13px; font-weight: 500; color: var(--dim);
  letter-spacing: .04em; margin-bottom: 14px;
}
.tc-controls {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-bottom: 28px;
}
.tc-toggle {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 14px; border: 1px solid var(--smoke);
  border-radius: 14px; background: var(--parch);
  cursor: pointer; transition: all .2s; position: relative;
}
.tc-toggle:has(input:checked) {
  border-color: rgba(201,169,110,.45);
  background: rgba(201,169,110,.07);
  box-shadow: inset 0 1px 0 rgba(201,169,110,.1);
}
.tc-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.tc-toggle strong { font-size: 13px; font-weight: 500; color: var(--cream); }
.tc-toggle .tc-small {
  font-size: 11.5px; color: var(--ash); line-height: 1.4; display: block; margin-top: 3px;
}

/* ── ACTION ROW ──────────────────────────────────────── */
.tc-cta-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* ── RESPONSE ────────────────────────────────────────── */
#tc-status { margin-top: 16px; }
.tc-response-box {
  margin-top: 28px; background: var(--parch);
  border: 1px solid rgba(201,169,110,.18);
  border-radius: 20px; padding: 36px;
  animation: fadeUp .4s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tc-response-box h3 {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--smoke);
}
.tc-response-block { padding: 18px 0; border-top: 1px solid var(--smoke); }
.tc-response-block:first-of-type { border-top: none; padding-top: 0; }
.tc-response-block strong {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; opacity: .8;
}

/* ── STEPS ───────────────────────────────────────────── */
.tc-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; border: 1px solid var(--smoke);
  border-radius: 20px; overflow: hidden;
}
.tc-step {
  padding: 36px 28px; background: var(--vellum);
  display: flex; flex-direction: column;
}
.tc-step + .tc-step { border-left: 1px solid var(--smoke); }
.tc-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 400;
  color: rgba(201,169,110,.14); line-height: 1; margin-bottom: 20px;
}
.tc-step strong {
  font-size: 15px; font-weight: 500; color: var(--cream);
  margin-bottom: 10px; line-height: 1.3; display: block;
}
.tc-step .tc-small {
  font-size: 13px; color: var(--ash); line-height: 1.65; display: block;
}

/* ── PRIVACY GRID ────────────────────────────────────── */
.tc-privacy-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  border: 1px solid var(--smoke); border-radius: 20px; overflow: hidden;
}
.tc-privacy-item {
  display: flex; gap: 20px; padding: 36px 32px;
  background: var(--vellum); align-items: flex-start;
  transition: background .2s;
}
.tc-privacy-item:hover { background: rgba(201,169,110,.04); }
.tc-privacy-item:nth-child(1),
.tc-privacy-item:nth-child(2) { border-bottom: 1px solid var(--smoke); }
.tc-privacy-item:nth-child(odd) { border-right: 1px solid var(--smoke); }
.tc-privacy-check {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%; background: rgba(74,124,95,.15);
  border: 1px solid rgba(74,124,95,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #8ec4a5; font-weight: 500; margin-top: 2px;
}
.tc-privacy-item div { flex: 1; }
.tc-privacy-item strong {
  display: block; font-size: 15px; font-weight: 500;
  color: var(--cream); margin-bottom: 8px; line-height: 1.3;
}
.tc-privacy-item p { font-size: 13.5px; color: var(--ash); line-height: 1.7; margin: 0; }

/* ── SAFETY TILES ────────────────────────────────────── */
.tc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tc-tile {
  background: var(--vellum); border: 1px solid var(--smoke);
  border-radius: 20px; padding: 32px 28px;
  transition: border-color .25s, transform .25s;
}
.tc-tile:hover { border-color: rgba(201,169,110,.3); transform: translateY(-3px); }
.tc-tile-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--glow); border: 1px solid rgba(201,169,110,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px;
}
.tc-tile h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 500; color: var(--cream);
  margin-bottom: 10px; line-height: 1.2;
}
.tc-tile p { font-size: 14px; color: var(--ash); line-height: 1.75; }

/* ── CLOSING CTA ─────────────────────────────────────── */
.tc-closing-section { padding: 100px 0; }
.tc-closing-card {
  max-width: 640px; margin: 0 auto;
  text-align: center; padding: 72px 48px;
  background: var(--vellum);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 32px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(201,169,110,.1);
  position: relative; overflow: hidden;
}
.tc-closing-card::before {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,169,110,.08) 0%, transparent 70%);
  pointer-events: none;
}
.tc-closing-card h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px; position: relative;
}
.tc-closing-card p {
  font-size: 16px; color: var(--ash); line-height: 1.8;
  max-width: 420px; margin: 0 auto 36px; font-weight: 300;
}
.tc-closing-micro {
  margin-top: 16px !important; font-size: 12px !important;
  color: var(--ash) !important; font-family: 'DM Mono', monospace;
  letter-spacing: .06em; margin-bottom: 0 !important;
}

/* ── MISC ────────────────────────────────────────────── */
.tc-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.18), transparent);
}
.tc-muted { color: var(--ash) !important; }
.tc-small { font-size: 13px; color: var(--ash); }

/* ── ALERTS ──────────────────────────────────────────── */
.tc-alert {
  border-left: 3px solid var(--danger); padding: 16px 18px;
  background: rgba(184,80,80,.08); color: #d9a0a0;
  border-radius: 12px; margin-top: 16px; font-size: 14px; line-height: 1.65;
}
.tc-alert.tc-good {
  border-left-color: var(--ok); background: rgba(74,124,95,.08); color: #8ec4a5;
}

/* ── DISCLAIMER ──────────────────────────────────────── */
.tc-disclaimer {
  background: var(--parch); border: 1px solid var(--smoke);
  border-radius: 16px; padding: 24px 28px; margin-bottom: 0;
}
.tc-disclaimer strong {
  display: block; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 10px;
}

/* ── FOOTER ──────────────────────────────────────────── */
.tc-site-footer { padding: 28px 0 40px; border-top: 1px solid var(--smoke); }
.tc-site-footer p { font-size: 13px; color: var(--ash); text-align: center; }

/* ── GENERIC PAGES ───────────────────────────────────── */
.tc-generic-content { padding: 120px 36px 80px; max-width: 800px; margin: 0 auto; }
.tc-generic-content .entry-title {
  font-family: 'Playfair Display', serif; font-size: 52px;
  font-weight: 500; line-height: 1.1; margin-bottom: 32px; color: var(--cream);
}
.tc-generic-content .entry-content { font-size: 17px; color: var(--dim); line-height: 1.8; }

/* ── ELEMENTOR ───────────────────────────────────────── */
.tc-page-wrapper > .elementor { width: 100%; }
.elementor-widget-text-editor p:last-child { margin-bottom: 0; }
.elementor-widget-button .elementor-button { border-radius: 999px; }
.elementor-widget-shortcode .tc-home { margin-top: 0; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .tc-hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .tc-hero { min-height: auto; padding: 100px 0 60px; }
  .tc-controls { grid-template-columns: repeat(2, 1fr); }
  .tc-steps { grid-template-columns: repeat(2, 1fr); }
  .tc-step + .tc-step { border-left: none; }
  .tc-step:nth-child(2) { border-left: 1px solid var(--smoke); }
  .tc-step:nth-child(3), .tc-step:nth-child(4) { border-top: 1px solid var(--smoke); }
}
@media (max-width: 800px) {
  .tc-privacy-grid { grid-template-columns: 1fr; }
  .tc-privacy-item:nth-child(1),
  .tc-privacy-item:nth-child(2) { border-bottom: 1px solid var(--smoke); }
  .tc-privacy-item:nth-child(odd) { border-right: none; }
  .tc-privacy-item:nth-child(3) { border-bottom: 1px solid var(--smoke); }
  .tc-cards { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .tc-nav { padding: 16px 20px; }
  .tc-site-nav { display: none; }
  .tc-hero h1 { font-size: 40px; }
  .tc-hero-desc { font-size: 16px; }
  .tc-container, .tc-hero-inner { padding: 0 20px; }
  .tc-panel { padding: 28px 20px; }
  .tc-section { padding: 60px 0; }
  .tc-steps { grid-template-columns: 1fr; }
  .tc-step + .tc-step { border-left: none; border-top: 1px solid var(--smoke); }
  .tc-step:nth-child(2) { border-left: none; }
  .tc-closing-card { padding: 48px 28px; }
  .tc-trust-inner { grid-template-columns: 1fr 1fr; gap: 0; padding: 0 20px; }
  .tc-trust-divider { display: none; }
  .tc-trust-item { border-bottom: 1px solid rgba(201,169,110,.08); }
  .tc-trust-item:nth-child(odd) { border-right: 1px solid rgba(201,169,110,.08); }
  .tc-trust-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .tc-trust-inner { grid-template-columns: 1fr; }
  .tc-trust-item:nth-child(odd) { border-right: none; }
  .tc-trust-item { border-bottom: 1px solid rgba(201,169,110,.08); }
  .tc-trust-item:last-child { border-bottom: none; }
}

/* ── MAGNETIC HOMEPAGE REWRITE OVERRIDES ───────────────── */
.tc-home-magnetic .tc-hero {
  min-height: auto;
  padding: 120px 0 72px;
}

.tc-home-magnetic .tc-hero-inner {
  align-items: center;
}

.tc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.tc-inline-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--dim);
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  letter-spacing: .04em;
}

.tc-example-card-magnetic {
  padding: 28px;
}

.tc-example-card-magnetic .tc-example-response p,
.tc-example-card-magnetic .tc-example-confession p {
  font-size: 16px;
}

.tc-panel-magnetic {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
}

.tc-controls-magnetic {
  margin-bottom: 22px;
}

.tc-cta-row-magnetic {
  justify-content: flex-start;
}

.tc-micro-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ash);
}

.tc-trust-strip {
  padding: 8px 0 24px;
}

.tc-trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tc-trust-card {
  background: var(--vellum);
  border: 1px solid var(--smoke);
  border-radius: 18px;
  padding: 22px 20px;
}

.tc-trust-card strong {
  display: block;
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 8px;
}

.tc-trust-card span {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ash);
}

.tc-simple-center {
  text-align: center;
}

.tc-center-desc {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.tc-simple-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.tc-simple-step {
  background: var(--vellum);
  border: 1px solid var(--smoke);
  border-radius: 20px;
  padding: 28px 24px;
}

.tc-simple-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 1px solid rgba(201,169,110,.25);
  background: rgba(201,169,110,.08);
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 14px;
}

.tc-simple-step p {
  margin: 0;
  font-size: 15px;
  color: var(--cream);
}

.tc-depth-section {
  padding-top: 16px;
}

.tc-depth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 32px auto 0;
}

.tc-depth-item {
  background: var(--vellum);
  border: 1px solid var(--smoke);
  border-radius: 18px;
  padding: 18px 20px;
  color: var(--cream);
  font-size: 15px;
  text-align: left;
}

.tc-depth-item span {
  color: var(--ash);
}

.tc-closing-card-magnetic {
  max-width: 720px;
}

@media (max-width: 1024px) {
  .tc-trust-cards,
  .tc-simple-steps,
  .tc-depth-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .tc-home-magnetic .tc-hero-inner,
  .tc-trust-cards,
  .tc-simple-steps,
  .tc-depth-grid,
  .tc-controls {
    grid-template-columns: 1fr;
  }

  .tc-home-magnetic .tc-hero {
    padding-top: 108px;
  }

  .tc-panel-magnetic {
    padding: 24px;
  }

  .tc-inline-trust {
    flex-direction: column;
    gap: 8px;
  }
}
