:root {
    color-scheme: dark;
    --background: #090c09;
    --foreground: #f4f5f0;
    --muted-foreground: #a2aa9d;
    --card: #121711;
    --border: #273024;
    --primary: #a6d35f;
    --primary-foreground: #081006;
    --ring: #c6ef83;
    --danger: #ff796f;
    --success: #8bd879;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--background);
    color: var(--foreground);
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    cursor: pointer;
}

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

svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.page-shell {
    min-height: 100vh;
    background: var(--background);
    color: var(--foreground);
}

.layout-container {
    width: min(100% - 48px, 1280px);
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: transparent;
    transition: background 500ms ease, border-color 500ms ease, backdrop-filter 500ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
    border-bottom: 1px solid rgba(39, 48, 36, 0.9);
    background: rgba(9, 12, 9, 0.92);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.brand span {
    color: var(--primary);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    color: var(--muted-foreground);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    transition: color 300ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--primary);
}

.header-button,
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 2px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    transition: filter 200ms ease, transform 200ms ease;
}

.header-button {
    min-height: 42px;
    padding: 0 20px;
}

.header-button:hover,
.submit-button:hover {
    filter: brightness(1.1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--foreground);
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
}

.hero-section {
    position: relative;
    display: flex;
    min-height: 60vh;
    align-items: flex-end;
    overflow: hidden;
    padding: 128px 0 80px;
}

.hero-background,
.hero-background img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-background {
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: linear-gradient(to top, var(--background) 0%, rgba(9, 12, 9, 0.85) 45%, rgba(9, 12, 9, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.eyebrow span {
    width: 32px;
    height: 1px;
    background: var(--primary);
}

.eyebrow p {
    margin: 0;
    color: var(--primary);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--foreground);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    line-height: 1.02;
    text-transform: uppercase;
}

h1 {
    max-width: 768px;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
}

h2 {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-weight: 700;
}

.hero-content > p {
    max-width: 576px;
    margin: 16px 0 0;
    color: var(--muted-foreground);
    font-size: 18px;
    line-height: 1.65;
}

.contact-section {
    padding: 96px 0 128px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
    gap: 64px;
}

form {
    display: grid;
    gap: 24px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.field {
    min-width: 0;
}

.field label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted-foreground);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.field label span {
    color: var(--primary);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--card);
    color: var(--foreground);
    outline: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
}

.field textarea {
    min-height: 126px;
    padding: 10px 12px;
    font-size: 14px;
    resize: vertical;
}

.field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--muted-foreground) 50%),
        linear-gradient(135deg, var(--muted-foreground) 50%, transparent 50%);
    background-position: calc(100% - 18px) 15px, calc(100% - 12px) 15px;
    background-repeat: no-repeat;
    background-size: 6px 6px, 6px 6px;
}

.field input::placeholder,
.field textarea::placeholder,
.field select:invalid {
    color: var(--muted-foreground);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--ring);
    box-shadow: 0 0 0 1px var(--ring);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: var(--danger);
}

.field-error {
    display: none;
    margin: 8px 0 0;
    color: var(--danger);
    font-size: 13px;
}

.field.has-error .field-error {
    display: block;
}

.submit-button {
    width: fit-content;
    min-height: 48px;
    padding: 0 32px;
}

.submit-button svg {
    width: 16px;
    height: 16px;
}

.submit-button[disabled] {
    cursor: not-allowed;
    opacity: 0.65;
}

.notice {
    margin-bottom: 24px;
    border: 1px solid;
    border-radius: 4px;
    padding: 14px 16px;
    font-size: 14px;
}

.notice-success {
    border-color: rgba(139, 216, 121, 0.42);
    background: rgba(139, 216, 121, 0.08);
    color: var(--success);
}

.notice-error {
    border-color: rgba(255, 121, 111, 0.42);
    background: rgba(255, 121, 111, 0.08);
    color: var(--danger);
}

.contact-card {
    display: grid;
    gap: 32px;
    align-self: start;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--card);
    padding: 32px;
}

.contact-card h3 {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 700;
}

.contact-items {
    display: grid;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    display: flex;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: rgba(166, 211, 95, 0.1);
    color: var(--primary);
}

.contact-icon svg {
    width: 16px;
    height: 16px;
}

.contact-label {
    color: var(--muted-foreground);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-item a,
.contact-item span {
    color: var(--foreground);
    font-size: 14px;
    transition: color 180ms ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.response-time {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.response-time h4,
.site-footer h4 {
    color: var(--foreground);
    font-size: 12px;
    font-weight: 700;
}

.response-time p {
    margin: 12px 0 0;
    color: var(--foreground);
    font-size: 14px;
}

.index-hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: flex-end;
    overflow: hidden;
    padding: 150px 0 128px;
}

.index-hero-background,
.index-hero-background img,
.index-hero-gradient-top,
.index-hero-gradient-side {
    position: absolute;
    inset: 0;
}

.index-hero-background {
    z-index: 0;
}

.index-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-hero-gradient-top {
    background: linear-gradient(to top, var(--background) 0%, rgba(9, 12, 9, 0.8) 45%, rgba(9, 12, 9, 0.3) 100%);
}

.index-hero-gradient-side {
    background: linear-gradient(to right, rgba(9, 12, 9, 0.6), transparent);
}

.index-hero-content {
    position: relative;
    z-index: 1;
}

.index-hero-copy {
    max-width: 768px;
}

.index-eyebrow {
    margin-bottom: 24px;
}

.index-hero h1 {
    max-width: 768px;
    font-size: clamp(40px, 7vw, 72px);
    line-height: 0.95;
}

.index-hero h1 span {
    color: var(--primary);
}

.index-hero-copy > p {
    max-width: 576px;
    margin: 24px 0 0;
    color: var(--muted-foreground);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.primary-link,
.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 2px;
    padding: 15px 32px;
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    transition: border-color 180ms ease, color 180ms ease, filter 180ms ease;
}

.primary-link {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--primary-foreground);
}

.primary-link:hover {
    filter: brightness(1.1);
}

.secondary-link {
    border: 1px solid var(--border);
    color: var(--foreground);
}

.secondary-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.scroll-cue {
    position: absolute;
    bottom: -96px;
    left: 50%;
    color: var(--muted-foreground);
    transform: translateX(-50%);
    animation: bounce 1.6s ease-in-out infinite;
}

.scroll-cue svg {
    width: 20px;
    height: 20px;
}

.services-overview {
    padding: 96px 0 128px;
    background: var(--background);
}

.section-eyebrow {
    margin-bottom: 16px;
}

.services-overview h2 {
    margin-bottom: 64px;
}

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

.pillar-card {
    position: relative;
    display: block;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--card);
    padding: 40px;
    transition: border-color 500ms ease;
}

.pillar-card:hover {
    border-color: rgba(166, 211, 95, 0.5);
}

.pillar-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(166, 211, 95, 0), rgba(166, 211, 95, 0.6), rgba(166, 211, 95, 0));
    opacity: 0;
    transition: opacity 500ms ease;
}

.pillar-card:hover .pillar-line {
    opacity: 1;
}

.pillar-number {
    color: var(--muted-foreground);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
}

.pillar-icon {
    width: 32px;
    height: 32px;
    margin: 24px 0 16px;
    color: var(--primary);
}

.pillar-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.pillar-card p {
    margin: 0 0 32px;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.learn-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.learn-more svg {
    width: 16px;
    height: 16px;
    transition: transform 180ms ease;
}

.pillar-card:hover .learn-more svg {
    transform: translateX(4px);
}

.stat-band {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--card);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    padding: 48px 0;
}

.stat-grid div {
    text-align: center;
}

.stat-grid strong,
.stat-grid span {
    display: block;
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    text-transform: uppercase;
}

.stat-grid strong {
    color: var(--primary);
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1;
}

.stat-grid span {
    margin-top: 4px;
    color: var(--muted-foreground);
    font-size: 12px;
    font-weight: 700;
}

.why-section {
    padding: 96px 0 128px;
    background: var(--background);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    align-items: center;
}

.why-section h2 {
    margin-bottom: 32px;
}

.feature-list {
    display: grid;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    display: flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: rgba(166, 211, 95, 0.1);
    color: var(--primary);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-item h3 {
    margin-bottom: 4px;
    font-size: 14px;
}

.feature-item p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 2px;
}

.why-image div {
    position: absolute;
    inset: 0;
    border-radius: 2px;
    background: linear-gradient(to top, rgba(9, 12, 9, 0.4), transparent);
}

.cta-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--card);
    padding: 96px 0 128px;
    text-align: center;
}

.cta-section h2 {
    max-width: 900px;
    margin: 0 auto 16px;
    font-size: clamp(30px, 5vw, 52px);
}

.cta-section p {
    max-width: 576px;
    margin: 0 auto 32px;
    color: var(--muted-foreground);
    font-size: 18px;
    line-height: 1.6;
}

.cta-link svg {
    width: 16px;
    height: 16px;
}

.launch-hero {
    min-height: 64vh;
}

.launch-intro {
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
}

.launch-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 64px;
    align-items: start;
}

.launch-intro h2 {
    margin-bottom: 20px;
}

.launch-intro p {
    max-width: 820px;
    margin: 0;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.75;
}

.launch-intro p + p {
    margin-top: 16px;
}

.launch-intro strong {
    color: var(--foreground);
    font-weight: 700;
}

.launch-summary-list {
    display: grid;
    gap: 16px;
}

.launch-summary-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--card);
    padding: 18px;
}

.launch-summary-icon {
    display: flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: rgba(166, 211, 95, 0.1);
    color: var(--primary);
}

.launch-summary-icon svg {
    width: 18px;
    height: 18px;
}

.launch-summary-card h3 {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.15;
}

.launch-summary-card p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 13px;
    line-height: 1.4;
}

.launch-tier {
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
}

.tier-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tier-heading span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border: 1px solid;
    border-radius: 2px;
    padding: 0 12px;
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.tier-heading div {
    height: 1px;
    flex: 1;
    background: var(--border);
}

.tier-primary span {
    border-color: rgba(166, 211, 95, 0.62);
    background: rgba(166, 211, 95, 0.1);
    color: var(--primary);
}

.tier-sky span {
    border-color: rgba(87, 186, 232, 0.48);
    background: rgba(87, 186, 232, 0.1);
    color: #78c8ef;
}

.tier-violet span {
    border-color: rgba(176, 140, 255, 0.48);
    background: rgba(176, 140, 255, 0.1);
    color: #c3a8ff;
}

.tier-zinc span {
    border-color: rgba(181, 187, 176, 0.36);
    background: rgba(181, 187, 176, 0.08);
    color: #c8cec2;
}

.monitor-stack {
    display: grid;
    gap: 24px;
}

.monitor-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--card);
    padding: 32px;
}

.monitor-card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(166, 211, 95, 0.08), 0 22px 70px rgba(0, 0, 0, 0.28);
}

.recommendation-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    border-radius: 2px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0 12px;
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.recommendation-badge svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.monitor-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 1fr));
    gap: 36px;
}

.monitor-card h3 {
    margin-bottom: 6px;
    font-size: 22px;
}

.monitor-tagline {
    margin: 0 0 22px;
    color: var(--primary);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.monitor-specs {
    display: grid;
    gap: 10px;
    margin: 0;
}

.monitor-specs div {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
}

.monitor-specs dt {
    color: var(--muted-foreground);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.monitor-specs dd {
    min-width: 0;
    margin: 0;
    color: var(--foreground);
    font-size: 14px;
    line-height: 1.45;
}

.monitor-card h4 {
    margin-bottom: 14px;
    color: var(--muted-foreground);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

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

.monitor-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--foreground);
    font-size: 14px;
    line-height: 1.45;
}

.monitor-strengths svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 2px;
    color: var(--primary);
}

.monitor-limitations li {
    color: var(--muted-foreground);
}

.monitor-limitations li > span:first-child {
    display: flex;
    width: 16px;
    flex: 0 0 16px;
    justify-content: center;
    margin-top: -1px;
    color: var(--muted-foreground);
}

.monitor-notes {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.our-take {
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.monitor-card-featured .our-take {
    border-color: rgba(166, 211, 95, 0.42);
}

.our-take p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.65;
}

.monitor-card-featured .our-take p {
    color: var(--foreground);
}

.launch-cta {
    border-top: 0;
}

.launch-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.custom-section {
    padding: 96px 0 128px;
}

.custom-section h2 {
    margin-bottom: 64px;
}

.environment-list {
    display: grid;
    gap: 80px;
}

.environment-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    align-items: center;
}

.environment-row-reverse .environment-copy {
    order: 2;
}

.environment-row-reverse .environment-image {
    order: 1;
}

.environment-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.environment-kicker p {
    margin: 0;
    color: var(--primary);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.mini-icon {
    display: flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: rgba(166, 211, 95, 0.1);
    color: var(--primary);
}

.mini-icon svg {
    width: 20px;
    height: 20px;
}

.environment-copy h3 {
    margin-bottom: 16px;
    font-size: clamp(24px, 3vw, 32px);
}

.environment-copy > p,
.trackman-copy > div > p,
.final-cta-copy p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.7;
}

.feature-checks,
.feature-dots {
    display: grid;
    gap: 10px;
    margin: 24px 0 32px;
    padding: 0;
    list-style: none;
}

.feature-checks li,
.feature-dots li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--foreground);
    font-size: 14px;
}

.feature-checks svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 2px;
    color: var(--primary);
}

.outline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--primary);
    border-radius: 2px;
    padding: 13px 24px;
    color: var(--primary);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease;
}

.outline-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.outline-link svg,
.primary-link svg,
.secondary-link svg {
    width: 16px;
    height: 16px;
}

.environment-image,
.trackman-image,
.wide-image {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.environment-image {
    aspect-ratio: 4 / 3;
}

.environment-image img,
.trackman-image img,
.wide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.environment-image div,
.trackman-image div {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 12, 9, 0.44), transparent);
}

.process-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--card);
}

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

.process-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--background);
    padding: 32px;
    transition: border-color 500ms ease;
}

.process-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(166, 211, 95, 0), rgba(166, 211, 95, 0.6), rgba(166, 211, 95, 0));
    content: "";
    opacity: 0;
    transition: opacity 500ms ease;
}

.process-card:hover {
    border-color: rgba(166, 211, 95, 0.5);
}

.process-card:hover::before {
    opacity: 1;
}

.process-card > span {
    color: var(--muted-foreground);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
}

.process-card > svg {
    display: block;
    width: 28px;
    height: 28px;
    margin: 24px 0 16px;
    color: var(--primary);
}

.process-card h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.process-card p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.trackman-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 460px;
}

.trackman-image {
    min-height: 360px;
}

.trackman-image div {
    background: linear-gradient(to right, rgba(9, 12, 9, 0.1), rgba(9, 12, 9, 0.72));
}

.trackman-copy {
    display: flex;
    align-items: center;
    background: var(--card);
    padding: 64px;
}

.trackman-copy > div {
    max-width: 560px;
}

.trackman-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(24px, 3vw, 32px);
}

.feature-dots li::before {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    margin-top: 7px;
    border-radius: 999px;
    background: var(--primary);
    content: "";
}

.custom-final-section {
    border-top: 1px solid var(--border);
}

.wide-image {
    aspect-ratio: 21 / 9;
    margin-bottom: 64px;
}

.wide-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(9, 12, 9, 0.78), transparent 68%);
    content: "";
}

.wide-image > div {
    position: absolute;
    top: 50%;
    left: 40px;
    z-index: 1;
    max-width: 380px;
    transform: translateY(-50%);
}

.wide-image p {
    margin: 0 0 8px;
    color: var(--primary);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.wide-image h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 32px);
}

.final-cta-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-copy h2 {
    margin-bottom: 16px;
}

.final-cta-copy p {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 18px;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: var(--card);
}

.footer-content {
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(160px, 1fr) minmax(160px, 1fr);
    gap: 48px;
}

.footer-brand {
    display: inline-block;
    font-size: 20px;
}

.footer-about p {
    max-width: 448px;
    margin: 16px 0 0;
    color: hsl(95 10% 84%);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.footer-links a {
    color: var(--muted-foreground);
    font-size: 14px;
    transition: color 180ms ease;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    border-top: 1px solid var(--border);
    padding: 32px 0;
}

.footer-bottom > p,
.systems-online p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 12px;
}

.systems-online {
    display: flex;
    align-items: center;
    gap: 4px;
}

.systems-online span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}

.toast-stack {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 100;
    display: grid;
    width: min(420px, calc(100% - 32px));
    gap: 12px;
}

.toast {
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--card);
    padding: 16px;
    color: var(--foreground);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
    transition: opacity 220ms ease, transform 220ms ease;
}

.toast-success {
    border-color: rgba(139, 216, 121, 0.42);
}

.toast-error {
    border-color: rgba(255, 121, 111, 0.42);
}

.toast.hide {
    opacity: 0;
    transform: translateY(8px);
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 8px);
    }
}

@media (max-width: 1080px) {
    .desktop-nav,
    .header-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        position: fixed;
        inset: 80px 0 auto;
        display: none;
        border-bottom: 1px solid var(--border);
        background: rgba(9, 12, 9, 0.97);
        padding: 8px 24px 20px;
        backdrop-filter: blur(16px);
    }

    .mobile-menu.is-open {
        display: grid;
    }

    .mobile-menu a {
        border-bottom: 1px solid var(--border);
        padding: 15px 0;
        color: var(--muted-foreground);
        font-family: "Clash Display", "Instrument Sans", sans-serif;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .mobile-menu a:last-child {
        border-bottom: 0;
        color: var(--primary);
    }
}

@media (max-width: 900px) {
    .contact-grid,
    .footer-grid,
    .launch-intro-grid,
    .monitor-grid,
    .pillar-grid,
    .process-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .environment-row,
    .trackman-split {
        grid-template-columns: 1fr;
    }

    .environment-row-reverse .environment-copy,
    .environment-row-reverse .environment-image {
        order: initial;
    }

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

@media (max-width: 720px) {
    .layout-container {
        width: min(100% - 32px, 1280px);
    }

    .header-inner {
        height: 64px;
    }

    .brand {
        font-size: 16px;
    }

    .mobile-menu {
        inset-block-start: 64px;
    }

    .hero-section {
        min-height: 60vh;
        padding: 112px 0 64px;
    }

    .index-hero {
        min-height: 100vh;
        padding: 118px 0 104px;
    }

    h1,
    .index-hero h1 {
        font-size: 40px;
    }

    .hero-content > p,
    .index-hero-copy > p,
    .cta-section p {
        font-size: 16px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .submit-button {
        width: 100%;
    }

    .hero-actions,
    .primary-link,
    .secondary-link {
        width: 100%;
    }

    .services-overview,
    .launch-intro,
    .launch-tier,
    .why-section,
    .cta-section,
    .custom-section {
        padding: 80px 0;
    }

    .services-overview h2,
    .custom-section h2 {
        margin-bottom: 40px;
    }

    .pillar-card {
        padding: 32px;
    }

    .environment-list {
        gap: 56px;
    }

    .environment-row {
        gap: 32px;
    }

    .outline-link {
        width: 100%;
    }

    .process-grid {
        gap: 16px;
    }

    .process-card {
        padding: 28px;
    }

    .trackman-copy {
        padding: 48px 16px;
    }

    .wide-image {
        aspect-ratio: 4 / 3;
        margin-bottom: 48px;
    }

    .wide-image > div {
        left: 24px;
        right: 24px;
    }

    .stat-grid {
        gap: 28px 20px;
    }

    .contact-card {
        padding: 24px;
    }

    .monitor-card {
        padding: 28px 22px;
    }

    .recommendation-badge {
        left: 18px;
        max-width: calc(100% - 36px);
        white-space: normal;
    }

    .monitor-specs div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .launch-cta-actions,
    .launch-cta-actions .primary-link,
    .launch-cta-actions .secondary-link {
        width: 100%;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

.commercial-section {
    padding: 96px 0 128px;
}

.commercial-business-grid,
.commercial-jv-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
}

.commercial-business h2,
.commercial-packages h2 {
    margin-bottom: 40px;
}

.check-list {
    display: grid;
    gap: 16px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-item svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 3px;
    color: var(--primary);
}

.check-item p {
    margin: 0;
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.55;
}

.check-list-small {
    gap: 14px;
}

.check-list-small .check-item svg {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
}

.check-list-small .check-item p {
    font-size: 14px;
}

.revenue-card,
.jv-criteria-card,
.package-card {
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--card);
}

.revenue-card {
    align-self: start;
    padding: 40px;
}

.revenue-card h3 {
    margin-bottom: 32px;
    font-size: 20px;
}

.revenue-controls {
    display: grid;
    gap: 30px;
}

.revenue-control-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.revenue-control label,
.revenue-control output,
.revenue-metric p,
.package-kicker,
.package-badge,
.criteria-heading p {
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.revenue-control label,
.revenue-metric p,
.package-kicker,
.criteria-heading p {
    color: var(--muted-foreground);
}

.revenue-control output {
    color: var(--primary);
}

.revenue-control input[type="range"] {
    width: 100%;
    height: 20px;
    margin: 0;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.revenue-control input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        var(--primary) 0%,
        var(--primary) var(--range-progress, 0%),
        rgba(166, 211, 95, 0.2) var(--range-progress, 0%),
        rgba(166, 211, 95, 0.2) 100%
    );
}

.revenue-control input[type="range"]::-moz-range-track {
    height: 6px;
    border-radius: 999px;
    background: rgba(166, 211, 95, 0.2);
}

.revenue-control input[type="range"]::-moz-range-progress {
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
}

.revenue-control input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    margin-top: -6px;
    appearance: none;
    border: 1px solid rgba(166, 211, 95, 0.65);
    border-radius: 999px;
    background: var(--background);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.revenue-control input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(166, 211, 95, 0.65);
    border-radius: 999px;
    background: var(--background);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.revenue-control input[type="range"]:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 6px;
}

.revenue-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}

.revenue-metric {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.revenue-icon {
    display: flex;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: rgba(166, 211, 95, 0.1);
    color: var(--primary);
}

.revenue-icon svg {
    width: 16px;
    height: 16px;
}

.revenue-metric p {
    margin: 0 0 6px;
}

.revenue-metric strong {
    display: block;
    color: var(--foreground);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 22px;
    line-height: 1.05;
}

.revenue-metric strong.text-primary {
    color: var(--primary);
}

.commercial-jv {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.commercial-jv-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(166, 211, 95, 0.08), transparent 46%);
    pointer-events: none;
}

.commercial-jv-grid {
    position: relative;
    align-items: center;
}

.commercial-jv h2 {
    margin-bottom: 18px;
}

.commercial-jv p {
    max-width: 640px;
    margin: 0 0 18px;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.75;
}

.jv-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.jv-feature {
    display: flex;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--card);
    padding: 18px;
}

.jv-feature svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 2px;
    color: var(--primary);
}

.jv-feature h3 {
    margin-bottom: 7px;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.jv-feature p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.commercial-link svg,
.package-link svg {
    width: 16px;
    height: 16px;
}

.jv-criteria-card {
    border-color: rgba(166, 211, 95, 0.34);
    padding: 40px;
}

.criteria-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.criteria-heading h3 {
    margin-bottom: 7px;
    font-size: 16px;
}

.criteria-heading p {
    margin: 0;
}

.criteria-note {
    margin: 28px 0 0;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    color: var(--muted-foreground);
    font-size: 13px;
    line-height: 1.65;
}

.commercial-packages {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--card);
}

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

.package-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 32px;
    background: var(--background);
}

.package-card-featured {
    border-color: var(--primary);
}

.package-badge {
    position: absolute;
    top: -13px;
    left: 32px;
    border-radius: 2px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 8px 12px;
}

.package-kicker {
    margin: 0 0 10px;
}

.package-card h3 {
    margin-bottom: 12px;
    font-size: 26px;
}

.package-card > p:not(.package-kicker) {
    margin: 0 0 26px;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.65;
}

.package-features {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.package-features span {
    position: relative;
    display: block;
    min-height: 20px;
    padding-left: 26px;
    color: var(--foreground);
    font-size: 14px;
    line-height: 1.45;
}

.package-features span::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid var(--primary);
    border-radius: 999px;
    background:
        linear-gradient(45deg, transparent 43%, var(--primary) 44%, var(--primary) 58%, transparent 59%),
        linear-gradient(-45deg, transparent 53%, var(--primary) 54%, var(--primary) 68%, transparent 69%);
    background-size: 8px 8px, 10px 10px;
    background-position: 5px 4px, 2px 4px;
    background-repeat: no-repeat;
}

.package-link {
    width: 100%;
    margin-top: auto;
}

@media (max-width: 900px) {
    .commercial-business-grid,
    .commercial-jv-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .revenue-card,
    .jv-criteria-card {
        padding: 32px;
    }
}

@media (max-width: 720px) {
    .commercial-section {
        padding: 80px 0;
    }

    .commercial-business h2,
    .commercial-packages h2 {
        margin-bottom: 32px;
    }

    .revenue-results,
    .jv-feature-grid {
        grid-template-columns: 1fr;
    }

    .revenue-card,
    .jv-criteria-card,
    .package-card {
        padding: 24px;
    }

    .package-badge {
        left: 24px;
    }
}

.management-section {
    padding: 96px 0 128px;
}

.management-services h2,
.management-plans h2 {
    margin-bottom: 64px;
}

.management-card-grid,
.management-plan-grid {
    display: grid;
    gap: 24px;
}

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

.management-card,
.management-plan {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--card);
}

.management-card {
    padding: 32px;
    transition: border-color 500ms ease;
}

.management-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(166, 211, 95, 0), rgba(166, 211, 95, 0.6), rgba(166, 211, 95, 0));
    content: "";
    opacity: 0;
    transition: opacity 500ms ease;
}

.management-card:hover {
    border-color: rgba(166, 211, 95, 0.5);
}

.management-card:hover::before {
    opacity: 1;
}

.management-card > svg {
    display: block;
    width: 28px;
    height: 28px;
    margin-bottom: 16px;
    color: var(--primary);
}

.management-card h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.management-card p,
.management-plan > p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.management-plans {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--card);
}

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

.management-plan {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 32px;
    background: var(--background);
}

.management-plan-featured {
    border-color: var(--primary);
}

.management-badge {
    position: absolute;
    top: -1px;
    left: 32px;
    border-radius: 0 0 2px 2px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 8px 12px;
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.management-plan-featured h3 {
    margin-top: 20px;
}

.management-plan h3 {
    margin-bottom: 12px;
    font-size: 26px;
}

.management-plan-features {
    display: grid;
    gap: 12px;
    margin: 28px 0 32px;
}

.management-plan-features span {
    position: relative;
    display: block;
    min-height: 20px;
    padding-left: 20px;
    color: var(--foreground);
    font-size: 14px;
    line-height: 1.45;
}

.management-plan-features span::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
    content: "";
}

.management-plan-link {
    width: 100%;
    margin-top: auto;
}

@media (max-width: 900px) {
    .management-card-grid,
    .management-plan-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .management-section {
        padding: 80px 0;
    }

    .management-services h2,
    .management-plans h2 {
        margin-bottom: 40px;
    }

    .management-card,
    .management-plan {
        padding: 24px;
    }

    .management-badge {
        left: 24px;
    }
}

.trackman-page {
    overflow: hidden;
}

.trackman-hero {
    position: relative;
    display: flex;
    min-height: 78vh;
    align-items: flex-end;
    overflow: hidden;
    padding: 150px 0 92px;
}

.trackman-hero-media,
.trackman-hero-media img,
.trackman-hero-overlay {
    position: absolute;
    inset: 0;
}

.trackman-hero-media {
    z-index: 0;
}

.trackman-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.trackman-hero-overlay {
    background:
        linear-gradient(to right, rgba(9, 12, 9, 0.18), rgba(9, 12, 9, 0.82) 64%, var(--background) 100%),
        linear-gradient(to top, var(--background) 0%, rgba(9, 12, 9, 0.72) 42%, rgba(9, 12, 9, 0.18) 100%);
}

.trackman-hero-content {
    position: relative;
    z-index: 1;
}

.trackman-hero-content .eyebrow {
    max-width: 720px;
    margin-left: auto;
}

.trackman-hero-content h1,
.trackman-hero-content > p {
    margin-left: auto;
}

.trackman-hero-content h1 {
    max-width: 720px;
}

.trackman-hero-content > p {
    max-width: 590px;
    margin-top: 16px;
    color: var(--muted-foreground);
    font-size: 18px;
    line-height: 1.7;
}

.trackman-stat-band {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--card);
}

.trackman-stat-grid,
.trackman-mini-stat-grid {
    display: grid;
}

.trackman-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    padding: 48px 0;
}

.trackman-stat-grid div,
.trackman-mini-stat-grid div {
    min-width: 0;
    text-align: center;
}

.trackman-stat-grid strong,
.trackman-stat-grid span,
.trackman-mini-stat-grid strong,
.trackman-mini-stat-grid span {
    display: block;
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    line-height: 1;
    text-transform: uppercase;
}

.trackman-stat-grid strong,
.trackman-mini-stat-grid strong {
    color: var(--primary);
    font-weight: 700;
}

.trackman-stat-grid strong {
    font-size: clamp(30px, 4vw, 40px);
}

.trackman-stat-grid span,
.trackman-mini-stat-grid span {
    margin-top: 6px;
    color: var(--muted-foreground);
    font-size: 12px;
    font-weight: 700;
}

.trackman-section {
    padding: 96px 0 128px;
}

.trackman-section-card {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--card);
}

.trackman-intro-grid,
.trackman-measurement-grid,
.trackman-tour-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
}

.trackman-intro-grid,
.trackman-tour-grid {
    align-items: center;
}

.trackman-measurement-grid {
    align-items: start;
}

.trackman-intro-grid h2,
.trackman-measurement-grid h2,
.trackman-tour-grid h2,
.trackman-section-card > .layout-container > h2 {
    margin-bottom: 24px;
}

.trackman-section-card > .layout-container > h2 {
    max-width: 820px;
    margin-bottom: 64px;
}

.trackman-intro-grid p,
.trackman-measurement-grid p,
.trackman-tour-grid > div:first-child > p,
.trackman-split-copy p {
    margin: 0 0 18px;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.75;
}

.trackman-mini-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.trackman-mini-stat-grid div {
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 18px;
    text-align: left;
}

.trackman-mini-stat-grid strong {
    font-size: 26px;
}

.trackman-mini-stat-grid span {
    line-height: 1.25;
}

.trackman-image-stack {
    display: grid;
    gap: 16px;
}

.trackman-image-stack img {
    width: 100%;
    border-radius: 2px;
    object-fit: cover;
}

.trackman-image-stack img:first-child {
    aspect-ratio: 3 / 2;
}

.trackman-image-stack img:last-child {
    aspect-ratio: 16 / 7;
}

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

.trackman-feature-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--background);
    padding: 32px;
    transition: border-color 500ms ease, transform 200ms ease;
}

.trackman-feature-card:hover {
    border-color: rgba(166, 211, 95, 0.5);
    transform: translateY(-2px);
}

.trackman-card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(166, 211, 95, 0), rgba(166, 211, 95, 0.64), rgba(166, 211, 95, 0));
    opacity: 0;
    transition: opacity 500ms ease;
}

.trackman-feature-card:hover .trackman-card-line {
    opacity: 1;
}

.trackman-feature-card > svg {
    display: block;
    width: 28px;
    height: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.trackman-feature-card h3 {
    margin-bottom: 10px;
    font-size: 15px;
}

.trackman-feature-card p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.7;
}

.trackman-split-feature {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 560px;
}

.trackman-split-media {
    position: relative;
    min-height: 440px;
}

.trackman-split-media img,
.trackman-split-media div {
    position: absolute;
    inset: 0;
}

.trackman-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trackman-split-media div {
    background: linear-gradient(to right, rgba(9, 12, 9, 0.12), rgba(9, 12, 9, 0.76));
}

.trackman-split-copy {
    display: flex;
    align-items: center;
    border-left: 1px solid var(--border);
    background: var(--card);
    padding: 64px;
}

.trackman-split-copy > div {
    max-width: 580px;
}

.trackman-split-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(26px, 3vw, 34px);
}

.trackman-check-list,
.trackman-trust-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.trackman-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--foreground);
    font-size: 14px;
    line-height: 1.55;
}

.trackman-check-list span,
.trackman-parameter-chip > span {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    margin-top: 7px;
    border-radius: 999px;
    background: var(--primary);
}

.trackman-parameter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.trackman-parameter-chip {
    display: flex;
    min-width: 0;
    min-height: 40px;
    align-items: flex-start;
    gap: 9px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--card);
    padding: 10px 12px;
}

.trackman-parameter-chip p {
    margin: 0;
    color: var(--foreground);
    font-size: 12px;
    line-height: 1.35;
}

.trackman-tour-section {
    border-bottom: 0;
}

.trackman-trust-list div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trackman-trust-list svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    color: var(--primary);
}

.trackman-trust-list span {
    color: var(--foreground);
    font-size: 14px;
    line-height: 1.55;
}

.trackman-tour-images {
    display: grid;
    gap: 16px;
}

.trackman-tour-images figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 2px;
}

.trackman-tour-images figure:first-child {
    aspect-ratio: 4 / 3;
}

.trackman-tour-images figure:last-child {
    aspect-ratio: 16 / 9;
}

.trackman-tour-images img,
.trackman-tour-images figure::after {
    position: absolute;
    inset: 0;
}

.trackman-tour-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trackman-tour-images figure::after {
    background: linear-gradient(to top, rgba(9, 12, 9, 0.82), transparent 62%);
    content: "";
}

.trackman-tour-images figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1;
    color: var(--foreground);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.trackman-tour-images figcaption span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 12px;
}

.trackman-banner {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}

.trackman-banner img,
.trackman-banner > div {
    position: absolute;
    inset: 0;
}

.trackman-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trackman-banner > div {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(9, 12, 9, 0.88), rgba(9, 12, 9, 0.48), rgba(9, 12, 9, 0.08));
}

.trackman-banner p {
    margin: 0 0 10px;
    color: var(--primary);
    font-family: "Clash Display", "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.trackman-banner h2 {
    max-width: 560px;
    font-size: clamp(32px, 5vw, 54px);
}

.trackman-cta {
    border-top: 1px solid var(--border);
}

.trackman-cta-actions {
    justify-content: center;
}

@media (max-width: 1080px) {
    .trackman-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .trackman-intro-grid,
    .trackman-measurement-grid,
    .trackman-split-feature,
    .trackman-tour-grid {
        grid-template-columns: 1fr;
    }

    .trackman-hero-content h1,
    .trackman-hero-content .eyebrow,
    .trackman-hero-content > p {
        margin-left: 0;
    }

    .trackman-hero-overlay {
        background:
            linear-gradient(to top, var(--background) 0%, rgba(9, 12, 9, 0.78) 46%, rgba(9, 12, 9, 0.2) 100%),
            linear-gradient(to right, rgba(9, 12, 9, 0.4), rgba(9, 12, 9, 0.72));
    }

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

    .trackman-split-copy {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

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

@media (max-width: 720px) {
    .trackman-hero {
        min-height: 72vh;
        padding: 116px 0 72px;
    }

    .trackman-hero-content > p {
        font-size: 16px;
    }

    .trackman-stat-grid {
        gap: 28px 20px;
        padding: 40px 0;
    }

    .trackman-section {
        padding: 80px 0;
    }

    .trackman-section-card > .layout-container > h2 {
        margin-bottom: 40px;
    }

    .trackman-mini-stat-grid,
    .trackman-feature-grid,
    .trackman-parameter-grid {
        grid-template-columns: 1fr;
    }

    .trackman-feature-card {
        padding: 28px;
    }

    .trackman-split-media {
        min-height: 300px;
    }

    .trackman-split-copy {
        padding: 48px 16px;
    }

    .trackman-banner {
        min-height: 300px;
    }
}
