.tc-landing {
  --tc-ink: #0f172a;
  --tc-ink-soft: #334155;
  --tc-muted: #64748b;
  --tc-line: #d9e2ec;
  --tc-line-strong: #b9c8d8;
  --tc-paper: #f8fbfc;
  --tc-card: #ffffff;
  --tc-night: #07111f;
  --tc-night-2: #0d1b2f;
  --tc-teal: #0f9f95;
  --tc-teal-dark: #0f766e;
  --tc-teal-soft: #dff7f3;
  --tc-warm: #f59e0b;
  --tc-warm-soft: #fff2cf;
  --tc-blue-soft: #e7f0ff;
  --tc-focus: #facc15;
  color: var(--tc-ink);
  background: var(--tc-paper);
  overflow-x: clip;
}

.tc-landing * {
  box-sizing: border-box;
}

.tc-container {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}

.tc-landing a:focus-visible,
.tc-landing button:focus-visible,
.tc-landing summary:focus-visible {
  outline: 3px solid var(--tc-focus);
  outline-offset: 4px;
}

.tc-landing svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tc-hero {
  padding: 34px 0 26px;
  background:
    linear-gradient(180deg, #eef7f6 0%, var(--tc-paper) 70%),
    radial-gradient(circle at top right, rgba(15, 159, 149, 0.12), transparent 28%);
}

.tc-hero-grid {
  display: grid;
  gap: 26px;
  align-items: center;
}

.tc-hero-copy {
  min-width: 0;
}

.tc-kicker,
.tc-eyebrow {
  margin: 0 0 10px;
  color: var(--tc-teal-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tc-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--tc-ink);
  font-size: clamp(34px, 11vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.tc-hero-text {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--tc-ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.tc-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.tc-actions-center {
  justify-content: stretch;
}

.tc-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.tc-btn:hover {
  transform: translateY(-1px);
}

.tc-btn-primary {
  color: #ffffff;
  background: var(--tc-teal-dark);
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.18);
}

.tc-btn-secondary {
  color: var(--tc-ink);
  border-color: var(--tc-line-strong);
  background: #ffffff;
}

.tc-trial-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 159, 149, 0.25);
  background: #ffffff;
  color: var(--tc-ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

.tc-trial-note span {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--tc-teal);
  box-shadow: 0 0 0 5px rgba(15, 159, 149, 0.12);
}

.tc-agenda-shell {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--tc-line-strong);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(#ffffff, #f7fbfb);
  background-size: 28px 28px, auto;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.tc-agenda-top {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
  color: #ffffff;
  background: var(--tc-night);
}

.tc-agenda-top div:first-child {
  display: grid;
  gap: 3px;
}

.tc-agenda-top span {
  color: #a7f3d0;
  font-size: 14px;
}

.tc-agenda-top strong {
  font-size: 24px;
}

.tc-agenda-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.tc-agenda-nav button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.tc-agenda-nav span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.tc-agenda-days {
  display: none;
}

.tc-agenda-grid {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: stretch;
}

.tc-time-col {
  display: grid;
  grid-template-rows: repeat(4, minmax(74px, 1fr));
  gap: 8px;
  padding-top: 36px;
}

.tc-time-col span {
  color: var(--tc-muted);
  font-size: 14px;
  line-height: 1;
}

.tc-day-col {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 360px;
  padding: 44px 10px 12px;
  border: 1px solid var(--tc-line);
  border-radius: 22px;
  background:
    linear-gradient(var(--tc-line) 1px, transparent 1px),
    #ffffff;
  background-size: 100% 86px;
}

.tc-day-col-muted {
  display: none;
}

.tc-day-current {
  border-color: rgba(15, 159, 149, 0.34);
  box-shadow: inset 0 0 0 1px rgba(15, 159, 149, 0.08);
}

.tc-today-tab {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--tc-teal-dark);
  background: var(--tc-teal-soft);
  font-size: 14px;
  font-weight: 900;
}

.tc-appointment-card {
  display: grid;
  gap: 5px;
  min-height: 82px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--tc-line);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.tc-appointment-card span,
.tc-appointment-card small,
.tc-open-slot,
.tc-reservation-alert small {
  font-size: 14px;
}

.tc-appointment-card span {
  color: var(--tc-muted);
  font-weight: 750;
}

.tc-appointment-card strong {
  color: var(--tc-ink);
  font-size: 16px;
}

.tc-appointment-card small {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 850;
}

.tc-card-confirmed {
  border-color: rgba(15, 159, 149, 0.35);
  background: #f0fcf9;
}

.tc-card-confirmed small {
  color: var(--tc-teal-dark);
  background: #d8f6ef;
}

.tc-card-new {
  border-color: rgba(245, 158, 11, 0.42);
  background: #fff9eb;
  animation: tc-appointment-in 0.7s ease both;
}

.tc-card-new small {
  color: #92400e;
  background: var(--tc-warm-soft);
}

.tc-card-soft {
  background: #f7fafc;
}

.tc-card-soft small {
  color: var(--tc-muted);
  background: #edf2f7;
}

.tc-open-slot {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px;
  border: 1px dashed rgba(15, 159, 149, 0.45);
  border-radius: 14px;
  color: var(--tc-teal-dark);
  background: #f5fffc;
  font-weight: 900;
}

.tc-open-slot-live {
  animation: tc-slot-pulse 2.8s ease-in-out infinite;
}

.tc-reservation-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(245, 158, 11, 0.38);
  border-radius: 18px;
  background: #fff7e6;
  box-shadow: 0 14px 28px rgba(146, 64, 14, 0.12);
  animation: tc-alert-float 3.6s ease-in-out infinite;
}

.tc-reservation-alert > span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--tc-warm);
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.14);
}

.tc-reservation-alert div {
  display: grid;
  gap: 2px;
}

.tc-reservation-alert strong {
  font-size: 16px;
}

.tc-reservation-alert small {
  color: #7c2d12;
}

.tc-qr-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--tc-line);
  border-radius: 20px;
  background: #ffffff;
}

.tc-qr-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tc-ink);
}

.tc-qr-card svg {
  color: var(--tc-teal-dark);
}

.tc-fake-qr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 118px;
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--tc-line);
}

.tc-fake-qr i {
  border-radius: 4px;
  background: var(--tc-night);
}

.tc-day-summary {
  padding: 16px 0;
  border-block: 1px solid var(--tc-line);
  background: #ffffff;
}

.tc-summary-grid {
  display: grid;
  gap: 10px;
}

.tc-summary-grid div,
.tc-feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--tc-ink-soft);
  font-size: 16px;
}

.tc-summary-grid svg,
.tc-feature-list svg {
  flex: 0 0 auto;
  color: var(--tc-teal-dark);
}

.tc-section {
  padding: 42px 0;
  background: var(--tc-paper);
}

.tc-section-heading {
  max-width: 780px;
  margin-bottom: 22px;
}

.tc-section h2,
.tc-final-box h2 {
  margin: 0;
  color: var(--tc-ink);
  font-size: clamp(28px, 8vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.tc-section-text {
  margin: 14px 0 0;
  color: var(--tc-ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.tc-video-grid {
  display: grid;
  gap: 24px;
}

.tc-video-section {
  background: #ffffff;
}

.tc-video-layout {
  display: grid;
  gap: 16px;
}

.tc-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--tc-line-strong);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.tc-video-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  background: var(--tc-night);
}

.tc-video-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.tc-video-bar strong {
  margin-left: 5px;
  color: #ffffff;
  font-size: 14px;
}

.tc-video-agenda {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  height: calc(100% - 38px);
  padding: 12px;
  background:
    linear-gradient(var(--tc-line) 1px, transparent 1px),
    #f8fbfc;
  background-size: 100% 32%;
}

.tc-video-agenda div {
  border-radius: 12px;
  background: #e8f3f1;
}

.tc-video-agenda article {
  border-radius: 14px;
  border: 1px solid rgba(15, 159, 149, 0.24);
  background: #ffffff;
}

.tc-video-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tc-video-steps li {
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--tc-line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--tc-ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

.tc-problem {
  background: #f2f7f7;
}

.tc-disorder-grid {
  display: grid;
  gap: 12px;
}

.tc-disorder-card {
  position: relative;
  min-height: 138px;
  padding: 16px;
  border: 1px solid #e5c6c6;
  border-left: 5px solid #ef4444;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(127, 29, 29, 0.06);
}

.tc-disorder-card span {
  color: #991b1b;
  font-size: 14px;
  font-weight: 900;
}

.tc-disorder-card strong {
  display: block;
  margin: 8px 0;
  color: var(--tc-ink);
  font-size: 17px;
}

.tc-disorder-card p,
.tc-step-grid p,
.tc-plan-card p,
.tc-faq p,
.tc-final-box p {
  margin: 0;
  color: var(--tc-ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.tc-solution-grid {
  display: grid;
  gap: 24px;
}

.tc-organized-agenda {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--tc-line-strong);
  border-radius: 24px;
  background:
    linear-gradient(var(--tc-line) 1px, transparent 1px),
    #ffffff;
  background-size: 100% 74px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.tc-organized-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 159, 149, 0.22);
  background: #f3fffc;
}

.tc-organized-row span {
  color: var(--tc-teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.tc-organized-row strong {
  font-size: 16px;
}

.tc-organized-row small {
  grid-column: 2;
  color: var(--tc-muted);
  font-size: 14px;
}

.tc-organized-open {
  border-style: dashed;
  background: #ffffff;
}

.tc-feature-list {
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.tc-steps {
  background: #ffffff;
}

.tc-step-grid {
  display: grid;
  gap: 14px;
}

.tc-step-grid article {
  position: relative;
  padding: 20px;
  border: 1px solid var(--tc-line);
  border-radius: 22px;
  background: #ffffff;
}

.tc-step-grid article::after {
  content: "";
  position: absolute;
  left: 36px;
  bottom: -15px;
  width: 2px;
  height: 15px;
  background: var(--tc-line-strong);
}

.tc-step-grid article:last-child::after {
  display: none;
}

.tc-step-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--tc-teal-dark);
  font-weight: 900;
}

.tc-step-grid h3,
.tc-plan-card h3 {
  margin: 0 0 10px;
  color: var(--tc-ink);
  font-size: 22px;
}

.tc-business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.tc-business-grid span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--tc-line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--tc-ink-soft);
  font-size: 16px;
  font-weight: 750;
}

.tc-compare {
  display: grid;
  gap: 12px;
}

.tc-compare-row {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--tc-line);
  border-radius: 18px;
  background: #ffffff;
}

.tc-compare-head {
  display: none;
}

.tc-compare-row > div {
  min-height: 44px;
  padding: 12px 14px;
  border-bottom: 1px solid #edf2f7;
  color: var(--tc-ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

.tc-compare-row > div:first-child {
  color: var(--tc-ink);
  font-weight: 900;
  background: #f7fbfc;
}

.tc-compare-row > div:last-child {
  border-bottom: 0;
}

.tc-plan-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.tc-plan-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--tc-line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.tc-plan-featured {
  border-color: rgba(15, 159, 149, 0.52);
  box-shadow: 0 22px 48px rgba(15, 118, 110, 0.14);
}

.tc-plan-badge {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--tc-teal-dark);
  background: var(--tc-teal-soft);
  border: 1px solid rgba(15, 159, 149, 0.25);
  font-size: 14px;
  font-weight: 900;
}

.tc-plan-label {
  margin: 0 0 8px !important;
  color: var(--tc-teal-dark) !important;
  font-weight: 900;
}

.tc-price {
  margin: 0 0 12px !important;
  color: var(--tc-ink) !important;
  font-size: 30px !important;
  font-weight: 900;
  line-height: 1.1 !important;
}

.tc-price span {
  color: var(--tc-muted);
  font-size: 16px;
  font-weight: 700;
}

.tc-plan-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--tc-ink-soft);
  font-size: 16px;
  line-height: 1.5;
}

.tc-plan-card li {
  position: relative;
  padding-left: 22px;
}

.tc-plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--tc-teal);
}

.tc-plan-card .tc-btn {
  width: 100%;
}

.tc-faq {
  background: #ffffff;
}

.tc-faq-grid {
  display: grid;
  gap: 12px;
}

.tc-faq details {
  border: 1px solid var(--tc-line);
  border-radius: 18px;
  padding: 16px;
  background: #ffffff;
}

.tc-faq summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--tc-ink);
  font-size: 16px;
  font-weight: 900;
}

.tc-faq p {
  margin-top: 10px;
}

.tc-final-cta {
  padding: 18px 0 52px;
  background: var(--tc-paper);
}

.tc-final-box {
  padding: 28px 18px;
  border: 1px solid rgba(15, 159, 149, 0.22);
  border-radius: 28px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
}

.tc-final-box h2 {
  max-width: 760px;
  margin: 0 auto 12px;
}

.tc-final-box p {
  max-width: 680px;
  margin-inline: auto;
}

@keyframes tc-appointment-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tc-slot-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(15, 159, 149, 0.12);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(15, 159, 149, 0.1);
  }
}

@keyframes tc-alert-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (min-width: 560px) {
  .tc-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .tc-actions-center {
    justify-content: center;
  }

  .tc-summary-grid,
  .tc-business-grid,
  .tc-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tc-agenda-top {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .tc-container {
    width: min(100% - 48px, 1120px);
  }

  .tc-hero {
    padding: 48px 0 34px;
  }

  .tc-video-grid,
  .tc-solution-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .tc-video-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  }

  .tc-disorder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tc-step-grid,
  .tc-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tc-step-grid article::after {
    left: auto;
    right: -15px;
    top: 40px;
    bottom: auto;
    width: 15px;
    height: 2px;
  }

  .tc-compare {
    display: block;
    overflow: hidden;
    border: 1px solid var(--tc-line);
    border-radius: 20px;
    background: #ffffff;
  }

  .tc-compare-row,
  .tc-compare-head {
    display: grid;
    grid-template-columns: 1.1fr repeat(3, 1fr);
    border: 0;
    border-radius: 0;
  }

  .tc-compare-row > div {
    border-bottom: 1px solid #edf2f7;
    border-left: 1px solid #edf2f7;
  }

  .tc-compare-row > div:first-child {
    border-left: 0;
  }

  .tc-compare-head > div {
    color: var(--tc-ink);
    font-weight: 900;
    background: #eef7f6;
  }
}

@media (min-width: 1040px) {
  .tc-hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(600px, 1.18fr);
    gap: 42px;
  }

  .tc-hero h1 {
    font-size: clamp(44px, 5vw, 62px);
  }

  .tc-agenda-shell {
    min-height: 560px;
    padding: 18px;
  }

  .tc-agenda-days {
    display: grid;
    grid-template-columns: 60px repeat(3, 1fr);
    gap: 10px;
    align-items: center;
  }

  .tc-agenda-days::before {
    content: "";
  }

  .tc-agenda-days span {
    min-height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--tc-line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--tc-muted);
    font-size: 14px;
    font-weight: 850;
  }

  .tc-agenda-days span:nth-child(4),
  .tc-agenda-days span:nth-child(5) {
    display: none;
  }

  .tc-day-active {
    color: var(--tc-teal-dark) !important;
    background: var(--tc-teal-soft) !important;
    border-color: rgba(15, 159, 149, 0.28) !important;
  }

  .tc-agenda-grid {
    grid-template-columns: 60px repeat(3, minmax(0, 1fr));
  }

  .tc-day-col-muted {
    display: grid;
  }

  .tc-day-col {
    min-height: 390px;
  }

  .tc-reservation-alert {
    position: absolute;
    right: 24px;
    bottom: 108px;
    width: min(270px, 42%);
  }

  .tc-qr-card {
    position: absolute;
    left: 24px;
    bottom: 20px;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: min(330px, 46%);
  }

  .tc-summary-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tc-disorder-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tc-business-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .tc-btn,
  .tc-card-new,
  .tc-open-slot-live,
  .tc-reservation-alert {
    animation: none;
    transition: none;
  }

  .tc-btn:hover {
    transform: none;
  }
}
