:root {
  --tc-navy: #020914;
  --tc-navy-2: #07162b;
  --tc-blue: #0f67ff;
  --tc-blue-2: #22a7ff;
  --tc-gold: #f0b84d;
  --tc-ink: #071327;
  --tc-muted: #536276;
  --tc-line: #dce5f1;
  --tc-page: #f7f9fc;
  --tc-card: #ffffff;
  --tc-shadow: 0 22px 60px rgba(2, 9, 20, .12);
  --tc-shell: min(1720px, calc(100vw - 112px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--tc-page); color: var(--tc-ink); }
a { color: inherit; text-decoration: none; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.85; stroke-linecap: round; stroke-linejoin: round; }

.tc-container {
  width: var(--tc-shell);
  margin: 0 auto;
}

.tc-public-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
}

.tc-public-nav {
  width: var(--tc-shell);
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.tc-brand {
  display: inline-flex;
  align-items: center;
  min-width: 240px;
  flex: 0 0 auto;
}

.tc-brand img,
.tc-footer img {
  display: block;
  width: 240px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
}

.tc-public-menu {
  margin-left: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1vw, 22px);
  color: #f8fbff;
  font-size: 15px;
  font-weight: 800;
  min-width: 0;
}

.tc-public-menu a {
  opacity: .94;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.tc-public-menu a:hover,
.tc-public-menu a.is-active {
  opacity: 1;
  border-color: var(--tc-gold);
}

.tc-login-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: linear-gradient(180deg, #1674ff, #0757e8);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(15, 103, 255, .3);
  white-space: nowrap;
}

.tc-hero {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(15, 103, 255, .08), rgba(2, 9, 20, 0) 34%),
    linear-gradient(90deg, rgba(2, 9, 20, .88) 0%, rgba(2, 9, 20, .76) 36%, rgba(2, 9, 20, .2) 70%, rgba(2, 9, 20, .34) 100%),
    url("../img/public-earth-header-clean.png") center center / cover no-repeat,
    #020914;
}

.tc-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(255, 255, 255, .22);
}

.tc-hero-inner {
  width: var(--tc-shell);
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(620px, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  padding: 102px 0 54px;
}

.tc-hero-copy {
  width: 100%;
  position: relative;
  z-index: 2;
}

.tc-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tc-gold);
  border: 1px solid rgba(240, 184, 77, .72);
  border-radius: 999px;
  padding: 9px 17px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  background: rgba(2, 9, 20, .35);
}

.tc-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--tc-gold);
  box-shadow: 0 0 16px rgba(240, 184, 77, .7);
}

.tc-hero h1 {
  font-size: clamp(50px, 4.05vw, 68px);
  line-height: 1.03;
  margin: 22px 0 18px;
  letter-spacing: 0;
  font-weight: 950;
}

.tc-hero h1 span { color: var(--tc-blue); }

.tc-hero p {
  max-width: 710px;
  margin: 0;
  color: #eef5ff;
  font-size: 20px;
  line-height: 1.52;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .32);
}

.tc-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.tc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border-radius: 10px;
  padding: 0 26px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 15px;
  white-space: nowrap;
}

.tc-btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #1674ff, #0757e8);
  box-shadow: 0 18px 42px rgba(15, 103, 255, .32);
}

.tc-btn-outline {
  color: #dbeafe;
  border-color: rgba(15, 103, 255, .72);
  background: rgba(2, 9, 20, .28);
}

.tc-btn-secondary {
  color: #0b1b31;
  border-color: var(--tc-line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(2, 9, 20, .08);
}

.tc-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
  color: #f8fbff;
  font-weight: 900;
}

.tc-hero-proof span {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}

.tc-hero-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--tc-gold);
  border-radius: 4px;
}

.tc-home-connectors {
  padding: 42px 0 22px;
  background: #fff;
  text-align: center;
}

.tc-home-connectors h2,
.tc-process h2 {
  font-size: 28px;
  margin: 0 0 22px;
  letter-spacing: 0;
  color: #071529;
}

.tc-wide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.tc-wide-card {
  min-height: 118px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--tc-line);
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(2, 9, 20, .08);
}

.tc-card-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #eaf2ff;
  color: var(--tc-blue);
  font-size: 34px;
}

.tc-wide-card h3,
.tc-strip-item h3,
.tc-process h3 {
  margin: 0 0 7px;
  font-size: 20px;
  letter-spacing: 0;
}

.tc-wide-card h3,
.tc-process h3 {
  color: #071529;
}

.tc-wide-card p,
.tc-process p {
  margin: 0;
  color: #334155;
  line-height: 1.48;
}

.tc-dark-strip {
  padding: 30px 0;
  background: #fff;
}

.tc-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 30px 34px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #031021, #061c38);
  box-shadow: var(--tc-shadow);
}

.tc-strip-item {
  min-height: 150px;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.2);
}

.tc-strip-item:last-child { border-right: 0; }
.tc-strip-item svg { color: var(--tc-blue); font-size: 40px; margin-bottom: 16px; }
.tc-strip-item p { margin: 0; color: #d7e3f4; line-height: 1.45; }

.tc-process {
  padding: 8px 0 38px;
  background: #fff;
  text-align: center;
}

.tc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  text-align: left;
}

.tc-process article {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  align-items: start;
}

.tc-process article span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--tc-blue);
  color: #fff;
  font-weight: 950;
}

.tc-process article h3,
.tc-process article p { grid-column: 2; }

.tc-final-cta {
  padding: 0 0 54px;
  background: #fff;
}

.tc-section { padding: 70px 28px; }
.tc-white { background: #fff; }
.tc-light { background: #fff; }
.tc-section-title { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.tc-section-title h2, .tc-band h2, .tc-contact-layout h2, .tc-login-layout h2 { font-size: clamp(30px, 3vw, 44px); margin: 0 0 12px; letter-spacing: 0; }
.tc-section-title p, .tc-band p, .tc-contact-layout p, .tc-login-layout p { font-size: 18px; line-height: 1.55; color: #475569; }

.tc-white .tc-section-title h2,
.tc-light .tc-section-title h2,
.tc-contact-layout h2,
.tc-login-layout h2,
.tc-contact-next h2,
.tc-contact-next h3,
.tc-split-feature h2,
.tc-split-feature h3,
.tc-layers h2,
.tc-layers h3,
.tc-card h3 {
  color: #071529;
}

.tc-white .tc-section-title p,
.tc-light .tc-section-title p,
.tc-contact-layout p,
.tc-login-layout p,
.tc-contact-next p,
.tc-split-feature p,
.tc-layers p,
.tc-card p {
  color: #475569;
}

.tc-band h2,
.tc-band p,
.tc-dark-strip h2,
.tc-dark-strip h3,
.tc-dark-strip p,
.tc-strip-grid h3,
.tc-strip-grid p {
  color: inherit;
}
.tc-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.tc-card, .tc-form, .tc-login-card, .tc-help-box {
  background: #fff;
  border: 1px solid var(--tc-line);
  border-radius: 18px;
  box-shadow: var(--tc-shadow);
}
.tc-card { padding: 28px; }
.tc-card h3 { font-size: 22px; margin: 0 0 10px; }
.tc-card p { color: #475569; line-height: 1.55; margin: 0; }
.tc-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px 40px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #041226, #09264d);
  box-shadow: var(--tc-shadow);
}
.tc-band p { color: #d7e3f4; margin: 0; }
.tc-contact-layout, .tc-login-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.tc-help-box { padding: 20px; margin-top: 24px; color: #0f315d; background: #f2f7ff; box-shadow: none; }
.tc-form { padding: 28px; display: grid; gap: 16px; }
.tc-form label, .tc-login-card label { display: grid; gap: 8px; font-weight: 800; color: #0f1d35; }
.tc-form input, .tc-form textarea, .tc-login-card input {
  width: 100%;
  border: 1px solid #cad6e6;
  border-radius: 12px;
  min-height: 46px;
  padding: 12px 14px;
  font: inherit;
}
.tc-form input:focus, .tc-form textarea:focus, .tc-login-card input:focus { outline: none; border-color: var(--tc-blue); box-shadow: 0 0 0 4px rgba(15,103,255,.13); }
.tc-form-status { min-height: 22px; margin: 0; color: #b45309; font-weight: 800; }
.tc-login-card { padding: 30px; }
.tc-login-card form { display: grid; gap: 16px; }
.tc-login-card .button { min-height: 48px; border: 0; border-radius: 11px; background: #0f67ff; color: #fff; font-weight: 900; padding: 0 20px; }
.tc-help-link { display: inline-block; margin-top: 14px; color: #0f67ff; font-weight: 800; }

.tc-contact-hero,
.tc-login-hero {
  color: #fff;
  background:
    radial-gradient(circle at 74% 38%, rgba(15, 103, 255, .1), rgba(2, 9, 20, 0) 34%),
    linear-gradient(90deg, rgba(2, 9, 20, .93), rgba(2, 9, 20, .72) 44%, rgba(2, 9, 20, .28) 76%),
    url("../img/public-earth-header-clean.png") center center / cover no-repeat,
    #020914;
  padding: 102px 0 58px;
}

.tc-public-workspace {
  width: var(--tc-shell);
  margin: 0 auto;
}

.tc-contact-hero .tc-public-workspace,
.tc-login-hero-grid {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(620px, .98fr) minmax(430px, 520px);
  gap: clamp(56px, 6.4vw, 104px);
  align-items: center;
}

.tc-contact-hero-copy h1,
.tc-login-hero h1 {
  font-size: clamp(50px, 4.35vw, 70px);
  line-height: 1.03;
  margin: 22px 0 18px;
  font-weight: 950;
}

.tc-contact-hero-copy h1 span,
.tc-login-hero h1 span { color: var(--tc-blue); }

.tc-contact-hero-copy p,
.tc-login-hero p {
  max-width: 690px;
  color: #eef5ff;
  font-size: 20px;
  line-height: 1.52;
  margin: 0;
}

.tc-intake-card,
.tc-portal-card {
  border: 1px solid rgba(255, 255, 255, .22);
  background: linear-gradient(180deg, rgba(13, 28, 50, .88), rgba(8, 19, 36, .82));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}

.tc-intake-card {
  padding: 28px;
}

.tc-intake-card h2,
.tc-portal-card h2 {
  color: #fff;
  font-size: 30px;
  margin: 0 0 8px;
}

.tc-intake-card > p,
.tc-portal-card > p {
  color: #d6e3f6;
  font-size: 16px;
  margin: 0 0 14px;
}

.tc-intake-card label {
  color: #f8fbff;
}

.tc-intake-card label span,
.tc-portal-card label {
  font-weight: 900;
}

.tc-intake-card em {
  color: #ff7a7a;
  font-style: normal;
}

.tc-intake-card input,
.tc-portal-card input[type="text"],
.tc-portal-card input[type="password"] {
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .09);
}

.tc-intake-card input::placeholder,
.tc-portal-card input::placeholder { color: #aab8cc; }

.tc-choice-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tc-choice-row label {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
  color: #f8fbff;
}

.tc-contact-next {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  gap: 44px;
  align-items: start;
}

.tc-access-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 22px;
}

.tc-access-card .tc-card-icon {
  margin-bottom: 20px;
}

.tc-access-card .tc-actions {
  margin-top: 26px;
}

.tc-portal-card {
  padding: 36px;
  border-radius: 22px;
}

.tc-portal-card form {
  display: grid;
  gap: 16px;
}

.tc-portal-card label {
  color: #f8fbff;
}

.tc-portal-card .button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #1674ff, #0757e8);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.tc-portal-card .login-remember label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.tc-login-benefits {
  display: grid;
  gap: 22px;
  max-width: 560px;
  margin-top: 38px;
}

.tc-login-benefits article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.tc-login-benefits svg {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  padding: 15px;
  border-radius: 999px;
  color: #1476ff;
  border: 1px solid rgba(20, 118, 255, .42);
  background: rgba(20, 118, 255, .08);
}

.tc-login-benefits h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.tc-login-benefits p {
  font-size: 16px;
  color: #d6e3f6;
}

.tc-login-secure {
  margin-top: 20px;
  color: #d6e3f6;
  font-weight: 800;
  font-size: 14px;
}

.tc-split-feature {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.tc-split-feature h2 {
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.1;
  margin: 0 0 18px;
}

.tc-split-feature > div > p {
  color: #334155;
  font-size: 19px;
  line-height: 1.65;
}

.tc-mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.tc-mini-feature-grid article {
  min-height: 170px;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid var(--tc-line);
  border-bottom: 1px solid var(--tc-line);
}

.tc-mini-feature-grid article:nth-child(3n) { border-right: 0; }
.tc-mini-feature-grid article:nth-last-child(-n + 3) { border-bottom: 0; }
.tc-mini-feature-grid .tc-card-icon { margin: 0 auto 14px; }
.tc-mini-feature-grid h3 { margin: 0 0 8px; }
.tc-mini-feature-grid p { margin: 0; color: #334155; line-height: 1.45; }

.tc-layers { padding-top: 34px; }
.tc-layer-diagram {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 34px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #041226, #09264d);
  box-shadow: var(--tc-shadow);
}

.tc-layer-diagram article {
  text-align: center;
  padding: 24px 18px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.tc-layer-diagram article:last-child { border-right: 0; }
.tc-layer-diagram span {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #eaf2ff;
  color: var(--tc-blue);
  font-weight: 950;
}
.tc-layer-diagram h3 { margin: 0 0 10px; }
.tc-layer-diagram p { margin: 0; color: #d7e3f4; line-height: 1.5; }

.tc-solution-grid,
.tc-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.tc-solution-card,
.tc-industry-card {
  padding: 30px;
  border: 1px solid var(--tc-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(2, 9, 20, .08);
}

.tc-solution-card .tc-card-icon,
.tc-industry-card .tc-card-icon { margin-bottom: 18px; }
.tc-solution-card h3,
.tc-industry-card h3 { font-size: 22px; margin: 0 0 10px; }
.tc-solution-card p,
.tc-industry-card p { color: #334155; line-height: 1.5; margin: 0 0 12px; }
.tc-solution-card strong,
.tc-industry-card strong { color: var(--tc-blue); display: block; margin: 14px 0 4px; }
.tc-solution-card hr { border: 0; border-top: 1px solid var(--tc-line); margin: 18px 0; }

.tc-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tc-outcome-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  gap: 16px;
  min-height: 230px;
  padding: 30px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #031021, #061c38);
  box-shadow: var(--tc-shadow);
}

.tc-outcome-card > svg {
  grid-column: 1 / -1;
  color: var(--tc-blue);
  font-size: 48px;
}

.tc-outcome-card h3 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 22px;
}

.tc-outcome-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--tc-blue-2);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .04em;
}

.tc-outcome-card p {
  margin: 0;
  color: #d7e3f4;
  line-height: 1.45;
}

.tc-outcome-card > span {
  align-self: center;
  justify-self: center;
  font-size: 28px;
  color: #fff;
}

.tc-support-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.tc-support-choice article {
  padding: 42px;
  border: 1px solid var(--tc-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(2, 9, 20, .08);
}

.tc-support-choice .tc-card-icon { margin-bottom: 20px; }
.tc-support-choice h3 { margin: 0 0 10px; font-size: 26px; }
.tc-support-choice p { color: #334155; line-height: 1.58; max-width: 520px; }
.tc-btn-light { color: var(--tc-blue); background: #fff; border-color: rgba(15, 103, 255, .45); }

.tc-footer {
  padding: 48px 28px 24px;
  background: linear-gradient(180deg, #03101f, #020914);
  color: #dbeafe;
}

.tc-footer-grid {
  width: min(1740px, calc(100vw - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 34px;
}

.tc-footer h3 { color: #fff; margin: 0 0 14px; }
.tc-footer a { display: block; color: #cbd5e1; margin: 9px 0; }
.tc-footer p { color: #cbd5e1; line-height: 1.55; }
.tc-copyright { width: min(1740px, calc(100vw - 96px)); margin: 34px auto 0; text-align: center; color: #94a3b8; }

@media (max-width: 1100px) {
  .tc-public-nav { width: calc(100vw - 36px); gap: 16px; }
  .tc-public-menu { display: none; }
  .tc-brand { min-width: auto; }
  .tc-brand img { width: 210px; }
  .tc-login-button { margin-left: auto; }
  .tc-hero,
  .tc-hero-inner { min-height: 620px; }
  .tc-hero-copy { width: min(640px, 70vw); }
  .tc-wide-card-grid,
  .tc-strip-grid,
  .tc-process-grid,
  .tc-card-grid,
  .tc-split-feature,
  .tc-mini-feature-grid,
  .tc-layer-diagram,
  .tc-solution-grid,
  .tc-industry-grid,
  .tc-outcome-grid,
  .tc-support-choice,
  .tc-contact-layout,
  .tc-login-layout,
  .tc-footer-grid { grid-template-columns: 1fr; }
  .tc-mini-feature-grid article,
  .tc-layer-diagram article { border-right: 0; border-bottom: 1px solid var(--tc-line); }
  .tc-mini-feature-grid article:last-child,
  .tc-layer-diagram article:last-child { border-bottom: 0; }
  .tc-strip-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); padding: 24px 0; min-height: auto; }
  .tc-strip-item:last-child { border-bottom: 0; }
}

@media (max-width: 720px) {
  .tc-container,
  .tc-public-nav,
  .tc-hero-inner,
  .tc-footer-grid,
  .tc-copyright { width: calc(100vw - 28px); }
  .tc-public-nav { height: 82px; }
  .tc-brand img { width: 180px; }
  .tc-login-button { min-height: 42px; padding: 0 14px; font-size: 13px; }
  .tc-hero {
    min-height: auto;
    background-position: 62% center;
  }
  .tc-hero-inner {
    min-height: auto;
    padding: 112px 0 58px;
  }
  .tc-hero-copy { width: 100%; }
  .tc-hero h1 { font-size: 46px; }
  .tc-hero p { font-size: 18px; }
  .tc-hero-proof { grid-template-columns: 1fr; gap: 12px; }
  .tc-wide-card { align-items: flex-start; }
  .tc-band { align-items: flex-start; flex-direction: column; padding: 28px; }
}

/* Branded client login portal */
.tc-review-login-hero {
  min-height: 720px;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 72% 38%, rgba(15, 103, 255, .13), rgba(2, 9, 20, 0) 34%),
    linear-gradient(90deg, rgba(2, 9, 20, .94), rgba(2, 9, 20, .8) 43%, rgba(2, 9, 20, .32) 78%),
    url("../img/public-earth-header-clean.png") center center / cover no-repeat,
    #020914;
}

.tc-review-login-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(620px, .98fr) minmax(430px, 520px);
  gap: clamp(56px, 6vw, 104px);
  align-items: center;
  padding: 106px 0 52px;
}

.tc-review-login-copy {
  text-align: left;
}

.tc-review-login-copy h1 {
  max-width: 760px;
  margin: 16px 0;
  color: #fff;
  font-size: clamp(52px, 4.3vw, 74px);
  line-height: 1;
  letter-spacing: 0;
}

.tc-review-login-copy h1 span {
	color: #9fd0ff;
}

.tc-review-login-copy > p {
  max-width: 680px;
  color: #eef5ff;
  font-size: 19px;
  line-height: 1.54;
}

.tc-review-login-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 28, 50, .98), rgba(8, 19, 36, .96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .36);
  backdrop-filter: blur(10px);
}

.tc-review-login-card h2 {
  position: relative;
  color: #fff;
  font-size: 31px;
  margin: 0 0 18px;
}

.tc-review-login-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 44px;
  height: 3px;
  border-radius: 99px;
  background: var(--tc-blue);
}

.tc-review-login-card > p {
  margin: 0 0 20px;
  color: #d6e3f6;
  font-size: 17px;
  line-height: 1.55;
}

.tc-review-login-card form {
  display: grid;
  gap: 14px;
}

.tc-review-login-card label {
  color: #f8fbff;
  font-weight: 900;
}

.tc-review-login-card input[type="text"],
.tc-review-login-card input[type="password"] {
  width: 100%;
  min-height: 50px;
  margin-top: 7px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  font: inherit;
}

.tc-review-login-card input[type="text"]:focus,
.tc-review-login-card input[type="password"]:focus {
  outline: none;
  border-color: #2b86ff;
  box-shadow: 0 0 0 4px rgba(15, 103, 255, .22);
}

.tc-review-login-card .login-remember label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d6e3f6;
  font-weight: 800;
}

.tc-review-login-card input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--tc-blue);
}

.tc-review-login-card .button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, #1674ff, #0757e8);
  box-shadow: 0 18px 42px rgba(15, 103, 255, .32);
  font-weight: 950;
  cursor: pointer;
}

.tc-login-account-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}

.tc-login-account-actions .tc-btn {
  min-height: 46px;
}

.tc-login-account-actions .tc-help-link {
  margin: 0;
  color: #7bb7ff;
  white-space: nowrap;
}

.tc-review-invite-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.tc-review-invite-form label {
  display: grid;
  gap: 7px;
  color: #f8fbff;
  font-weight: 900;
}

.tc-review-invite-form input {
  min-height: 44px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  padding: 0 13px;
}

.tc-review-invite-form button {
  align-self: end;
  min-height: 44px;
  border: 1px solid rgba(15, 103, 255, .72);
  border-radius: 12px;
  background: rgba(2, 9, 20, .28);
  color: #dbeafe;
  font-weight: 950;
  padding: 0 16px;
}

@media (max-width: 900px) {
	.tc-review-login-grid,
	.tc-review-context,
	.tc-review-invite-form {
		grid-template-columns: 1fr;
	}
}
