/* Variables */
:root {
    --tmh-bg: #fff;
    --tmh-soft: #f5f8fb;
    --tmh-text: #14243a;
    --tmh-muted: #5c6b7e;
    --tmh-primary: #2360e8;
    --tmh-primary-hover: #164ac1;
    --tmh-teal: #087e71;
    --tmh-navy: #101f36;
    --tmh-border: #e0e7ee;
    --tmh-radius: 14px;
    --tmh-shadow: 0 18px 50px #172c4610;
    --tmh-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
/* Reset and typography */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-padding-top: 100px;
}
body {
    margin: 0;
    background: var(--tmh-bg);
    color: var(--tmh-text);
    font-family: var(--tmh-font);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open {
    overflow: hidden;
}
h1,
h2,
h3,
h4,
p {
    margin: 0;
}
h1,
h2,
h3,
h4 {
    line-height: 1.17;
    letter-spacing: -0.035em;
}
h1 {
    font-size: clamp(44px, 4.45vw, 65px);
    font-weight: 720;
    line-height: 1.08;
}
h2 {
    font-size: clamp(32px, 3.15vw, 44px);
    font-weight: 700;
}
h3 {
    font-size: 20px;
}
p {
    color: var(--tmh-muted);
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input {
    font: inherit;
}
button,
a,
input {
    -webkit-tap-highlight-color: transparent;
}
button {
    cursor: pointer;
}
button:disabled {
    cursor: default;
}
button {
    color: inherit;
}
img,
svg {
    vertical-align: middle;
}
img {
    max-width: 100%;
    height: auto;
}
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
dl,
dd {
    margin: 0;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid #b16e00;
    outline-offset: 5px;
}
::selection {
    background: #cbdfff;
    color: #102d53;
}
[hidden] {
    display: none !important;
}
.icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.text-teal {
    color: var(--tmh-teal);
}
.text-blue {
    color: var(--tmh-primary);
}
.small-note {
    font-size: 13px;
    line-height: 1.7;
}
.centered {
    text-align: center;
}
.skip-link {
    position: fixed;
    left: 20px;
    top: -100px;
    z-index: 100;
    background: #fff;
    color: var(--tmh-text);
    padding: 12px 20px;
    border-radius: 6px;
}
.skip-link:focus {
    top: 12px;
}
/* Layout */
.container {
    width: min(1200px, calc(100% - 80px));
    margin-inline: auto;
}
.section {
    padding: 100px 0;
}
.section-soft {
    background: var(--tmh-soft);
    border-block: 1px solid #edf1f5;
}
.section-navy {
    background: var(--tmh-navy);
    color: #fff;
}
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.section-copy p {
    margin-top: 22px;
    max-width: 510px;
}
.section-copy .text-link {
    margin-top: 26px;
}
.section-heading {
    margin-bottom: 46px;
}
.section-heading p {
    margin-top: 20px;
    font-size: 17px;
}
.section-heading .eyebrow,
.section-copy > .eyebrow {
    margin-bottom: 17px;
}
.eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.5;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tmh-teal);
}
.section-grid {
    background-image:
        linear-gradient(#e7edf450 1px, transparent 1px),
        linear-gradient(90deg, #e7edf450 1px, transparent 1px);
    background-size: 48px 48px;
    background-color: #f9fbfd;
}
.icon-tile {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: #edf3ff;
    border: 1px solid #e0e9fb;
    border-radius: 10px;
    color: var(--tmh-primary);
}
.large-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    background: #e9f6f1;
    color: var(--tmh-teal);
}
.large-icon .icon {
    width: 30px;
    height: 30px;
}
/* Header */
.site-header {
    height: 82px;
    position: sticky;
    top: 0;
    background: var(--tmh-navy);
    color: #fff;
    z-index: 50;
    border-bottom: 1px solid #ffffff0c;
}
.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 38px;
}
.brand {
    display: inline-flex;
    flex-shrink: 0;
}
.brand img {
    display: block;
}
.primary-navigation {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 23px;
}
.primary-navigation a {
    font-size: 12px;
    font-weight: 550;
    white-space: nowrap;
}
.nav-links a,
.nav-actions > a:first-child {
    color: #c7d1e1;
}
.nav-links a:hover,
.nav-links a[aria-current],
.nav-actions > a:first-child:hover {
    color: #fff;
}
.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid #64758c;
    border-radius: 6px;
    padding: 9px 11px;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
}
.menu-bars {
    display: block;
    width: 16px;
    height: 12px;
    border-block: 1.5px solid currentColor;
    position: relative;
}
.menu-bars::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    border-top: 1.5px solid currentColor;
}
/* Buttons */
.button-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 49px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: var(--tmh-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.6;
    transition:
        background 0.18s,
        box-shadow 0.18s;
}
.button:hover {
    background: var(--tmh-primary-hover);
    box-shadow: 0 4px 14px #2360e82a;
}
.button .icon {
    width: 17px;
    height: 17px;
}
.button-small {
    min-height: 39px;
    padding: 9px 15px;
    gap: 12px;
}
.button-outline {
    background: white;
    color: var(--tmh-text);
    border-color: #ccd6e2;
}
.button-outline:hover {
    background: #f0f5fb;
}
.button-outline-light {
    border-color: #60738f;
    background: transparent;
}
.button-outline-light:hover {
    background: #ffffff12;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 650;
    color: var(--tmh-primary);
}
.text-link .icon {
    width: 17px;
    height: 17px;
    transition: transform 0.2s;
}
.text-link:hover .icon {
    transform: translateX(3px);
}
.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.text-link.light {
    color: #dce8ff;
}
/* Hero */
.hero {
    padding: 76px 0 0;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.04fr;
    gap: 56px;
    align-items: center;
}
.hero-copy .eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    font-size: 10px;
}
.eyebrow-line {
    width: 21px;
    height: 2px;
    background: var(--tmh-teal);
}
.hero-copy h1 span {
    color: var(--tmh-primary);
}
.hero-description {
    font-size: 17px;
    line-height: 1.8;
    margin-top: 24px;
    max-width: 450px;
}
.hero-price {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    margin-top: 24px;
}
.price-dot {
    width: 6px;
    height: 6px;
    background: var(--tmh-teal);
    border-radius: 50%;
    margin-right: 3px;
}
.hero-price strong {
    font-weight: 750;
}
.hero-copy .button-row {
    margin-top: 24px;
}
.hero-small {
    font-size: 11px;
    line-height: 1.9;
    margin-top: 18px;
}
.hero-copy > .text-link {
    font-size: 11px;
    margin-top: 14px;
}
.hero-visual {
    padding: 8px 0 26px;
    position: relative;
}
.hero-audience {
    padding-top: 62px;
    padding-bottom: 31px;
    display: flex;
    align-items: center;
    gap: 44px;
}
.hero-audience > span {
    font-size: 9px;
    color: var(--tmh-muted);
    font-weight: 650;
    letter-spacing: 0.12em;
}
.hero-audience > div {
    display: flex;
    gap: 42px;
    color: #536276;
    font-size: 13px;
    font-weight: 650;
}
.trust-strip {
    background: #fff;
    border-block: 1px solid var(--tmh-border);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 28px 0;
}
.trust-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--tmh-border);
}
.trust-grid > div:last-child {
    border: 0;
}
.trust-grid strong {
    font-size: 29px;
    line-height: 1.2;
    letter-spacing: -0.045em;
}
.trust-grid span {
    font-size: 11px;
    color: var(--tmh-muted);
    margin-top: 6px;
}
/* Dashboard and migration UI */
.dashboard-window {
    border: 1px solid #cfdbe7;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 22px 65px #1c3d6420;
    overflow: hidden;
    transform: rotate(-1deg);
}
.window-top {
    height: 39px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    border-bottom: 1px solid var(--tmh-border);
    font-size: 9px;
    color: #53647b;
}
.window-dots {
    display: flex;
    gap: 4px;
}
.window-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c7d1dd;
}
.window-dots i:first-child {
    background: #e5a7a2;
}
.window-dots i:nth-child(2) {
    background: #e6ce8d;
}
.window-dots i:nth-child(3) {
    background: #97cbbb;
}
.demo-tag {
    font-size: 9px;
    line-height: 1.6;
    background: #edf1f7;
    border: 1px solid #dfe6ef;
    padding: 2px 7px;
    border-radius: 4px;
    color: #596b81;
    white-space: nowrap;
}
.window-top > .demo-tag {
    margin-left: auto;
}
.dashboard-body {
    padding: 25px 25px 0;
}
.dashboard-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ui-label {
    display: block;
    font-size: 10px;
    color: var(--tmh-muted);
    margin-bottom: 5px;
    letter-spacing: 0.015em;
}
.dashboard-heading h2 {
    font-size: 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    letter-spacing: -0.03em;
}
.status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    padding: 3px 7px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
}
.status-green {
    color: #066951;
    background: #e8f7ef;
}
.status-blue {
    color: #2356b0;
    background: #eaf1ff;
}
.status-grey {
    color: #617083;
    background: #f0f2f5;
}
.server-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--tmh-border);
    border-radius: 8px;
    background: #fcfdfe;
    padding: 16px 20px;
    margin-top: 21px;
}
.server-route > div {
    flex: 1;
}
.server-route strong,
.server-route small {
    display: block;
}
.server-route strong {
    font-size: 13px;
}
.server-route small {
    font-size: 9px;
    color: var(--tmh-muted);
    margin-top: 2px;
}
.server-route .ui-label {
    font-size: 9px;
}
.route-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf3ff;
    border-radius: 50%;
    width: 29px;
    height: 29px;
    color: var(--tmh-primary);
    margin-right: 12px;
}
.route-arrow .icon {
    width: 15px;
}
.migration-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 23px 0;
}
.migration-stats > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.migration-stats strong {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -0.04em;
}
.migration-stats span {
    font-size: 9px;
    color: var(--tmh-muted);
}
.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    margin-bottom: 7px;
    color: var(--tmh-muted);
}
.progress-label strong {
    color: var(--tmh-teal);
}
.migration-progress {
    display: block;
    appearance: none;
    width: 100%;
    height: 7px;
    border: 0;
    border-radius: 8px;
    background: #e9eff4;
    overflow: hidden;
    color: #159b86;
}
.migration-progress::-webkit-progress-bar {
    background: #e9eff4;
    border-radius: 8px;
}
.migration-progress::-webkit-progress-value {
    background: #159b86;
    border-radius: 8px;
}
.migration-progress::-moz-progress-bar {
    background: #159b86;
    border-radius: 8px;
}
.account-list {
    margin-top: 18px;
}
.account-list > div {
    display: flex;
    gap: 9px;
    align-items: center;
    border-bottom: 1px solid #edf1f5;
    padding: 10px 0;
}
.account-list > div:last-child {
    border: 0;
}
.account-list strong {
    font-size: 10px;
    font-weight: 500;
}
.account-list .status {
    margin-left: auto;
}
.account-icon {
    display: inline-flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    background: #e8f7ef;
    color: var(--tmh-teal);
    border-radius: 50%;
}
.account-icon .icon {
    width: 12px;
    height: 12px;
}
.account-icon.blue {
    background: #ebf2ff;
    color: #2865d1;
}
.account-icon.muted {
    background: #f0f3f7;
    color: #718099;
}
.dashboard-total {
    margin: 12px -25px 0;
    padding: 14px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border-top: 1px solid var(--tmh-border);
    font-size: 9px;
    color: var(--tmh-muted);
}
.dashboard-total > span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}
.dashboard-total strong {
    font-size: 15px;
    color: var(--tmh-text);
}
.dashboard-total .icon {
    width: 15px;
    height: 15px;
}
.verification-note {
    position: relative;
    margin: -1px 14px -20px 48px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    box-shadow: 0 10px 30px #1e4b6420;
    border: 1px solid #dcebe5;
    border-radius: 9px;
    padding: 14px 17px;
    transform: rotate(1deg);
}
.verification-note > div {
    display: flex;
    flex-direction: column;
}
.verification-note strong {
    font-size: 11px;
}
.verification-note div > span {
    font-size: 10px;
    color: var(--tmh-muted);
}
.verification-note > .icon {
    margin-left: auto;
    color: var(--tmh-teal);
    width: 17px;
}
.verification-icon {
    background: #e9f7ef;
    color: var(--tmh-teal);
    padding: 8px;
    border-radius: 8px;
}
/* Steps and features */
.steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.steps li {
    position: relative;
}
.steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 19px;
    left: 54px;
    width: calc(100% - 37px);
    border-top: 1px dashed #cbd7e4;
}
.step-number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #dce6f5;
    border-radius: 10px;
    background: #f2f6fc;
    color: var(--tmh-primary);
    font-size: 12px;
    font-weight: 650;
}
.steps h3 {
    font-size: 15px;
    margin-top: 19px;
    letter-spacing: -0.015em;
}
.steps p {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 10px;
}
.features-band {
    margin-top: 75px;
    padding-top: 62px;
    border-top: 1px solid var(--tmh-border);
    scroll-margin-top: 110px;
}
.features-band .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}
.features-band .section-heading .eyebrow {
    margin: 0;
}
.features-band h2 {
    font-size: 29px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.feature-card {
    border: 1px solid var(--tmh-border);
    border-radius: 10px;
    padding: 25px;
    background: #fff;
}
.feature-card h3 {
    font-size: 16px;
    margin-top: 18px;
}
.feature-card p {
    font-size: 13px;
    line-height: 1.75;
    margin-top: 10px;
}
.feature-card .icon-tile {
    width: 37px;
    height: 37px;
}
.feature-card .icon {
    width: 19px;
    height: 19px;
}
/* Shared and reseller cards */
.preview-panel {
    background: #fff;
    border: 1px solid #d9e3ed;
    border-radius: var(--tmh-radius);
    box-shadow: var(--tmh-shadow);
    overflow: hidden;
}
.preview-top {
    padding: 17px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-bottom: 1px solid var(--tmh-border);
    font-size: 12px;
    font-weight: 600;
}
.preview-top > span:first-child {
    display: flex;
    align-items: center;
    gap: 9px;
}
.preview-top .icon {
    width: 17px;
    height: 17px;
    color: var(--tmh-primary);
}
.single-domain {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px;
    gap: 12px;
}
.single-domain strong {
    font-size: 19px;
    letter-spacing: -0.03em;
}
.single-domain > span:last-child {
    font-size: 11px;
    color: var(--tmh-muted);
    margin-top: -7px;
}
.verification-list {
    padding: 0 28px 19px;
}
.verification-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    padding: 10px 0;
    border-bottom: 1px solid #edf1f5;
}
.verification-list .icon {
    width: 15px;
    height: 15px;
    color: var(--tmh-teal);
}
.verification-list li > span {
    margin-left: auto;
    color: var(--tmh-teal);
    font-size: 10px;
}
.single-complete {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    background: #f8fafc;
    border-top: 1px solid var(--tmh-border);
}
.single-complete > strong {
    font-size: 22px;
    letter-spacing: -0.04em;
}
.check-list {
    margin-top: 25px;
    display: grid;
    gap: 12px;
}
.check-list li {
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.check-list .icon {
    color: var(--tmh-teal);
    width: 16px;
    height: 16px;
}
.reseller-callout {
    border-left: 3px solid var(--tmh-teal);
    background: #f3f9f7;
    padding: 15px 19px;
    margin-top: 25px;
}
.reseller-callout strong,
.reseller-callout span {
    display: block;
}
.reseller-callout strong {
    font-size: 14px;
}
.reseller-callout span {
    font-size: 12px;
    color: var(--tmh-muted);
    margin-top: 5px;
}
.discovery-summary {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 22px;
}
.discovery-summary strong {
    font-size: 24px;
    letter-spacing: -0.035em;
}
.discovery-summary strong small {
    font-size: 12px;
    letter-spacing: 0;
}
.discovery-summary > div > span {
    display: block;
    font-size: 10px;
    color: var(--tmh-muted);
}
.discovery-table-head,
.discovery-row {
    display: grid;
    grid-template-columns: 1fr 85px 35px;
    gap: 8px;
    align-items: center;
    padding: 13px 22px;
}
.discovery-table-head {
    background: #f5f8fb;
    color: var(--tmh-muted);
    font-size: 9px;
    border-block: 1px solid var(--tmh-border);
    text-transform: uppercase;
    letter-spacing: 0.035em;
}
.discovery-row {
    font-size: 12px;
    border-bottom: 1px solid #edf1f5;
    cursor: pointer;
}
.discovery-row:hover {
    background: #f8fbff;
}
.discovery-row > span:nth-child(2) {
    font-size: 11px;
    color: var(--tmh-muted);
}
.discovery-row input {
    accent-color: var(--tmh-primary);
    width: 17px;
    height: 17px;
    margin: 0;
    cursor: pointer;
}
.discovery-hidden {
    font-size: 10px;
    padding: 13px 22px;
}
.discovery-total {
    display: flex;
    justify-content: space-between;
    padding: 19px 22px;
    background: #f2f7fc;
    border-top: 1px solid var(--tmh-border);
}
.discovery-total > div {
    display: flex;
    flex-direction: column;
}
.discovery-total > div:last-child {
    text-align: right;
}
.discovery-total span {
    font-size: 10px;
    color: var(--tmh-muted);
}
.discovery-total strong {
    font-size: 25px;
    letter-spacing: -0.04em;
    color: var(--tmh-primary);
    margin-top: 3px;
}
.demo-disclaimer {
    padding: 12px 22px;
    font-size: 10px;
    border-top: 1px solid var(--tmh-border);
}
/* WHMCS and automation */
.section-navy .eyebrow {
    color: #65d1bd;
}
.section-navy p {
    color: #b1bfd2;
}
.section-navy .small-note {
    font-size: 11px;
}
.whmcs-intro {
    gap: 65px;
}
.whmcs-intro .button-row {
    margin-top: 28px;
}
.whmcs-preview {
    border: 1px solid #465870;
    border-radius: 12px;
    background: #f4f7fb;
    color: var(--tmh-text);
    overflow: hidden;
    transform: rotate(1deg);
}
.whmcs-preview-heading {
    display: flex;
    justify-content: space-between;
    padding: 16px 22px;
    background: #eaf0f6;
    border-bottom: 1px solid #d4dfeb;
    font-size: 11px;
}
.whmcs-preview-heading > span {
    font-size: 10px;
    color: var(--tmh-muted);
}
.whmcs-service {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 22px;
}
.whmcs-service > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.whmcs-service strong {
    font-size: 13px;
}
.whmcs-service div > span {
    font-size: 10px;
    color: var(--tmh-muted);
}
.whmcs-service > .status {
    margin-left: auto;
}
.whmcs-transfer {
    margin: 0 22px 22px;
    padding: 25px;
    background: #fff;
    border: 1px solid #dae4ef;
    border-radius: 8px;
}
.whmcs-transfer .eyebrow {
    color: var(--tmh-teal);
    font-size: 9px;
}
.whmcs-transfer h3 {
    font-size: 21px;
    margin-top: 10px;
}
.whmcs-transfer p {
    font-size: 12px;
    color: var(--tmh-muted);
    margin: 12px 0 18px;
}
.whmcs-transfer .button {
    font-size: 11px;
}
.whmcs-mini-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 26px;
    background: #eaf0f6;
    border-top: 1px solid #dae4ef;
    font-size: 10px;
    font-weight: 650;
}
.whmcs-mini-flow .icon {
    width: 13px;
    height: 13px;
    color: #7588a1;
}
.whmcs-benefits {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    margin-top: 66px;
    padding-top: 36px;
    border-top: 1px solid #31425a;
}
.whmcs-benefits article > .icon {
    color: #65d1bd;
    width: 22px;
    height: 22px;
}
.whmcs-benefits h3 {
    font-size: 14px;
    letter-spacing: -0.01em;
    margin-top: 17px;
}
.whmcs-benefits p {
    font-size: 12px;
    margin-top: 12px;
    line-height: 1.8;
}
.automation-flow {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 9px;
}
.automation-flow li {
    position: relative;
    border: 1px solid var(--tmh-border);
    background: #f9fbfd;
    border-radius: 8px;
    padding: 16px 9px;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
}
.automation-flow li > span {
    display: block;
    font-size: 9px;
    font-weight: 500;
    color: var(--tmh-primary);
    margin-bottom: 10px;
}
.automation-flow li:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -9px;
    top: 45%;
    z-index: 1;
    background: white;
    color: #8a9bb1;
    width: 9px;
}
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 36px;
    border-top: 1px solid var(--tmh-border);
    padding-top: 45px;
    margin-top: 50px;
}
.comparison-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 13px;
}
.comparison h3 {
    font-size: 30px;
}
.comparison h4 {
    font-size: 13px;
    margin-bottom: 17px;
    letter-spacing: 0;
}
.comparison ul {
    display: grid;
    gap: 9px;
    font-size: 12px;
    color: var(--tmh-muted);
}
.comparison-automated li {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--tmh-text);
}
.comparison-automated .icon {
    width: 15px;
    height: 15px;
    color: var(--tmh-teal);
}
/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    max-width: 950px;
    margin: 0 auto;
}
.price-card,
.calculator-card {
    border: 1px solid #d5e0ed;
    background: #fff;
    border-radius: 12px;
    padding: 35px;
}
.price-card {
    border-top: 3px solid var(--tmh-primary);
}
.price-card .eyebrow {
    color: #4d6079;
    font-size: 10px;
}
.big-price {
    font-size: 90px;
    line-height: 1.2;
    letter-spacing: -0.08em;
    font-weight: 700;
    color: var(--tmh-primary);
    margin-top: 15px;
}
.big-price > span {
    font-size: 52px;
    letter-spacing: -0.04em;
}
.price-card > p {
    font-size: 13px;
}
.price-details {
    margin: 28px 0 25px;
}
.price-details > div {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--tmh-border);
    font-size: 12px;
}
.price-details dt {
    color: var(--tmh-muted);
}
.price-details dd {
    font-weight: 650;
}
.price-details > div:first-child dd {
    color: var(--tmh-teal);
}
.price-card > .button {
    width: 100%;
}
.price-card > .small-note {
    font-size: 10px;
    text-align: center;
    margin-top: 14px;
}
.calculator-card > .icon-tile {
    width: 36px;
    height: 36px;
}
.calculator-card h3 {
    font-size: 25px;
    margin: 17px 0 23px;
}
.calculator-card label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
}
.account-input {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #b9cbe2;
    background: #fcfdff;
    border-radius: 7px;
    padding: 10px 14px;
}
.account-input input {
    appearance: textfield;
    border: 0;
    background: transparent;
    width: 100%;
    min-width: 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--tmh-text);
    line-height: 1.4;
}
.account-input input::-webkit-inner-spin-button {
    appearance: none;
}
.account-input input:focus-visible {
    outline-offset: 2px;
}
.account-input > span {
    font-size: 11px;
    color: var(--tmh-muted);
    white-space: nowrap;
}
.input-error {
    color: #b02424;
    font-size: 12px;
    margin-top: 9px;
}
.calculator-results {
    margin-top: 22px;
}
.calculator-results > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 11px;
    margin-top: 14px;
}
.calculator-results output {
    font-size: 13px;
    font-weight: 650;
}
.calculator-results small {
    display: block;
    font-size: 10px;
    color: var(--tmh-muted);
}
.calculator-results .calculated-total {
    border-bottom: 1px solid var(--tmh-border);
    padding-bottom: 16px;
}
.calculated-total output {
    font-size: 32px;
    letter-spacing: -0.04em;
    color: var(--tmh-primary);
}
.calculator-card > .small-note {
    margin-top: 22px;
    font-size: 10px;
}
.pricing-examples {
    max-width: 950px;
    margin: 25px auto 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.pricing-examples > div {
    text-align: center;
    border: 1px solid var(--tmh-border);
    border-radius: 8px;
    padding: 13px 8px;
    background: #fff;
}
.pricing-examples span {
    display: block;
    font-size: 10px;
    color: var(--tmh-muted);
}
.pricing-examples strong {
    display: block;
    font-size: 19px;
    margin-top: 4px;
    letter-spacing: -0.025em;
}
.failed-pricing {
    max-width: 950px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 40px auto 0;
    padding-top: 35px;
    border-top: 1px solid #d8e3eb;
}
.failed-pricing > .large-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}
.failed-pricing > div:first-of-type {
    flex: 1;
}
.failed-pricing h3 {
    font-size: 18px;
}
.failed-pricing p {
    font-size: 12px;
    max-width: 440px;
    margin-top: 10px;
}
.wallet-example {
    min-width: 190px;
    border: 1px solid var(--tmh-border);
    border-radius: 8px;
    padding: 13px 17px;
    background: white;
}
.wallet-example > span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--tmh-muted);
}
.wallet-example dl > div {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    margin-top: 5px;
    gap: 25px;
}
.wallet-example dd {
    font-weight: 600;
}
.wallet-example dl > div:last-child {
    color: var(--tmh-teal);
}
.revenue-section {
    gap: 100px;
}
.revenue-example {
    border: 1px solid var(--tmh-border);
    border-radius: 12px;
    overflow: hidden;
}
.revenue-example > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    border-bottom: 1px solid var(--tmh-border);
}
.revenue-example span {
    font-size: 13px;
    font-weight: 550;
}
.revenue-example small {
    display: block;
    font-size: 11px;
    color: var(--tmh-muted);
    margin-top: 5px;
    font-weight: 400;
}
.revenue-example strong {
    font-size: 27px;
    letter-spacing: -0.04em;
}
.revenue-example > .revenue-margin {
    background: #eef8f3;
    border: 0;
    color: #076950;
}
/* API and platform */
.code-panel {
    background: var(--tmh-navy);
    color: #dbe7f6;
    border: 1px solid #354963;
    border-radius: 12px;
    overflow: hidden;
}
.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 22px;
    border-bottom: 1px solid #35445a;
    font-size: 11px;
}
.code-header > span:first-child {
    display: flex;
    gap: 9px;
    align-items: center;
}
.code-header .icon {
    width: 17px;
    height: 17px;
}
.code-header > span:last-child {
    color: #9cafc9;
}
.endpoint {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 22px;
    border-bottom: 1px solid #293b52;
}
.endpoint b {
    font-size: 9px;
    width: 38px;
    color: #87b5ff;
}
.endpoint b.get {
    color: #69cfb9;
}
.endpoint code {
    font-size: 11px;
    overflow-wrap: anywhere;
    min-width: 0;
}
.code-panel pre {
    padding: 24px 22px 5px;
    margin: 0;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    font-size: 11px;
    line-height: 1.9;
}
.code-comment {
    color: #87a0bd;
}
.code-panel > p {
    font-size: 10px;
    padding: 12px 22px 23px;
    color: #a6b9d1;
}
.architecture {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 20px;
    border: 1px solid var(--tmh-border);
    border-radius: 8px;
    background: white;
    font-size: 10px;
    font-weight: 600;
}
.architecture .icon {
    width: 14px;
    height: 14px;
    color: #8399b3;
}
.platform-preview {
    margin: 62px auto 0;
    max-width: 950px;
    display: flex;
    border: 1px solid #d6e1ec;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--tmh-shadow);
    background: #fff;
}
.platform-sidebar {
    width: 175px;
    flex-shrink: 0;
    background: var(--tmh-navy);
    color: #b9c9dc;
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.platform-sidebar > img {
    margin: 0 8px 18px;
}
.platform-sidebar > span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    padding: 8px;
    border-radius: 5px;
}
.platform-sidebar .icon {
    width: 15px;
    height: 15px;
}
.platform-sidebar > .selected {
    background: #223d62;
    color: #fff;
}
.platform-main {
    flex: 1;
    min-width: 0;
    padding: 0 26px 23px;
}
.platform-main .preview-top {
    padding-inline: 0;
}
.admin-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
}
.admin-title h3 {
    font-size: 21px;
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 28px 0 23px;
}
.admin-stats span {
    display: block;
    font-size: 10px;
    color: var(--tmh-muted);
}
.admin-stats strong {
    display: block;
    font-size: 26px;
    letter-spacing: -0.04em;
    margin-top: 5px;
}
.platform-main > .small-note {
    margin-top: 15px;
    font-size: 10px;
}
.preview-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 950px;
    margin: 21px auto 0;
}
.preview-caption p {
    font-size: 11px;
    max-width: 560px;
}
.preview-caption a {
    font-size: 11px;
    white-space: nowrap;
}
/* Security and compatibility */
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 32px;
}
.security-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.security-card .icon-tile {
    flex-shrink: 0;
    background: #eef8f4;
    border-color: #e2f0e9;
    color: var(--tmh-teal);
    width: 39px;
    height: 39px;
}
.security-card .icon {
    width: 19px;
    height: 19px;
}
.security-card h3 {
    font-size: 15px;
    letter-spacing: -0.01em;
    padding-top: 3px;
}
.security-card p {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 10px;
}
.security-link {
    margin-top: 40px;
}
.compatibility-section {
    background: #f5f8fb;
    border-block: 1px solid var(--tmh-border);
}
.compatibility-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 20px;
    max-width: 950px;
    margin: auto;
}
.supported-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 17px;
    background: #fff;
    border: 1px solid #b9ded2;
    border-radius: 10px;
    padding: 26px;
}
.supported-panel > strong {
    font-size: 24px;
    letter-spacing: -0.04em;
}
.supported-panel > strong > span {
    color: var(--tmh-teal);
    padding: 0 9px;
}
.supported-panel > span:last-child {
    font-size: 11px;
    color: var(--tmh-muted);
}
.roadmap-panel {
    padding: 28px;
    border: 1px dashed #c5d0df;
    border-radius: 10px;
}
.roadmap-panel > .eyebrow {
    color: #596c83;
    font-size: 9px;
}
.roadmap-panel > div {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.roadmap-panel > div > span {
    background: white;
    border: 1px solid #dfe6ee;
    border-radius: 5px;
    padding: 6px 12px;
    font-size: 12px;
    color: #54647a;
}
.roadmap-panel > p {
    font-size: 10px;
    margin-top: 16px;
}
/* FAQ */
.faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 85px;
    align-items: start;
}
.faq-layout .section-copy {
    position: sticky;
    top: 125px;
}
.faq-layout .section-copy p {
    font-size: 14px;
}
.faq-layout .section-copy .text-link {
    margin-top: 14px;
}
.faq-item {
    border-bottom: 1px solid var(--tmh-border);
}
.faq-item:first-child {
    border-top: 1px solid var(--tmh-border);
}
.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    text-align: left;
    border: 0;
    background: none;
    padding: 20px 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0;
}
.faq-toggle:hover {
    color: var(--tmh-primary);
}
.faq-toggle > span {
    font-size: 20px;
    line-height: 1;
    color: #526a89;
    font-weight: 400;
    transition: transform 0.2s;
}
.faq-toggle[aria-expanded="true"] > span {
    transform: rotate(45deg);
}
.faq-answer p {
    padding: 0 30px 22px 0;
    font-size: 13px;
    line-height: 1.85;
}
/* CTA and footer */
.final-cta {
    background: #152b49;
    color: #fff;
    text-align: center;
    padding: 78px 0;
    position: relative;
    overflow: hidden;
}
.final-cta::before,
.final-cta::after {
    content: "";
    position: absolute;
    width: 530px;
    height: 530px;
    border: 1px solid #ffffff08;
    border-radius: 50%;
    left: -320px;
    top: -50px;
    pointer-events: none;
}
.final-cta::after {
    left: auto;
    right: -320px;
    top: 0;
    width: 700px;
    height: 700px;
}
.cta-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #244873;
    border: 1px solid #3d5e85;
    border-radius: 12px;
    width: 46px;
    height: 46px;
    margin: 0 auto 25px;
    color: #8db8ff;
}
.cta-mark .icon {
    width: 25px;
    height: 25px;
}
.final-cta .eyebrow {
    color: #76d2c1;
    font-size: 10px;
    margin-bottom: 19px;
}
.final-cta h2 {
    font-size: 44px;
}
.final-cta p {
    color: #c0cee0;
    margin-top: 21px;
    font-size: 15px;
}
.final-cta .button-row {
    justify-content: center;
    margin-top: 28px;
}
.final-cta .cta-small {
    font-size: 10px;
    color: #a9bbd1;
    margin-top: 25px;
}
.cta-small > span {
    padding: 0 8px;
}
.site-footer {
    background: #0c192c;
    color: #b7c5d8;
    padding: 61px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}
.footer-about p {
    font-size: 13px;
    color: #91a5bf;
    margin-top: 19px;
}
.footer-about .support-link {
    font-size: 11px;
    margin-top: 18px;
    color: #b5c7e0;
}
.footer-grid h2 {
    font-size: 11px;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: 0;
}
.footer-grid > div > a:not(.brand) {
    display: block;
    font-size: 11px;
    margin-bottom: 12px;
}
.footer-grid > div > a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #25344a;
    margin-top: 43px;
    padding-block: 24px;
    font-size: 10px;
    color: #8ea1bc;
}
/* Policy and error pages */
.document-hero {
    background: var(--tmh-soft);
    border-bottom: 1px solid var(--tmh-border);
    padding: 65px 0;
}
.document-hero .container {
    max-width: 850px;
}
.document-hero h1 {
    font-size: 46px;
    margin: 17px 0;
}
.document-hero p {
    max-width: 700px;
}
.document-content {
    max-width: 850px;
    padding-block: 55px 85px;
}
.document-content h2 {
    font-size: 25px;
    margin: 35px 0 14px;
}
.document-content h2:first-child {
    margin-top: 0;
}
.document-content h3 {
    font-size: 18px;
    margin: 24px 0 12px;
}
.document-content p,
.document-content ul,
.document-content ol {
    font-size: 15px;
    margin-bottom: 17px;
    color: var(--tmh-muted);
}
.document-content ul,
.document-content ol {
    padding-left: 23px;
    list-style: disc;
}
.document-content ol {
    list-style: decimal;
}
.document-content li {
    margin-bottom: 9px;
}
.document-content a {
    color: var(--tmh-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.document-note {
    padding: 20px;
    border: 1px solid var(--tmh-border);
    border-left: 3px solid var(--tmh-primary);
    border-radius: 5px;
    background: var(--tmh-soft);
    margin-bottom: 30px;
}
.document-content .document-note p {
    margin: 0;
    font-size: 13px;
}
.error-section {
    text-align: center;
    padding: 110px 0 130px;
}
.error-section h1 {
    font-size: 44px;
    margin: 20px 0;
}
.error-section p {
    margin-bottom: 28px;
}
.error-code {
    font-size: 14px;
    color: var(--tmh-primary);
    letter-spacing: 0.12em;
    font-weight: 700;
}
/* Restrained interaction and reduced motion */
@media (prefers-reduced-motion: no-preference) {
    .icon-tile {
        transition: transform 0.18s;
    }
    .feature-card:hover .icon-tile {
        transform: translateY(-3px);
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
