:root {
    --ink: #0d1116;
    --ink-soft: #1e252d;
    --muted: #6b6f76;
    --bg: #f7f3ee;
    --bg-alt: #fff8f0;
    --card: #ffffff;
    --accent: #f2a93b;
    --accent-2: #1f7a6d;
    --accent-3: #e76f51;
    --border: #e5ded3;
    --shadow: 0 24px 60px rgba(15, 18, 22, 0.12);
    --radius: 18px;
    --radius-sm: 12px;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top left, rgba(242, 169, 59, 0.15), transparent 55%),
        radial-gradient(circle at 10% 30%, rgba(31, 122, 109, 0.12), transparent 60%),
        var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    color: #f5f5f2;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 10px 30px rgba(6, 10, 12, 0.35);
    background: rgba(16, 26, 31, 0.92);
    color: #f5f5f2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(15, 18, 22, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: rgba(245, 245, 242, 0.7);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: inherit;
}

.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
    padding: 140px 0 90px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(140deg, #101a1f 0%, #18302b 50%, #1c2d33 100%);
    color: #f5f5f2;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 169, 59, 0.35), transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    color: rgba(245, 245, 242, 0.7);
    margin-bottom: 16px;
}

.hero-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.6rem, 3.5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(245, 245, 242, 0.82);
    max-width: 540px;
}

.hero-pain {
    font-size: 1.15rem;
    color: rgba(242, 169, 59, 0.9);
    margin-bottom: 18px;
}

.hero-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 26px;
    max-width: 560px;
    color: rgba(245, 245, 242, 0.85);
}

.hero-list strong {
    color: #ffffff;
    font-weight: 600;
}

.hero-actions {
    margin: 28px 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #1b1b1b;
    box-shadow: 0 10px 24px rgba(242, 169, 59, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(242, 169, 59, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #f5f5f2;
    border-color: rgba(245, 245, 242, 0.4);
}

.btn-secondary:hover {
    background: rgba(245, 245, 242, 0.1);
}

.btn-link {
    color: rgba(245, 245, 242, 0.75);
    border-color: transparent;
    padding: 8px 0;
}

.btn-link:hover {
    color: #ffffff;
}

.hero-points {
    display: grid;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(245, 245, 242, 0.72);
    margin-top: 6px;
}

.hero-point {
    padding: 10px 14px;
    border: 1px solid rgba(245, 245, 242, 0.18);
    border-radius: 12px;
    background: rgba(15, 18, 22, 0.38);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.hero-so-what {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    padding: 18px;
    max-width: 560px;
    color: rgba(245, 245, 242, 0.82);
    display: grid;
    gap: 14px;
}

.hero-so-what-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.7);
}

.hero-so-what-grid {
    display: grid;
    gap: 12px;
}

.hero-so-what-card {
    background: rgba(15, 18, 22, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
}

.hero-so-what-card h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    margin-bottom: 6px;
    color: #f5f5f2;
}

.hero-so-what-card p {
    color: rgba(245, 245, 242, 0.7);
    font-size: 0.92rem;
}

.mesh-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 28px;
    width: 100%;
    max-width: 420px;
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.06);
}

.mesh-header {
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: rgba(242, 169, 59, 0.9);
    margin-bottom: 18px;
}

.mesh-grid {
    display: grid;
    gap: 16px;
    color: #f5f5f2;
}

.mesh-block {
    background: rgba(15, 18, 22, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.mesh-block-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 245, 242, 0.82);
}

.mesh-block-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.92rem;
}

.mesh-block-items span {
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

.mesh-store {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: rgba(242, 169, 59, 0.15);
    border: 1px solid rgba(242, 169, 59, 0.4);
}

.mesh-tier {
    display: grid;
    gap: 10px;
}

.mesh-tier + .mesh-tier {
    margin-top: 18px;
}

.mesh-tier-label {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, 0.7);
}

.mesh-observer {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: rgba(31, 122, 109, 0.18);
    border: 1px solid rgba(31, 122, 109, 0.5);
}

.mesh-observer-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.mesh-observer-subtitle {
    font-size: 0.9rem;
    color: rgba(245, 245, 242, 0.72);
}

.mesh-store-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.mesh-store-subtitle {
    font-size: 0.9rem;
    color: rgba(245, 245, 242, 0.72);
}

.mesh-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.mesh-tags span {
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.section {
    padding: 90px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 14px;
}

.section-header p {
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
}

.product-grid,
.capabilities-grid,
.quickstart-grid,
.example-grid,
.doc-grid,
.contact-grid {
    display: grid;
    gap: 24px;
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.product-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.product-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 12px;
}

.product-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.product-card p {
    color: var(--muted);
    margin-bottom: 16px;
}

.product-fit,
.product-nofit {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.product-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.product-list li {
    padding-left: 18px;
    position: relative;
}

.product-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--accent-3);
}

.product-links {
    display: flex;
    gap: 16px;
    font-weight: 600;
    color: var(--accent-2);
}

.product-links a:hover {
    color: var(--accent-3);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step {
    background: var(--card);
    padding: 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.step-number {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    color: var(--accent-2);
    margin-bottom: 10px;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: var(--muted);
}

.step-meta {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 10px;
}

.capabilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.capability-card {
    padding: 24px;
    border-radius: var(--radius-sm);
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(15, 18, 22, 0.08);
}

.capability-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.capability-card p {
    color: var(--muted);
}

.comparison-panel {
    margin-top: 30px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.comparison-card {
    background: rgba(31, 122, 109, 0.08);
    border: 1px solid rgba(31, 122, 109, 0.2);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.comparison-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.comparison-card p {
    color: var(--muted);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.use-case-card {
    background: var(--card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 24px;
    box-shadow: 0 12px 24px rgba(15, 18, 22, 0.08);
}

.use-case-card h3 {
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 10px;
}

.use-case-card p {
    color: var(--muted);
}
.update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.update-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(15, 18, 22, 0.08);
}

.update-card.feature {
    background: var(--card);
    border-color: rgba(242, 169, 59, 0.35);
    box-shadow: 0 16px 28px rgba(242, 169, 59, 0.08);
}

.update-tag {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 10px;
}

.update-card h3 {
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 10px;
}

.update-card p {
    color: var(--muted);
    margin-bottom: 12px;
}

.update-list {
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.update-list li {
    position: relative;
    padding-left: 16px;
}

.update-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--accent-3);
}

.dashboard-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: start;
}

.dashboard-copy h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    margin-bottom: 12px;
}

.dashboard-copy p {
    color: var(--muted);
    margin-bottom: 16px;
}

.dashboard-copy p:last-child {
    margin-bottom: 0;
}

.dashboard-highlights {
    display: grid;
    gap: 10px;
}

.dashboard-highlight {
    background: rgba(15, 18, 22, 0.08);
    border: 1px solid rgba(15, 18, 22, 0.12);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.9rem;
    color: var(--muted);
}

.dashboard-panel {
    background: rgba(15, 18, 22, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 18px 30px rgba(6, 10, 12, 0.2);
}

.dashboard-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(233, 236, 232, 0.72);
}

.dashboard-panel-note {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: rgba(233, 236, 232, 0.5);
}

.dashboard-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
}

.dashboard-thumb {
    background: #0f1518;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
    display: grid;
    gap: 8px;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    appearance: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.dashboard-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(242, 169, 59, 0.4);
    box-shadow: 0 12px 24px rgba(6, 10, 12, 0.25);
}

.dashboard-thumb:focus-visible {
    outline: 2px solid rgba(242, 169, 59, 0.6);
    outline-offset: 2px;
}

.dashboard-thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-thumb span {
    font-size: 0.85rem;
    color: rgba(233, 236, 232, 0.76);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 12, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2000;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    background: #0f1518;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 18px;
    width: min(92vw, 980px);
    max-height: 90vh;
    display: grid;
    gap: 12px;
    box-shadow: 0 24px 60px rgba(6, 10, 12, 0.45);
}

.lightbox-close {
    justify-self: end;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f5f5f2;
    padding: 6px 14px;
    border-radius: 999px;
    cursor: pointer;
}

.lightbox-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    max-height: 70vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-caption {
    color: rgba(233, 236, 232, 0.72);
    font-size: 0.95rem;
}
.quickstart-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.quickstart-card {
    background: var(--card);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.quickstart-card h3 {
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 14px;
}

.quickstart-note {
    color: var(--muted);
    margin-bottom: 14px;
}

pre {
    background: #0f1615;
    color: #e7ecea;
    padding: 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    overflow-x: auto;
    margin-bottom: 16px;
}

.quickstart-outcome {
    margin: 10px 0 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: rgba(31, 122, 109, 0.08);
    border: 1px solid rgba(31, 122, 109, 0.2);
}

.quickstart-outcome h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    margin-bottom: 8px;
}

.quickstart-outcome ul {
    list-style: none;
    display: grid;
    gap: 6px;
    color: var(--muted);
}

.quickstart-outcome li::before {
    content: "•";
    color: var(--accent-2);
    margin-right: 8px;
}

.quickstart-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-weight: 600;
}

.quickstart-fixit {
    margin-top: 30px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 24px;
}

.quickstart-fixit h3 {
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 10px;
}

.quickstart-fixit ul {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--muted);
}

.quickstart-fixit li::before {
    content: "•";
    color: var(--accent-3);
    margin-right: 8px;
}

.text-link {
    font-weight: 600;
    color: var(--accent-2);
}

.text-link:hover {
    color: var(--accent-3);
}

.example-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.example-card {
    background: var(--card);
    padding: 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.example-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(15, 18, 22, 0.12);
}

.example-card h3 {
    margin-bottom: 10px;
}

.example-card p {
    color: var(--muted);
}

.example-featured {
    border-color: rgba(242, 169, 59, 0.6);
    box-shadow: 0 18px 30px rgba(242, 169, 59, 0.18);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.example-tag {
    align-self: flex-end;
    background: var(--accent);
    color: #1b1b1b;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.status-card {
    background: var(--card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 24px;
}

.status-card h3 {
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 10px;
}

.status-card p {
    color: var(--muted);
    margin-bottom: 10px;
}

.doc-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.doc-card {
    background: var(--card);
    padding: 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: border 0.2s ease;
}

.doc-card:hover {
    border-color: var(--accent-2);
}

.doc-card h3 {
    margin-bottom: 8px;
}

.doc-card p {
    color: var(--muted);
}

.contact {
    background: linear-gradient(120deg, rgba(242, 169, 59, 0.12), rgba(31, 122, 109, 0.08));
}

.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 24px;
    border-radius: var(--radius-sm);
}

.contact-card h3 {
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--ink);
    font-weight: 600;
}

.footer {
    background: #0f1518;
    color: #e9ece8;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(233, 236, 232, 0.7);
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid rgba(233, 236, 232, 0.1);
    padding-top: 16px;
    text-align: center;
    color: rgba(233, 236, 232, 0.6);
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        align-items: flex-start;
    }

    .hero-so-what {
        max-width: 100%;
    }

    .dashboard-showcase {
        grid-template-columns: 1fr;
    }

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

}

@media (max-width: 820px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        right: 24px;
        background: var(--card);
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
        padding: 16px;
        flex-direction: column;
        gap: 12px;
        display: none;
        box-shadow: var(--shadow);
    }

    .header .nav-menu {
        background: rgba(16, 26, 31, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .header.nav-open .nav-menu {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
    }

    .hero {
        padding-top: 120px;
    }
}

@media (max-width: 620px) {
    .nav-container {
        padding: 14px 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

}
