:root {
  --tp-primary: #0f9f8f;
  --tp-primary-strong: #078576;
  --tp-primary-dark: #075f57;
  --tp-primary-soft: #e8f8f5;
  --tp-primary-pale: #f3fbfa;
  --tp-ink: #102a2a;
  --tp-ink-soft: #385555;
  --tp-muted: #708383;
  --tp-line: #dce9e7;
  --tp-paper: #ffffff;
  --tp-canvas: #f6faf9;
  --tp-warning: #f2b84b;
  --tp-danger: #dc5f69;
  --tp-radius-sm: 12px;
  --tp-radius: 20px;
  --tp-radius-lg: 30px;
  --tp-shadow-sm: 0 8px 24px rgba(16, 68, 63, 0.07);
  --tp-shadow: 0 20px 54px rgba(15, 75, 69, 0.12);
  --tp-shadow-lg: 0 32px 90px rgba(8, 80, 72, 0.18);
  --tp-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  background: var(--tp-canvas);
  color: var(--tp-ink);
  font-family: var(--tp-font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--tp-paper);
  color: var(--tp-ink);
  font-family: var(--tp-font);
  padding-bottom: 74px;
}

body.tp-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(15, 159, 143, 0.32);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tp-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--tp-ink);
  color: #fff;
  font-weight: 700;
}

.tp-skip-link:focus {
  transform: translateY(0);
}

.tp-container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.tp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.tp-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.admin-bar .tp-site-header {
  top: 46px;
}

.tp-site-header.is-scrolled,
.tp-menu-open .tp-site-header {
  border-color: var(--tp-line);
  box-shadow: 0 8px 28px rgba(18, 70, 66, 0.07);
}

.tp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.tp-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.tp-brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #18b9a7, #08786c);
  box-shadow: 0 8px 20px rgba(15, 159, 143, 0.25);
  color: #fff;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.tp-brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.2;
}

.tp-brand-copy strong {
  overflow: hidden;
  max-width: 165px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-brand-copy small {
  display: none;
  color: var(--tp-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.tp-custom-logo .custom-logo-link {
  display: inline-flex;
}

.tp-custom-logo img {
  width: auto;
  max-width: 176px;
  max-height: 46px;
}

.tp-desktop-nav,
.tp-account-button {
  display: none;
}

.tp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tp-menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--tp-line);
  border-radius: 13px;
  background: var(--tp-paper);
  cursor: pointer;
}

.tp-menu-toggle .tp-icon {
  width: 23px;
  height: 23px;
}

.tp-menu-icon-close,
.tp-menu-toggle[aria-expanded="true"] .tp-menu-icon-open {
  display: none;
}

.tp-menu-toggle[aria-expanded="true"] .tp-menu-icon-close {
  display: block;
}

.tp-mobile-drawer {
  position: fixed;
  inset: 72px 0 auto;
  max-height: calc(100vh - 72px);
  padding: 18px 0 24px;
  overflow-y: auto;
  transform: translateY(-12px);
  border-bottom: 1px solid var(--tp-line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--tp-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.admin-bar .tp-mobile-drawer {
  top: 118px;
}

.tp-mobile-drawer[aria-hidden="false"] {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.tp-mobile-menu,
.tp-menu,
.tp-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp-mobile-menu {
  display: grid;
  margin-bottom: 18px;
  gap: 4px;
}

.tp-mobile-menu a {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}

.tp-mobile-menu a:hover,
.tp-mobile-menu .current-menu-item > a {
  background: var(--tp-primary-soft);
  color: var(--tp-primary-dark);
}

.tp-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.tp-button:hover {
  transform: translateY(-2px);
}

.tp-button .tp-icon {
  width: 19px;
  height: 19px;
}

.tp-button-primary {
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-primary-strong));
  box-shadow: 0 13px 27px rgba(15, 159, 143, 0.23);
  color: #fff;
}

.tp-button-primary:hover {
  box-shadow: 0 17px 34px rgba(15, 159, 143, 0.31);
}

.tp-button-ghost {
  border-color: var(--tp-line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--tp-ink);
}

.tp-button-ghost:hover {
  border-color: #add9d3;
  background: var(--tp-paper);
}

.tp-button-white {
  background: #fff;
  box-shadow: 0 14px 32px rgba(3, 64, 58, 0.2);
  color: var(--tp-primary-dark);
}

.tp-button-block {
  width: 100%;
}

.tp-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 62px;
  background:
    radial-gradient(circle at 20% 0%, rgba(75, 213, 195, 0.16), transparent 34%),
    linear-gradient(155deg, #f5fcfb 0%, #ffffff 53%, #edf9f7 100%);
}

.tp-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 159, 143, 0.036) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 159, 143, 0.036) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
  pointer-events: none;
}

.tp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.tp-hero-orb-one {
  top: 100px;
  right: -110px;
  width: 270px;
  height: 270px;
  background: rgba(36, 190, 173, 0.12);
}

.tp-hero-orb-two {
  bottom: -120px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(157, 226, 218, 0.18);
}

.tp-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 54px;
}

.tp-eyebrow,
.tp-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--tp-primary-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.tp-eyebrow {
  min-height: 36px;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(15, 159, 143, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 6px 20px rgba(20, 104, 96, 0.06);
}

.tp-eyebrow .tp-icon {
  width: 16px;
  height: 16px;
}

.tp-hero h1 {
  max-width: 700px;
  margin: 20px 0 18px;
  font-size: clamp(36px, 9.4vw, 64px);
  font-weight: 880;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.tp-hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--tp-ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.tp-hero-actions {
  display: grid;
  margin-top: 28px;
  gap: 11px;
}

.tp-hero-trust {
  display: flex;
  align-items: center;
  margin-top: 28px;
  gap: 13px;
}

.tp-avatar-stack {
  display: flex;
  padding-left: 8px;
}

.tp-avatar-stack span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--tp-primary-soft);
  color: var(--tp-primary-dark);
  font-size: 11px;
  font-weight: 900;
}

.tp-avatar-stack span:nth-child(2) {
  background: #dff4ed;
}

.tp-avatar-stack span:nth-child(3) {
  background: var(--tp-ink);
  color: #fff;
}

.tp-hero-trust p {
  display: flex;
  margin: 0;
  flex-direction: column;
  line-height: 1.35;
}

.tp-hero-trust strong {
  font-size: 13px;
}

.tp-hero-trust span {
  color: var(--tp-muted);
  font-size: 11px;
}

.tp-hero-visual {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 14px 3px 32px;
}

.tp-dashboard-mock {
  position: relative;
  overflow: hidden;
  transform: rotate(-1.2deg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 27px;
  background: #fff;
  box-shadow: var(--tp-shadow-lg);
}

.tp-mock-topbar {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid #e9f0ef;
  gap: 6px;
}

.tp-mock-topbar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7e5e3;
}

.tp-mock-topbar > span:first-child {
  background: #55c5b8;
}

.tp-mock-topbar b {
  margin-left: auto;
  color: #4d6765;
  font-size: 10px;
}

.tp-mock-body {
  padding: 24px 20px 22px;
  background: linear-gradient(145deg, #f8fbfb, #eef7f5);
}

.tp-mock-greeting {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.tp-mock-greeting small,
.tp-mock-stats small,
.tp-mock-license small,
.tp-mock-domain small,
.tp-floating-card small {
  color: #718785;
  font-size: 9px;
}

.tp-mock-greeting strong {
  font-size: 17px;
  letter-spacing: -0.025em;
}

.tp-mock-stats {
  display: grid;
  margin: 17px 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.tp-mock-stats > div {
  display: grid;
  padding: 14px;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  border: 1px solid #e0ecea;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(30, 89, 83, 0.05);
  column-gap: 10px;
}

.tp-mock-stats > div > span {
  display: grid;
  width: 31px;
  height: 31px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 10px;
  background: var(--tp-primary-soft);
  color: var(--tp-primary-dark);
}

.tp-mock-stats .tp-icon {
  width: 15px;
  height: 15px;
}

.tp-mock-stats b {
  font-size: 15px;
  line-height: 1;
}

.tp-mock-license,
.tp-mock-domain {
  display: flex;
  align-items: center;
  padding: 13px;
  border: 1px solid #e1ecea;
  border-radius: 15px;
  background: #fff;
  gap: 10px;
}

.tp-mock-license > div:nth-child(2),
.tp-mock-domain > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.tp-mock-license strong,
.tp-mock-domain strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-mock-product-icon {
  display: grid !important;
  width: 34px;
  height: 34px;
  flex: 0 0 34px !important;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(140deg, #21bba9, #087a6e);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.tp-status-dot {
  padding: 4px 7px;
  border-radius: 99px;
  background: #e9f8f3;
  color: #157660;
  font-size: 8px;
  font-weight: 800;
}

.tp-mock-domain {
  margin-top: 9px;
  background: #0c8376;
  color: #fff;
}

.tp-mock-domain > .tp-icon:first-child {
  width: 32px;
  height: 32px;
  padding: 7px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.14);
}

.tp-mock-domain > .tp-icon:last-child {
  width: 18px;
  color: #b9fff1;
}

.tp-mock-domain small {
  color: rgba(255, 255, 255, 0.68);
}

.tp-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 13px 32px rgba(12, 72, 67, 0.16);
  gap: 9px;
  backdrop-filter: blur(12px);
}

.tp-floating-card > .tp-icon {
  width: 29px;
  height: 29px;
  padding: 7px;
  border-radius: 9px;
  background: var(--tp-primary-soft);
  color: var(--tp-primary-dark);
}

.tp-floating-card > span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.tp-floating-card strong {
  font-size: 10px;
}

.tp-floating-secure {
  right: -4px;
  bottom: 3px;
}

.tp-floating-update {
  top: 0;
  left: -5px;
}

.tp-benefit-strip {
  border-block: 1px solid var(--tp-line);
  background: #fff;
}

.tp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tp-benefit-grid > div {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 18px 8px;
  gap: 9px;
}

.tp-benefit-grid > div:nth-child(odd) {
  border-right: 1px solid var(--tp-line);
}

.tp-benefit-grid > div:nth-child(-n+2) {
  border-bottom: 1px solid var(--tp-line);
}

.tp-benefit-grid .tp-icon {
  width: 27px;
  height: 27px;
  padding: 5px;
  border-radius: 8px;
  background: var(--tp-primary-soft);
  color: var(--tp-primary-dark);
}

.tp-benefit-grid span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.tp-benefit-grid strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-benefit-grid small {
  display: none;
  color: var(--tp-muted);
  font-size: 10px;
}

.tp-section {
  padding: 68px 0;
}

.tp-section-heading {
  display: flex;
  margin-bottom: 30px;
  flex-direction: column;
  gap: 18px;
}

.tp-section-heading h2,
.tp-cta-card h2 {
  max-width: 720px;
  margin: 8px 0 10px;
  font-size: clamp(29px, 7vw, 45px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.tp-section-heading p {
  max-width: 650px;
  margin: 0;
  color: var(--tp-muted);
  font-size: 15px;
}

.tp-text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  color: var(--tp-primary-dark);
  font-size: 14px;
  font-weight: 800;
}

.tp-text-link .tp-icon {
  width: 17px;
  transition: transform 160ms ease;
}

.tp-text-link:hover .tp-icon {
  transform: translateX(3px);
}

.tp-products-section {
  background: #fff;
}

.tp-product-grid {
  display: grid;
  gap: 20px;
}

.tp-product-card {
  overflow: hidden;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: #fff;
  box-shadow: var(--tp-shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tp-product-card:hover {
  transform: translateY(-5px);
  border-color: #b7ded9;
  box-shadow: var(--tp-shadow);
}

.tp-product-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--tp-primary-pale);
}

.tp-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.tp-product-card:hover .tp-product-media img {
  transform: scale(1.035);
}

.tp-product-placeholder,
.tp-detail-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(74, 224, 206, 0.5), transparent 25%),
    linear-gradient(145deg, #092d2b, #0a8c7f);
  color: #fff;
  text-align: center;
}

.tp-product-placeholder b,
.tp-detail-placeholder b {
  font-size: 70px;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
}

.tp-product-placeholder small,
.tp-detail-placeholder span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tp-product-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 17px rgba(6, 56, 52, 0.13);
  color: var(--tp-primary-dark);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.tp-preview-pill {
  position: absolute;
  right: 13px;
  bottom: 13px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  transform: translateY(6px);
  border-radius: 999px;
  background: rgba(8, 47, 44, 0.86);
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  gap: 5px;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(8px);
}

.tp-preview-pill .tp-icon {
  width: 12px;
  height: 12px;
}

.tp-product-card:hover .tp-preview-pill {
  transform: translateY(0);
  opacity: 1;
}

.tp-product-content {
  padding: 20px;
}

.tp-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--tp-primary-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tp-product-meta span:last-child {
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--tp-primary-soft);
}

.tp-product-card h3 {
  margin: 10px 0 7px;
  font-size: 21px;
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.tp-product-card h3 a:hover {
  color: var(--tp-primary-dark);
}

.tp-product-content > p {
  min-height: 47px;
  margin: 0;
  color: var(--tp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.tp-card-features,
.tp-detail-features {
  display: grid;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  gap: 7px;
}

.tp-card-features li,
.tp-detail-features li {
  display: flex;
  align-items: flex-start;
  color: var(--tp-ink-soft);
  font-size: 12px;
  gap: 7px;
}

.tp-card-features .tp-icon,
.tp-detail-features .tp-icon {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  background: var(--tp-primary-soft);
  color: var(--tp-primary-dark);
}

.tp-product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--tp-line);
  gap: 12px;
}

.tp-price-wrap {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 0 7px;
}

.tp-price-wrap del {
  color: #91a1a0;
  font-size: 11px;
}

.tp-price-wrap strong {
  grid-column: 1 / 3;
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.tp-price-wrap small {
  grid-column: 1 / 3;
  color: var(--tp-muted);
  font-size: 9px;
}

.tp-card-action {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  border-radius: 13px;
  background: var(--tp-primary-soft);
  color: var(--tp-primary-dark);
  transition: background 160ms ease, color 160ms ease;
}

.tp-card-action:hover {
  background: var(--tp-primary);
  color: #fff;
}

.tp-process-section {
  background: var(--tp-canvas);
}

.tp-heading-centered {
  text-align: center;
}

.tp-heading-centered > div,
.tp-heading-centered h2,
.tp-heading-centered p {
  margin-inline: auto;
}

.tp-process-grid {
  display: grid;
  gap: 15px;
}

.tp-process-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px 23px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: #fff;
  box-shadow: var(--tp-shadow-sm);
}

.tp-step-number {
  position: absolute;
  top: 14px;
  right: 18px;
  color: #e4f1ef;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.tp-step-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--tp-primary-soft);
  color: var(--tp-primary-dark);
}

.tp-process-grid h3 {
  margin: 18px 0 7px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.tp-process-grid p {
  margin: 0;
  color: var(--tp-muted);
  font-size: 13px;
}

.tp-cta-section {
  padding-top: 0;
  background: var(--tp-canvas);
}

.tp-cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  padding: 34px 25px;
  border-radius: var(--tp-radius-lg);
  background:
    radial-gradient(circle at 95% 10%, rgba(99, 235, 218, 0.32), transparent 30%),
    linear-gradient(135deg, #075e56, #0b998b);
  box-shadow: 0 24px 55px rgba(7, 95, 87, 0.2);
  color: #fff;
  gap: 25px;
}

.tp-cta-card::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.04), 0 0 0 80px rgba(255, 255, 255, 0.025);
  content: "";
}

.tp-cta-card > * {
  position: relative;
  z-index: 2;
}

.tp-cta-card h2 {
  margin-top: 12px;
  color: #fff;
}

.tp-cta-card p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.tp-eyebrow-light {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.tp-cta-card .tp-button {
  align-self: center;
}

.tp-empty-state {
  padding: 46px 24px;
  border: 1px dashed #b9d9d5;
  border-radius: var(--tp-radius);
  background: var(--tp-primary-pale);
  text-align: center;
}

.tp-empty-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 19px;
  background: var(--tp-primary-soft);
  color: var(--tp-primary-dark);
}

.tp-empty-icon .tp-icon {
  width: 29px;
  height: 29px;
}

.tp-empty-state h2,
.tp-empty-state h3 {
  margin: 0 0 7px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.tp-empty-state p {
  max-width: 590px;
  margin: 0 auto 20px;
  color: var(--tp-muted);
}

.tp-site-footer {
  padding: 58px 0 22px;
  background: #082d2b;
  color: #fff;
}

.tp-footer-main {
  display: grid;
  gap: 36px;
}

.tp-brand-light .tp-brand-copy small,
.tp-brand-light .tp-brand-copy strong {
  color: #fff;
}

.tp-footer-brand > p {
  max-width: 430px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.tp-footer-links h2,
.tp-footer-assurance h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-footer-menu {
  display: grid;
  gap: 8px;
}

.tp-footer-menu a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.tp-footer-menu a:hover {
  color: #fff;
}

.tp-footer-assurance ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.tp-footer-assurance li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  gap: 9px;
}

.tp-footer-assurance .tp-icon {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #72dacc;
}

.tp-footer-bottom {
  display: flex;
  margin-top: 40px;
  padding-top: 20px;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  gap: 4px;
}

.tp-footer-bottom p {
  margin: 0;
}

.tp-bottom-nav {
  position: fixed;
  z-index: 900;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 66px;
  padding: 7px 10px max(7px, env(safe-area-inset-bottom));
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--tp-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 28px rgba(14, 65, 61, 0.08);
  backdrop-filter: blur(16px);
}

.tp-bottom-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 11px;
  color: #829392;
  font-size: 9px;
  font-weight: 700;
  gap: 2px;
}

.tp-bottom-nav a.is-active,
.tp-bottom-nav a:hover {
  background: var(--tp-primary-pale);
  color: var(--tp-primary-dark);
}

.tp-bottom-nav .tp-icon {
  width: 20px;
  height: 20px;
}

.tp-page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 58px;
  background:
    radial-gradient(circle at 85% 15%, rgba(41, 202, 184, 0.16), transparent 26%),
    linear-gradient(145deg, #f2fbf9, #fff);
  text-align: center;
}

.tp-page-hero::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 159, 143, 0.11) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(to right, transparent, #000 45%, transparent);
  pointer-events: none;
}

.tp-page-hero .tp-container {
  position: relative;
  z-index: 2;
}

.tp-page-hero h1 {
  margin: 9px 0 12px;
  font-size: clamp(34px, 8vw, 52px);
  font-weight: 860;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.tp-page-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--tp-muted);
}

.tp-page-hero-compact {
  padding: 48px 0 42px;
}

.tp-page-content {
  min-height: 360px;
  padding-top: 48px;
  padding-bottom: 70px;
}

.tp-app-content {
  width: min(100% - 20px, 1240px);
}

.tp-breadcrumb {
  display: flex;
  align-items: center;
  padding-top: 24px;
  color: var(--tp-muted);
  font-size: 12px;
  gap: 6px;
}

.tp-breadcrumb a:hover {
  color: var(--tp-primary-dark);
}

.tp-breadcrumb .tp-icon {
  width: 14px;
  height: 14px;
}

.tp-product-detail-grid {
  display: grid;
  padding-top: 26px;
  padding-bottom: 60px;
  gap: 34px;
}

.tp-detail-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius-lg);
  background: var(--tp-primary-pale);
  box-shadow: var(--tp-shadow);
}

.tp-detail-media > img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.tp-detail-placeholder {
  min-height: 330px;
}

.tp-demo-overlay {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(11px);
}

.tp-detail-summary h1 {
  margin: 9px 0 13px;
  font-size: clamp(35px, 8vw, 55px);
  font-weight: 870;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.tp-detail-excerpt {
  margin: 0;
  color: var(--tp-ink-soft);
  font-size: 16px;
}

.tp-detail-features {
  margin-top: 22px;
  grid-template-columns: 1fr;
  gap: 10px;
}

.tp-detail-features li {
  font-size: 13px;
}

.tp-purchase-card {
  display: grid;
  margin-top: 25px;
  padding: 20px;
  border: 1px solid #cde4e1;
  border-radius: var(--tp-radius);
  background: linear-gradient(145deg, #f3fbfa, #fff);
  box-shadow: var(--tp-shadow-sm);
  gap: 15px;
}

.tp-purchase-card > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.tp-purchase-card small {
  color: var(--tp-muted);
  font-size: 12px;
}

.tp-purchase-card strong {
  font-size: 26px;
  letter-spacing: -0.04em;
}

.tp-purchase-card > p {
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: center;
  color: var(--tp-muted);
  font-size: 10px;
  gap: 6px;
  text-align: center;
}

.tp-purchase-card > p .tp-icon {
  width: 15px;
  height: 15px;
  color: var(--tp-primary-dark);
}

.tp-detail-content-section {
  background: var(--tp-canvas);
}

.tp-detail-content-grid {
  display: grid;
  gap: 28px;
}

.tp-prose {
  color: var(--tp-ink-soft);
  font-size: 15px;
}

.tp-prose > *:first-child {
  margin-top: 0;
}

.tp-prose h1,
.tp-prose h2,
.tp-prose h3,
.tp-prose h4 {
  color: var(--tp-ink);
  font-weight: 830;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.tp-prose h2 {
  margin: 1.6em 0 0.6em;
  font-size: 29px;
}

.tp-prose h3 {
  font-size: 22px;
}

.tp-prose a {
  color: var(--tp-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tp-prose blockquote {
  margin: 25px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--tp-primary);
  border-radius: 0 14px 14px 0;
  background: var(--tp-primary-pale);
}

.tp-prose table {
  width: 100%;
  border-collapse: collapse;
}

.tp-prose th,
.tp-prose td {
  padding: 10px;
  border: 1px solid var(--tp-line);
  text-align: left;
}

.tp-spec-card {
  height: fit-content;
  padding: 22px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: #fff;
  box-shadow: var(--tp-shadow-sm);
}

.tp-spec-card h2 {
  margin: 0 0 15px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.tp-spec-card dl {
  margin: 0;
}

.tp-spec-card dl > div {
  display: flex;
  justify-content: space-between;
}

.tp-spec-card dt,
.tp-spec-card dd {
  display: inline-block;
  width: 49%;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--tp-line);
  font-size: 12px;
}

.tp-spec-card dt {
  clear: left;
  color: var(--tp-muted);
}

.tp-spec-card dd {
  float: right;
  font-weight: 750;
  text-align: right;
}

.tp-spec-card dl::after {
  display: block;
  clear: both;
  content: "";
}

.tp-pagination {
  margin-top: 35px;
}

.tp-pagination .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
}

.tp-pagination .page-numbers {
  display: grid;
  min-width: 40px;
  min-height: 40px;
  padding: 6px 10px;
  place-items: center;
  border: 1px solid var(--tp-line);
  border-radius: 11px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.tp-pagination .current,
.tp-pagination a:hover {
  border-color: var(--tp-primary);
  background: var(--tp-primary);
  color: #fff;
}

.tp-post-grid {
  display: grid;
  gap: 20px;
}

.tp-post-card {
  overflow: hidden;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: #fff;
  box-shadow: var(--tp-shadow-sm);
}

.tp-post-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.tp-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-post-card > div {
  padding: 20px;
}

.tp-post-card time {
  color: var(--tp-primary-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.tp-post-card h2 {
  margin: 8px 0;
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.tp-post-card p {
  color: var(--tp-muted);
  font-size: 13px;
}

.tp-not-found {
  display: grid;
  min-height: 70vh;
  padding: 60px 0;
  place-items: center;
  background: var(--tp-canvas);
  text-align: center;
}

.tp-not-found span:first-child {
  color: #cce8e4;
  font-size: clamp(90px, 28vw, 190px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.tp-not-found h1 {
  margin: 22px 0 8px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.tp-not-found p {
  margin: 0 0 24px;
  color: var(--tp-muted);
}

@media (min-width: 560px) {
  .tp-container {
    width: min(100% - 48px, 1180px);
  }

  .tp-brand-copy small {
    display: block;
  }

  .tp-hero-actions {
    display: flex;
  }

  .tp-hero-actions .tp-button {
    width: auto;
  }

  .tp-benefit-grid strong {
    font-size: 12px;
  }

  .tp-benefit-grid small {
    display: block;
  }

  .tp-product-grid,
  .tp-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .tp-process-grid article:last-child {
    grid-column: 1 / 3;
  }

  .tp-footer-main {
    grid-template-columns: minmax(0, 1.7fr) 1fr;
  }

  .tp-footer-assurance {
    grid-column: 1 / 3;
  }

  .tp-footer-bottom {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .tp-detail-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-purchase-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .tp-purchase-card .tp-button {
    width: auto;
  }

  .tp-purchase-card > p {
    grid-column: 1 / 3;
  }

  .tp-demo-overlay {
    right: 20px;
    bottom: 20px;
    left: auto;
  }
}

@media (min-width: 783px) {
  .admin-bar .tp-site-header {
    top: 32px;
  }

  .admin-bar .tp-mobile-drawer {
    top: 104px;
  }

  .tp-hero {
    padding: 76px 0 85px;
  }

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

  .tp-benefit-grid > div {
    padding: 21px 15px;
    border-right: 1px solid var(--tp-line);
    border-bottom: 0 !important;
  }

  .tp-benefit-grid > div:last-child {
    border-right: 0;
  }

  .tp-section {
    padding: 88px 0;
  }

  .tp-section-heading {
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
  }

  .tp-heading-centered {
    align-items: center;
    justify-content: center;
  }

  .tp-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tp-process-grid article:last-child {
    grid-column: auto;
  }

  .tp-cta-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 50px;
  }

  .tp-footer-main {
    grid-template-columns: minmax(0, 2fr) 1fr 1.2fr;
  }

  .tp-footer-assurance {
    grid-column: auto;
  }

  .tp-product-detail-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: center;
    padding-top: 42px;
    padding-bottom: 85px;
    gap: 58px;
  }

  .tp-detail-content-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 55px;
  }

  .tp-spec-card {
    position: sticky;
    top: 105px;
  }
}

@media (min-width: 960px) {
  body {
    padding-bottom: 0;
  }

  .tp-header-inner {
    min-height: 80px;
  }

  .tp-menu-toggle,
  .tp-mobile-drawer,
  .tp-bottom-nav {
    display: none;
  }

  .tp-desktop-nav,
  .tp-account-button {
    display: flex;
  }

  .tp-menu {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .tp-menu > li {
    position: relative;
  }

  .tp-menu > li > a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 9px 13px;
    border-radius: 11px;
    color: var(--tp-ink-soft);
    font-size: 13px;
    font-weight: 720;
  }

  .tp-menu > li > a:hover,
  .tp-menu > .current-menu-item > a,
  .tp-menu > .current_page_item > a {
    background: var(--tp-primary-pale);
    color: var(--tp-primary-dark);
  }

  .tp-menu .sub-menu {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    display: grid;
    min-width: 190px;
    margin: 0;
    padding: 8px;
    transform: translateY(5px);
    border: 1px solid var(--tp-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--tp-shadow);
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms ease, transform 150ms ease;
  }

  .tp-menu li:hover > .sub-menu,
  .tp-menu li:focus-within > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .tp-menu .sub-menu a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 650;
  }

  .tp-menu .sub-menu a:hover {
    background: var(--tp-primary-pale);
    color: var(--tp-primary-dark);
  }

  .tp-account-button {
    min-height: 43px;
    align-items: center;
    padding: 9px 14px;
    border: 1px solid var(--tp-line);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    gap: 7px;
  }

  .tp-account-button:hover {
    border-color: #a8d7d1;
    background: var(--tp-primary-pale);
    color: var(--tp-primary-dark);
  }

  .tp-account-button .tp-icon {
    width: 17px;
    height: 17px;
  }

  .tp-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
    align-items: center;
    gap: 60px;
  }

  .tp-hero-visual {
    margin-right: 8px;
  }

  .tp-floating-update {
    left: -38px;
  }

  .tp-floating-secure {
    right: -28px;
  }

  .tp-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tp-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .tp-brand-copy strong {
    max-width: 220px;
    font-size: 17px;
  }

  .tp-menu > li > a {
    padding-inline: 16px;
  }

  .tp-hero {
    min-height: 680px;
    display: flex;
    align-items: center;
  }

  .tp-dashboard-mock {
    transform: perspective(900px) rotateY(-4deg) rotateZ(-1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

