/* Clear Desk Blue — inner marketing / content pages */

html {
    scroll-behavior: smooth;
}

body.tq-body {
    margin: 0;
    font-family: var(--tq-font-body);
    color: var(--tq-ink);
    background: var(--tq-ice);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

body.tq-body a:focus-visible,
body.tq-body button:focus-visible {
    outline: 2px solid var(--tq-signal);
    outline-offset: 3px;
}

.tq-page {
    padding-top: var(--tq-nav-h);
}

.tq-hero {
    position: relative;
    padding: clamp(48px, 7vw, 80px) 0 clamp(40px, 5vw, 64px);
    overflow: hidden;
}

.tq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 85% 10%, rgba(21, 94, 239, 0.14), transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 0%, rgba(11, 31, 58, 0.05), transparent 50%);
    pointer-events: none;
}

.tq-hero-inner {
    position: relative;
}

.tq-hero-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.tq-hero h1 {
    font-family: var(--tq-font-display);
    font-size: clamp(2.35rem, 4.2vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.12;
    margin: 0 0 16px;
    color: var(--tq-ink);
}

.tq-hero h1 span {
    color: var(--tq-signal);
}

.tq-hero-desc {
    margin: 0 0 24px;
    max-width: 36rem;
    color: var(--tq-steel);
    font-size: 1.05rem;
}

.tq-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.tq-hero-note {
    margin: 0;
    font-size: 13px;
    color: var(--tq-steel);
}

.tq-hero-visual {
    border-radius: var(--tq-radius-lg);
    overflow: hidden;
    border: 1px solid var(--tq-line);
    box-shadow: var(--tq-shadow-dock);
    background: var(--tq-white);
}

.tq-hero-visual img {
    width: 100%;
    display: block;
}

.tq-hero-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.tq-hero-center .tq-hero-desc {
    margin-left: auto;
    margin-right: auto;
}

.tq-band {
    padding: clamp(72px, 9vw, 112px) 0;
    background: var(--tq-white);
    border-top: 1px solid var(--tq-line);
}

.tq-band-ice {
    background: var(--tq-ice);
}

.tq-band-ink {
    background: var(--tq-ink);
    color: var(--tq-white);
    border-top: none;
}

.tq-band-ink .tq-section-lead {
    color: rgba(255, 255, 255, 0.65);
}

.tq-band-head {
    margin-bottom: var(--tq-space-4);
}

.tq-band-head.center {
    text-align: center;
}

.tq-band-head.center .tq-section-lead {
    margin-left: auto;
    margin-right: auto;
}

/* Feature / capability rows — quiet dividers, not card stacks */
.tq-split-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--tq-line);
}

.tq-split-item {
    padding: 28px 28px 28px 0;
    border-bottom: 1px solid var(--tq-line);
    border-right: 1px solid var(--tq-line);
}

.tq-split-item:nth-child(2n) {
    padding-right: 0;
    padding-left: 28px;
    border-right: none;
}

.tq-split-item h3 {
    font-family: var(--tq-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.tq-split-item p {
    margin: 0;
    color: var(--tq-steel);
}

.tq-split-item .tq-tag {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--tq-font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tq-signal);
}

.tq-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--tq-line);
}

.tq-step {
    padding: 28px 24px 8px 0;
    border-right: 1px solid var(--tq-line);
}

.tq-step:last-child {
    border-right: none;
    padding-right: 0;
}

.tq-step-num {
    font-family: var(--tq-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--tq-signal);
    margin-bottom: 12px;
}

.tq-step h3 {
    font-family: var(--tq-font-display);
    font-size: 1.1rem;
    margin: 0 0 8px;
}

.tq-step p {
    margin: 0;
    color: var(--tq-steel);
    font-size: 0.98rem;
}

.tq-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tq-pill-list li {
    font-size: 14px;
    color: var(--tq-ink-soft);
    background: var(--tq-white);
    border: 1px solid var(--tq-line);
    border-radius: 999px;
    padding: 8px 14px;
}

.tq-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tq-demo-grid figure {
    margin: 0;
}

.tq-demo-grid img {
    width: 100%;
    border-radius: var(--tq-radius);
    border: 1px solid var(--tq-line);
    box-shadow: var(--tq-shadow-soft);
}

.tq-demo-grid figcaption {
    margin-top: 12px;
}

.tq-demo-grid h3 {
    font-family: var(--tq-font-display);
    font-size: 1.05rem;
    margin: 0 0 6px;
}

.tq-demo-grid p {
    margin: 0;
    color: var(--tq-steel);
    font-size: 0.95rem;
}

/* FAQ */
.tq-faq {
    max-width: 760px;
    border-top: 1px solid var(--tq-line);
}

.tq-faq-item {
    border-bottom: 1px solid var(--tq-line);
}

.tq-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--tq-ink);
    user-select: none;
}

.tq-faq-q::after {
    content: "▼";
    font-size: 11px;
    color: var(--tq-steel);
    font-family: var(--tq-font-display);
}

.tq-faq-item.open .tq-faq-q::after {
    color: var(--tq-signal);
    transform: rotate(180deg);
}

.tq-faq-a {
    display: none;
    padding: 0 0 18px;
    color: var(--tq-steel);
}

.tq-faq-item.open .tq-faq-a {
    display: block;
}

.tq-faq-a a {
    color: var(--tq-signal);
}

/* Closing CTA */
.tq-close {
    padding: var(--tq-space-6) 0;
    text-align: center;
    background: var(--tq-ice);
    border-top: 1px solid var(--tq-line);
}

.tq-close h2 {
    font-family: var(--tq-font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    letter-spacing: -0.03em;
    margin: 0 0 10px;
}

.tq-close p {
    margin: 0 auto 24px;
    max-width: 28rem;
    color: var(--tq-steel);
}

.tq-close-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Prose (about / legal) */
.tq-prose {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--tq-space-5) 0 var(--tq-space-6);
}

.tq-prose h2 {
    font-family: var(--tq-font-display);
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin: 36px 0 12px;
    color: var(--tq-ink);
}

.tq-prose h2:first-child {
    margin-top: 0;
}

.tq-prose h3,
.tq-prose h4 {
    font-family: var(--tq-font-display);
    font-size: 1.05rem;
    margin: 24px 0 8px;
}

.tq-prose p,
.tq-prose li {
    color: var(--tq-ink-soft);
    font-size: 0.98rem;
}

.tq-prose ul {
    padding-left: 1.2rem;
}

.tq-prose a {
    color: var(--tq-signal);
}

.tq-prose-card {
    background: var(--tq-white);
    border: 1px solid var(--tq-line);
    border-radius: var(--tq-radius);
    padding: 24px;
    margin: 20px 0;
}

.tq-prose-card h3 {
    margin-top: 0;
}

.tq-prose-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.tq-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.tq-mission-grid > div {
    background: var(--tq-white);
    border: 1px solid var(--tq-line);
    border-radius: var(--tq-radius);
    padding: 22px;
}

.tq-mission-grid h3 {
    margin: 0 0 8px;
    font-family: var(--tq-font-display);
    font-size: 1.05rem;
}

.tq-mission-grid p {
    margin: 0;
    color: var(--tq-steel);
}

@media (max-width: 900px) {
    .tq-hero-split,
    .tq-demo-grid,
    .tq-mission-grid,
    .tq-steps {
        grid-template-columns: 1fr;
    }

    .tq-step {
        border-right: none;
        border-bottom: 1px solid var(--tq-line);
        padding: 22px 0;
    }

    .tq-step:last-child {
        border-bottom: none;
    }

    .tq-split-list {
        grid-template-columns: 1fr;
    }

    .tq-split-item,
    .tq-split-item:nth-child(2n) {
        padding: 22px 0;
        border-right: none;
    }
}

@media (max-width: 640px) {
    .tq-hero-actions .tq-btn,
    .tq-close-actions .tq-btn {
        width: 100%;
    }
}
