/* Pro Tools catalog + live tools */

.pro-tools-page {
    background: #0f0d0b;
    color: #f4efe6;
}

/* —— Hero —— */
.pt-hero {
    position: relative;
    isolation: isolate;
    min-height: min(88vh, 760px);
    display: flex;
    align-items: flex-end;
    padding: clamp(88px, 14vw, 140px) clamp(20px, 4vw, 48px) clamp(48px, 8vw, 72px);
    overflow: hidden;
}

.pt-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.pt-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.06);
    animation: pt-hero-drift 22s ease-in-out infinite alternate;
}

.pt-hero-veil {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(105deg, rgba(12, 10, 8, 0.92) 0%, rgba(12, 10, 8, 0.72) 42%, rgba(12, 10, 8, 0.35) 100%),
        linear-gradient(0deg, rgba(15, 13, 11, 0.85) 0%, transparent 42%);
}

.pt-hero-inner {
    max-width: 560px;
    animation: pt-rise 0.9s ease both;
}

.pt-hero-brand {
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 4.5vw, 40px);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #e0c992;
    animation: pt-rise 0.85s ease both;
    animation-delay: 0.08s;
}

.pt-hero h1 {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: #fff8f0;
    animation: pt-rise 0.9s ease both;
    animation-delay: 0.16s;
}

.pt-hero-lead {
    margin: 0 0 12px;
    max-width: 44ch;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(244, 239, 230, 0.78);
    animation: pt-rise 0.9s ease both;
    animation-delay: 0.24s;
}

.pt-hero-ai-note {
    margin: 0 0 28px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(224, 201, 146, 0.7);
    animation: pt-rise 0.9s ease both;
    animation-delay: 0.28s;
}

.pt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: pt-rise 0.9s ease both;
    animation-delay: 0.32s;
}

@keyframes pt-hero-drift {
    from { transform: scale(1.06) translate3d(0, 0, 0); }
    to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@keyframes pt-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pt-hero-media img,
    .pt-hero-inner,
    .pt-hero-brand,
    .pt-hero h1,
    .pt-hero-lead,
    .pt-hero-ai-note,
    .pt-hero-actions {
        animation: none;
        transform: none;
        opacity: 1;
    }
}

/* —— Live tool —— */
.pt-live {
    padding: clamp(48px, 8vw, 88px) clamp(20px, 4vw, 48px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(ellipse 60% 50% at 10% 0%, rgba(201, 169, 110, 0.08), transparent 55%),
        #12100e;
}

.pt-live--secondary {
    background: #0f0d0b;
}

/* —— Website Health Check —— */
.pt-health {
    display: grid;
    gap: 18px;
    max-width: 720px;
}

.pt-health-form {
    display: grid;
    gap: 14px;
}

@media (min-width: 640px) {
    .pt-health-form {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
    }
}

.pt-health-url-field {
    margin: 0;
}

.pt-health-url-input input {
    width: 100%;
}

.pt-health-submit {
    min-height: 48px;
    padding-inline: 28px;
    justify-self: start;
}

.pt-health-status {
    margin: 0;
    font-size: 14px;
    color: rgba(244, 239, 230, 0.68);
}

.pt-health-status[data-kind="warn"] {
    color: #e0c992;
}

.pt-health-results {
    margin-top: 4px;
}

.pt-health-result-row {
    display: grid;
    gap: 20px;
    margin-bottom: 22px;
}

@media (min-width: 520px) {
    .pt-health-result-row {
        grid-template-columns: 1fr 1fr;
    }
}

.pt-health-primary {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 500;
    line-height: 1.1;
    color: #fff8f0;
}

.pt-health-http {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(244, 239, 230, 0.55);
}

.pt-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.7);
    vertical-align: middle;
}

.pt-badge[data-tone="good"] {
    color: #c8e6c0;
    border-color: rgba(160, 200, 140, 0.4);
    background: rgba(120, 160, 100, 0.12);
}

.pt-badge[data-tone="ok"] {
    color: #e0c992;
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(201, 169, 110, 0.1);
}

.pt-badge[data-tone="warn"] {
    color: #e8c07a;
    border-color: rgba(232, 192, 122, 0.4);
    background: rgba(232, 192, 122, 0.1);
}

.pt-badge[data-tone="bad"] {
    color: #f0b4a8;
    border-color: rgba(220, 120, 100, 0.4);
    background: rgba(180, 80, 60, 0.14);
}

.pt-health-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 520px) {
    .pt-health-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pt-health-span {
    grid-column: 1 / -1;
}

.pt-health-url-value {
    word-break: break-all;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(244, 239, 230, 0.72) !important;
}

#ptHealthExpiry[data-tone="warn"] {
    color: #e8c07a;
}

.pt-health-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pt-health-cta p {
    margin: 0;
    font-size: 15px;
    color: rgba(244, 239, 230, 0.78);
}

.pt-health-cta-note {
    margin: 0;
    font-size: 12px;
    color: rgba(244, 239, 230, 0.45);
}

/* —— Health report page —— */
.pt-report {
    padding: clamp(48px, 8vw, 88px) clamp(20px, 4vw, 48px) clamp(64px, 10vw, 100px);
    background:
        radial-gradient(ellipse 55% 45% at 90% 0%, rgba(201, 169, 110, 0.08), transparent 50%),
        #12100e;
    min-height: 70vh;
}

.pt-report-inner {
    max-width: 920px;
    margin: 0 auto;
}

.pt-report-back {
    margin: 0 0 28px;
}

.pt-report-back a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(244, 239, 230, 0.55);
    text-decoration: none;
}

.pt-report-back a:hover {
    color: #e0c992;
}

.pt-report-header {
    margin-bottom: 28px;
}

.pt-report-header h1 {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    color: #fff8f0;
}

.pt-report-host {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #e0c992;
    word-break: break-all;
}

.pt-report-meta {
    margin: 0;
    font-size: 13px;
    color: rgba(244, 239, 230, 0.5);
}

.pt-report-loading,
.pt-report-empty {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.pt-report-loading p,
.pt-report-empty > p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(244, 239, 230, 0.72);
}

.pt-report-score-row {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}

@media (min-width: 720px) {
    .pt-report-score-row {
        grid-template-columns: 220px minmax(0, 1fr);
        align-items: stretch;
    }
}

.pt-report-score,
.pt-report-summary,
.pt-report-panel {
    padding: 22px 24px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.pt-report-score-value {
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(52px, 8vw, 72px);
    font-weight: 500;
    line-height: 1;
    color: #fff8f0;
}

.pt-report-score-label {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.55);
}

.pt-report-score-label[data-tone="good"] { color: #c8e6c0; }
.pt-report-score-label[data-tone="ok"] { color: #e0c992; }
.pt-report-score-label[data-tone="warn"] { color: #e8c07a; }

.pt-report-snapshot {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: rgba(244, 239, 230, 0.78);
}

.pt-report-snapshot li::before {
    content: '·';
    margin-right: 8px;
    color: #c9a96e;
}

.pt-report-panels {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

@media (min-width: 720px) {
    .pt-report-panels {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pt-report-panel h2 {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a96e;
}

.pt-report-dl {
    margin: 0;
    display: grid;
    gap: 12px;
}

.pt-report-dl dt {
    margin: 0 0 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.45);
}

.pt-report-dl dd {
    margin: 0;
    font-size: 15px;
    color: #f4efe6;
    word-break: break-word;
}

.pt-report-notes {
    margin-bottom: 28px;
}

.pt-report-notes h2 {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: #fff8f0;
}

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

.pt-report-notes-list li {
    padding: 14px 16px;
    border-left: 3px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    font-size: 14px;
    line-height: 1.5;
    color: rgba(244, 239, 230, 0.78);
}

.pt-report-notes-list li[data-tone="good"] { border-left-color: rgba(160, 200, 140, 0.7); }
.pt-report-notes-list li[data-tone="ok"] { border-left-color: rgba(201, 169, 110, 0.7); }
.pt-report-notes-list li[data-tone="warn"] { border-left-color: rgba(232, 192, 122, 0.8); }
.pt-report-notes-list li[data-tone="bad"] { border-left-color: rgba(220, 120, 100, 0.8); }

.pt-report-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
}

/* —— Auth / gated app —— */
.pt-auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
}

.pt-auth {
    width: min(100%, 420px);
}

.pt-auth-brand {
    display: inline-block;
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #e0c992;
    text-decoration: none;
}

.pt-auth h1 {
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 5vw, 40px);
    font-weight: 500;
    color: #fff8f0;
}

.pt-auth-lead {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(244, 239, 230, 0.68);
}

.pt-auth-form {
    display: grid;
    gap: 14px;
}

.pt-auth-submit {
    margin-top: 4px;
    min-height: 48px;
}

.pt-auth-error {
    margin: 0;
    font-size: 13px;
    color: #e8c07a;
}

.pt-auth-error[data-kind="ok"] {
    color: #c8e6c0;
}

.pt-auth-foot {
    margin: 22px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 13px;
    color: rgba(244, 239, 230, 0.5);
}

.pt-auth-foot a {
    color: #e0c992;
    text-decoration: none;
}

.pt-auth-foot a:hover {
    text-decoration: underline;
}

.pt-field-input select {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #fff8f0;
    outline: none;
}

.pt-field-input select option {
    color: #1a1714;
}

.pt-app-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0c0b0a;
}

.pt-app-bar-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 14px clamp(20px, 4vw, 48px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pt-app-bar-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}

.pt-app-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.pt-app-nav a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(244, 239, 230, 0.55);
    text-decoration: none;
}

.pt-app-nav a:hover,
.pt-app-nav a[aria-current="page"] {
    color: #e0c992;
}

.pt-kit-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

@media (min-width: 760px) {
    .pt-kit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

.pt-kit-includes {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(244, 239, 230, 0.78);
}

.pt-kit-includes li::before {
    content: '·';
    margin-right: 8px;
    color: #c9a96e;
}

.pt-kit-pipeline {
    margin-bottom: 28px;
    padding: 22px 24px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.pt-kit-pipeline h2 {
    margin: 0 0 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a96e;
}

.pt-kit-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
    counter-reset: kit-step;
}

@media (min-width: 720px) {
    .pt-kit-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.pt-kit-steps li {
    counter-increment: kit-step;
    display: grid;
    gap: 6px;
    padding-left: 36px;
    position: relative;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(244, 239, 230, 0.72);
}

.pt-kit-steps li::before {
    content: counter(kit-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #c9a96e;
}

.pt-kit-steps strong {
    color: #fff8f0;
    font-size: 15px;
}

.pt-app-user {
    font-size: 13px;
    color: rgba(244, 239, 230, 0.6);
}

.pt-app-text-link,
.pt-app-link-btn {
    font-size: 13px;
    font-weight: 600;
    color: #e0c992;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
}

.pt-app-text-link:hover,
.pt-app-link-btn:hover {
    color: #fff8f0;
}

.pt-dashboard,
.pt-admin {
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(36px, 6vw, 64px) clamp(20px, 4vw, 48px) 80px;
}

.pt-dashboard-header,
.pt-admin-header {
    margin-bottom: 28px;
    max-width: 52ch;
}

.pt-dashboard-header h1,
.pt-admin-header h1 {
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 500;
    color: #fff8f0;
}

.pt-dashboard-header p,
.pt-admin-header p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(244, 239, 230, 0.68);
}

.pt-dashboard-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 760px) {
    .pt-dashboard-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pt-dash-card,
.pt-admin-panel {
    padding: 22px 24px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.pt-dash-card h2,
.pt-admin-panel h2 {
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a96e;
}

.pt-dash-card p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(244, 239, 230, 0.72);
}

.pt-dash-muted {
    color: rgba(244, 239, 230, 0.45) !important;
}

.pt-admin {
    display: grid;
    gap: 24px;
}

.pt-admin-form {
    display: grid;
    gap: 12px;
}

@media (min-width: 720px) {
    .pt-admin-form {
        grid-template-columns: 1fr 1fr;
    }

    .pt-admin-form .btn-sheen,
    .pt-admin-form .pt-auth-error {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

.pt-admin-table-wrap {
    overflow-x: auto;
}

.pt-admin-empty {
    margin: 0;
    font-size: 14px;
    color: rgba(244, 239, 230, 0.55);
}

.pt-admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.pt-admin-table th,
.pt-admin-table td {
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(244, 239, 230, 0.8);
    vertical-align: middle;
}

.pt-admin-table th {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.45);
}

.pt-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pt-admin-actions button {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    color: rgba(244, 239, 230, 0.7);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    cursor: pointer;
    font-family: inherit;
}

.pt-admin-actions button:hover {
    border-color: rgba(201, 169, 110, 0.45);
    color: #fff8f0;
}

.pt-live-inner {
    max-width: 980px;
    margin: 0 auto;
}

.pt-live-header {
    margin-bottom: clamp(28px, 5vw, 40px);
    max-width: 48ch;
}

.pt-live-eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8e6c0;
}

.pt-live-header h2 {
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: 500;
    color: #fff8f0;
}

.pt-live-header p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(244, 239, 230, 0.68);
}

.pt-tool {
    display: grid;
    gap: 24px;
}

@media (min-width: 860px) {
    .pt-tool {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: 32px;
        align-items: start;
    }
}

.pt-tool-controls {
    display: grid;
    gap: 18px;
}

.pt-tool-mode {
    margin: 0;
    padding: 0;
    border: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pt-tool-mode-option {
    cursor: pointer;
}

.pt-tool-mode-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pt-tool-mode-option span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(244, 239, 230, 0.7);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.pt-tool-mode-option input:checked + span {
    border-color: rgba(201, 169, 110, 0.55);
    color: #fff8f0;
    background: rgba(201, 169, 110, 0.12);
}

.pt-tool-mode-option input:focus-visible + span {
    outline: 2px solid #c9a96e;
    outline-offset: 2px;
}

.pt-tool-fields {
    display: grid;
    gap: 14px;
}

@media (min-width: 520px) {
    .pt-tool-fields {
        grid-template-columns: 1fr 1fr;
    }
}

.pt-field {
    display: grid;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.55);
}

.pt-field--solo {
    max-width: 220px;
}

.pt-field-input {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
}

.pt-field-input input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff8f0;
    outline: none;
}

.pt-field-input input:focus {
    background: rgba(201, 169, 110, 0.06);
}

.pt-field-unit {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #c9a96e;
}

.pt-tool-results {
    padding: 28px 28px 30px;
    border: 1px solid rgba(201, 169, 110, 0.22);
    background:
        linear-gradient(160deg, rgba(201, 169, 110, 0.1), transparent 55%),
        rgba(255, 255, 255, 0.03);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.pt-tool-results[data-ready="true"] {
    animation: pt-rise 0.45s ease both;
}

.pt-tool-result-label {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a96e;
}

.pt-tool-result-value {
    margin: 0 0 22px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 500;
    line-height: 1;
    color: #fff8f0;
}

.pt-tool-result-grid {
    display: grid;
    gap: 16px;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 480px) {
    .pt-tool-result-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pt-tool-result-grid dt {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.45);
}

.pt-tool-result-grid dd {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #f4efe6;
}

.pt-tool-result-note,
.pt-tool-result-shape {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(244, 239, 230, 0.68);
}

.pt-tool-result-shape {
    margin-bottom: 22px;
    color: rgba(224, 201, 146, 0.85);
}

.pt-tool-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
}

.pt-tool-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(244, 239, 230, 0.7);
    text-decoration: none;
}

.pt-tool-link:hover {
    color: #fff8f0;
    text-decoration: underline;
}

.pt-tool-link--accent {
    color: #e0c992;
}

/* —— Jump + catalog —— */
.pt-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 14px clamp(20px, 4vw, 48px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #0c0b0a;
    position: sticky;
    top: 0;
    z-index: 5;
}

.pt-jump a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.55);
    text-decoration: none;
}

.pt-jump a:hover {
    color: #e0c992;
}

.pt-section {
    padding: clamp(48px, 8vw, 88px) clamp(20px, 4vw, 48px);
}

.pt-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.pt-section-header {
    margin-bottom: clamp(36px, 6vw, 56px);
    max-width: 52ch;
}

.pt-section-header h2 {
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    color: #fff8f0;
}

.pt-section-header p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(244, 239, 230, 0.65);
}

.pt-category {
    margin-bottom: clamp(40px, 7vw, 64px);
}

.pt-category:last-child {
    margin-bottom: 0;
}

.pt-category-title {
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c9a96e;
}

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

@media (min-width: 720px) {
    .pt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 980px) {
    .pt-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pt-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 22px 24px;
    border: 1px solid rgba(201, 169, 110, 0.18);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.pt-card:hover {
    border-color: rgba(201, 169, 110, 0.35);
    background: rgba(255, 255, 255, 0.045);
}

.pt-card-top {
    display: grid;
    gap: 10px;
}

.pt-card-status {
    display: inline-flex;
    align-self: start;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.pt-card-status--live {
    color: #c8e6c0;
    border-color: rgba(160, 200, 140, 0.35);
    background: rgba(120, 160, 100, 0.12);
}

.pt-card-status--build {
    color: #e0c992;
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(201, 169, 110, 0.1);
}

.pt-card-status--soon {
    color: rgba(244, 239, 230, 0.55);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.pt-card-title {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff8f0;
}

.pt-card-desc {
    margin: 0;
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(244, 239, 230, 0.68);
}

.pt-card-meta {
    margin: 0;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    list-style: none;
    display: grid;
    gap: 6px;
    font-size: 12px;
    color: rgba(244, 239, 230, 0.5);
}

.pt-card-meta a {
    color: #e0c992;
    text-decoration: none;
}

.pt-card-meta a:hover {
    text-decoration: underline;
}

.pt-closer {
    padding: clamp(56px, 10vw, 96px) clamp(20px, 4vw, 48px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, #1a1714 0%, #12100e 100%);
    text-align: center;
}

.pt-closer-inner {
    max-width: 520px;
    margin: 0 auto;
}

.pt-closer h2 {
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    color: #fff8f0;
}

.pt-closer p {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(244, 239, 230, 0.68);
}

.pt-closer-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 20px;
}

.pt-closer-ghost {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #e0c992;
    text-decoration: none;
}

.pt-closer-ghost:hover {
    color: #fff8f0;
    text-decoration: underline;
}

/* Dark nav/footer on this page */
.pro-tools-page .site-footer {
    background: #0c0b0a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
