:root{
  --tp-navy: #212B75;
  --tp-navy-dark: #171f57;
  --tp-ink: #171717;
  --tp-text: #2a2a2a;
  --tp-muted: #6b7280;
  --tp-bg: #f7f5f1;
  --tp-surface: #ffffff;
  --tp-line: #e8e3da;
  --tp-gold: #b8963d;
  --tp-gold-soft: #f4ecd8;
  --tp-success: #1f6b43;
  --tp-danger: #9f2f2f;
  --tp-shadow: 0 6px 22px rgba(22, 22, 22, 0.06);
}

html{
  background: var(--tp-bg);
}

body{
  margin:0;

  background:
    radial-gradient(circle at 15% 10%, rgba(33,43,117,0.05), transparent 35%),
    radial-gradient(circle at 85% 90%, rgba(184,150,61,0.06), transparent 40%),
    var(--tp-bg);

  color:var(--tp-text);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height:1.55;
}

.wrap{
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.page-title{
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.1;
  font-weight: 650;
  color: var(--tp-ink);
  letter-spacing: -0.02em;
}

.muted{
  color: var(--tp-muted);
  font-size: 0.97rem;
}

.card{
  background: var(--tp-surface);
  border: 1px solid var(--tp-line);
  border-radius: 16px;
  box-shadow: var(--tp-shadow);
  padding: 22px;
}

.btn{
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--tp-navy);
  color: #fff;
  padding: 12px 18px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  box-shadow: 0 3px 10px rgba(33, 43, 117, 0.16);
}

.btn:hover{
  background: var(--tp-navy-dark);
  transform: translateY(-1px);
}

.btn:disabled{
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn.secondary{
  background: #efede8;
  color: var(--tp-ink);
  box-shadow: none;
}

.btn.secondary:hover{
  background: #e8e4dd;
}

label{
  display: block;
  margin: 0 0 6px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--tp-ink);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea{
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d9d3c9;
  border-radius: 12px;
  background: #fff;
  color: var(--tp-ink);
  padding: 12px 14px;
  font-size: .96rem;
  transition: border-color .12s ease, box-shadow .12s ease;
}

input:focus,
select:focus,
textarea:focus{
  outline: none;
  border-color: rgba(33,43,117,0.45);
  box-shadow: 0 0 0 4px rgba(33,43,117,0.08);
}

.tp-header{
  background: linear-gradient(to bottom, #ffffff 0%, #fbfaf7 100%);
  border-bottom: 1px solid var(--tp-line);
}

.wrap-header{
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo{
  width: 200px;
  height: auto;
  display: block;
}

.beta{
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--tp-gold-soft);
  color: #7f6325;
  border: 1px solid #e7d5a7;
  font-weight: 700;
}


.tp-nav-links a:hover{
  background: #f0ece5;
  color: var(--tp-ink);
}



.tp-signout-btn:hover{
  background: #f5f2ec;
}


.tp-footer{
  margin-top: 36px;
  background: #fcfbf8;
  border-top: 1px solid var(--tp-line);
}

.tp-footer-inner{
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  color: var(--tp-muted);
}

.tp-footer-links a{
  margin-left: 12px;
  color: var(--tp-muted);
  text-decoration: none;
}

.tp-footer-links a:hover{
  color: var(--tp-ink);
}



@media (max-width: 768px){
  .tp-nav{
    padding: 12px 16px;
  }

  .tp-nav-toggle{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .tp-nav-logo{
    flex: 1;
  }

  .tp-nav-links{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--tp-line);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    padding: 8px 16px 14px;
    z-index: 30;
  }

  .tp-nav-links.is-open{
    display: flex;
  }

  .tp-nav-links a{
    border-radius: 10px;
    padding: 12px 10px;
  }

  .tp-user-area{
    gap: 6px;
  }

  .tp-user-pill,
  .tp-role-pill{
    display: none;
  }

  .wrap{
    padding: 24px 16px 40px;
  }

  .card{
    padding: 18px;
    border-radius: 14px;
  }

  .tp-how{
  margin-top: 56px;
  padding: 38px;
  border-radius: 24px;
  background: linear-gradient(to bottom, #ffffff 0%, #fcfbf8 100%);
  border: 1px solid var(--tp-line);
  box-shadow: var(--tp-shadow);
  position: relative;
  overflow: hidden;
}

.tp-how::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(184,150,61,0.08), transparent 28%);
  pointer-events: none;
}

.tp-how-title{
  text-align: center;
  margin: 0 0 10px;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--tp-ink);
  letter-spacing: -0.02em;
}

.tp-how-sub{
  text-align: center;
  color: var(--tp-muted);
  max-width: 760px;
  margin: 0 auto 36px auto;
  font-size: .98rem;
}

.tp-how-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.tp-how-step{
  position: relative;
  text-align: center;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(232,227,218,0.9);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  animation: tpFadeUp 0.65s ease both;
}

.tp-how-step:nth-child(1){ animation-delay: 0.05s; }
.tp-how-step:nth-child(2){ animation-delay: 0.14s; }
.tp-how-step:nth-child(3){ animation-delay: 0.23s; }
.tp-how-step:nth-child(4){ animation-delay: 0.32s; }

.tp-how-step:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(22,22,22,0.06);
  border-color: #ddd2bd;
}

.tp-step-icon{
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: linear-gradient(to bottom, #fffdf9 0%, #f7f3ea 100%);
  border: 1px solid #ece3d2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  position: relative;
}

.tp-step-icon img{
  width: 40px;
  height: 40px;
  display: block;
  animation: tpIconFloat 5.5s ease-in-out infinite;
}

.tp-how-step:nth-child(2) .tp-step-icon img{ animation-delay: 0.4s; }
.tp-how-step:nth-child(3) .tp-step-icon img{ animation-delay: 0.8s; }
.tp-how-step:nth-child(4) .tp-step-icon img{ animation-delay: 1.2s; }

.tp-how-step h3{
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--tp-ink);
  font-weight: 700;
}

.tp-how-step p{
  margin: 0;
  font-size: .9rem;
  color: var(--tp-muted);
  line-height: 1.5;
}

/* connector line on desktop */
@media (min-width: 901px){
  .tp-how-step:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 54px;
    right: -22px;
    width: 44px;
    height: 2px;
    background: linear-gradient(
      to right,
      rgba(184,150,61,0.18),
      rgba(33,43,117,0.18)
    );
    border-radius: 999px;
  }

  .tp-how-step:not(:last-child)::before{
    content: "";
    position: absolute;
    top: 49px;
    right: -6px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #f1ead7;
    border: 1px solid #dfcfaa;
    box-shadow: 0 0 0 4px rgba(184,150,61,0.06);
  }
}

@keyframes tpFadeUp{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tpIconFloat{
  0%,100%{
    transform: translateY(0px);
  }
  50%{
    transform: translateY(-2px);
  }
}

@media (max-width: 900px){
  .tp-how-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px){
  .tp-how{
    padding: 26px 20px;
  }

  .tp-how-grid{
    grid-template-columns: 1fr;
  }
}



.tp-path-card h3{
  margin:0 0 14px;
  font-size:1.12rem;
  font-weight:700;
  color:var(--tp-ink);
  letter-spacing:-0.01em;
}

.tp-path-card p{
  font-size:.96rem;
  color:var(--tp-muted);
  margin-bottom:18px;
  line-height:1.65;
}

.tp-path-card .btn{
  margin-top:6px;
}

.tp-path-card h3{
  position:relative;
}

.tp-path-card h3::after{
  content:"";
  display:block;
  width:32px;
  height:2px;
  margin-top:8px;
  background:rgba(33,43,117,0.18);
  border-radius:999px;
}
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 22px;
  min-height: 48px;
}

/* Kill underline in ALL states */
.btn,
.btn:link,
.btn:visited,
.btn:hover,
.btn:active {
  text-decoration: none !important;
}

.btn.schedule {
  background: linear-gradient(180deg, #f4ead2 0%, #ead9b3 100%);
  color: #6f5620;
  border: 1px solid #e7d5a7;
  box-shadow: 0 6px 16px rgba(111, 86, 32, 0.12);
}

.btn.schedule:hover {
  background: linear-gradient(180deg, #f7eed9 0%, #eeddba 100%);
  box-shadow: 0 10px 22px rgba(111, 86, 32, 0.16);
  transform: translateY(-1px);
}

/* =========================
   ToneProof Premium Nav
========================= */

.tp-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 24px;
  background: rgba(251, 249, 245, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8e0d2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.tp-nav-logo a {
  color: var(--tp-ink);
  text-decoration: none;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.tp-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.tp-nav-links a {
  position: relative;
  color: #40372d;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 2px;
  transition: color 0.18s ease;
}

.tp-nav-links a:hover,
.tp-nav-links a:focus-visible {
  color: #7d6226;
}

.tp-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ead9b3 0%, #d8c08a 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.tp-nav-links a:hover::after,
.tp-nav-links a:focus-visible::after,
.tp-nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.tp-user-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Shared pill feel */
.tp-user-pill,
.tp-role-pill,
.tp-login-link,
.tp-signout-btn {
  min-height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}

/* User org/account badge */
.tp-user-pill {
  background: #f6f1e8;
  color: #4a4034;
  border: 1px solid #e4d9c8;
}

/* Role badge = premium gold */
.tp-role-pill {
  background: linear-gradient(180deg, #f4ead2 0%, #ead9b3 100%);
  color: #7d6226;
  border: 1px solid #dbc48f;
  box-shadow: 0 4px 10px rgba(125, 98, 38, 0.08);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

/* Sign in / Sign out buttons */
.tp-login-link,
.tp-signout-btn {
  background: #fff;
  color: var(--tp-ink);
  border: 1px solid #ddd3c3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.tp-login-link:hover,
.tp-signout-btn:hover {
  background: #fcfaf6;
  border-color: #d8c7a3;
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

/* Hamburger */
.tp-nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid #ddd3c3;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
}

.tp-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #4a4034;
  border-radius: 999px;
}

.tp-nav-toggle span + span {
  margin-top: 4px;
}

/* Mobile */
@media (max-width: 980px) {
  .tp-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .tp-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .tp-nav-links {
    display: none;
  }

  .tp-user-area {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .tp-user-pill,
  .tp-role-pill,
  .tp-login-link,
  .tp-signout-btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
  }
}

/* =========================
   Base Button (global)
========================= */
.btn {
  appearance: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
  padding: 14px 22px;
  min-height: 48px;
  min-width: 120px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease, border-color .12s ease;
  
  /* neutral default */
  background: #fff;
  border: 1px solid #ddd3c3;
  color: var(--tp-ink);
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.btn:hover {
  transform: translateY(-1px);
  background: #fcfaf6;
  border-color: #d8c7a3;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.btn.primary,
.btn.schedule {
  background: linear-gradient(180deg, #f4ead2 0%, #ead9b3 100%);
  color: #6f5620;
  border: 1px solid #e7d5a7;
  box-shadow: 0 6px 16px rgba(111, 86, 32, 0.12);
}

.btn.primary:hover,
.btn.schedule:hover {
  background: linear-gradient(180deg, #f7eed9 0%, #eeddba 100%);
  box-shadow: 0 10px 22px rgba(111, 86, 32, 0.16);
}

.btn.secondary {
  background: #fff;
  color: var(--tp-ink);
  border: 1px solid var(--tp-line);
}

/* =========================
   Typography System
========================= */

.tp-hero-title,
.tp-home-title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--tp-ink);
  font-weight: 700;
}

.tp-hero-sub,
.tp-home-sub {
  max-width: 620px;
  font-size: 1.04rem;
  color: var(--tp-muted);
  margin: 0 0 22px;
}

.tp-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--tp-gold-soft);
  color: #7d6226;
  border: 1px solid #e7d5a7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* =========================
   ToneProof Typography System
========================= */

/* Hero / page title */
h1,
.tp-hero-title,
.tp-home-title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--tp-ink);
}

/* Section title */
h2,
.tp-section-title,
.tp-how-title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--tp-ink);
}

/* Card / sub-section title */
h3,
.tp-card-title,
.tp-path-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.02rem, 1.15vw, 1.2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--tp-ink);
}

/* Optional supporting text styles */
.tp-hero-sub,
.tp-home-sub {
  max-width: 620px;
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--tp-muted);
  margin: 0 0 22px;
}

.tp-section-sub,
.tp-how-sub {
  color: var(--tp-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 28px;
}

/* Premium eyebrow / kicker */
.tp-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--tp-gold-soft);
  color: #7d6226;
  border: 1px solid #e7d5a7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* =========================
   ToneProof Premium Nav / Header
========================= */

.tp-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 24px;
  background: rgba(251, 249, 245, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8e0d2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.tp-nav-logo a {
  color: var(--tp-ink);
  text-decoration: none;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.tp-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.tp-nav-links a {
  position: relative;
  color: #40372d;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 2px;
  transition: color 0.18s ease;
}

.tp-nav-links a:hover,
.tp-nav-links a:focus-visible {
  color: #7d6226;
}

.tp-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ead9b3 0%, #d8c08a 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.tp-nav-links a:hover::after,
.tp-nav-links a:focus-visible::after,
.tp-nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.tp-user-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tp-user-pill,
.tp-role-pill,
.tp-login-link,
.tp-signout-btn {
  min-height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}

.tp-user-pill {
  background: #f6f1e8;
  color: #4a4034;
  border: 1px solid #e4d9c8;
}

.tp-role-pill {
  background: linear-gradient(180deg, #f4ead2 0%, #ead9b3 100%);
  color: #7d6226;
  border: 1px solid #dbc48f;
  box-shadow: 0 4px 10px rgba(125, 98, 38, 0.08);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.tp-login-link,
.tp-signout-btn {
  background: #fff;
  color: var(--tp-ink);
  border: 1px solid #ddd3c3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.tp-login-link:hover,
.tp-signout-btn:hover {
  background: #fcfaf6;
  border-color: #d8c7a3;
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.tp-nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid #ddd3c3;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
}

.tp-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #4a4034;
  border-radius: 999px;
}

.tp-nav-toggle span + span {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .tp-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .tp-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .tp-nav-links {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

  .tp-nav-links.is-open {
    display: flex;
  }

  .tp-user-area {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .tp-user-pill,
  .tp-role-pill,
  .tp-login-link,
  .tp-signout-btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
  }
}

/* =========================
   Shared Hero Images
========================= */

.tp-home-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}



/* Logged-out protected nav links */
.tp-logged-out .tp-nav-links .tp-auth-link {
  color: #6d6458;
}

.tp-logged-out .tp-nav-links .tp-auth-link::before {
  content: "🔒";
  font-size: 0.78rem;
  margin-right: 6px;
  opacity: 0.75;
}

.tp-logged-out .tp-nav-links .tp-auth-link:hover,
.tp-logged-out .tp-nav-links .tp-auth-link:focus-visible {
  color: #7d6226;
}

/* =========================
   Home / Section Notes
========================= */

.tp-home-note {
  margin-top: 14px;
  max-width: 560px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--tp-muted);
  opacity: 0.9;
  padding-left: 12px;
  border-left: 2px solid #e7d5a7; /* soft gold accent */
}

.btn {
  margin-top: 6px;
}

.tp-home-hero{
  position: relative;
  overflow: hidden;
}

.tp-home-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(33,43,117,0.05), transparent 26%),
    radial-gradient(circle at bottom right, rgba(184,150,61,0.07), transparent 24%);
  pointer-events: none;
}

.tp-home-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;   /* 🔥 critical */
  position: relative;
  z-index: 1;
}

.tp-home-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;  /* 🔥 ensures top-right */
}

.pilot-image {
  width: 100%;
  max-width: 340px;   /* 👈 adjust this if needed */
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--tp-line);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.tp-home-visual {
  align-self: start;
}