/* Fonts */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/dm-sans-400.woff2') format('woff2');
}
@font-face {
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/dm-sans-400-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/dm-sans-500.woff2') format('woff2');
}
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/dm-sans-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/fraunces-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/fraunces-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Fraunces';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/fraunces-400-italic.woff2') format('woff2');
}

/* Variables */
:root {
    --color-deep: #1a2f38;
    --color-teal: #2d5a5a;
    --color-warm: #e8e0d5;
    --color-cream: #faf8f5;
    --color-accent: #c9a227;
    --color-muted: #6b7c7c;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-deep);
    line-height: 1.6;
    font-size: 17px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 28px 0;
    position: relative;
    z-index: 10;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-deep);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-teal);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--color-warm);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.footer-text::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.footer-links {
    display: flex;
    gap: 24px;
}


.footer-links a {
    font-size: 0.875rem;
    color: var(--color-teal);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== */
/* Homepage             */
/* ==================== */

.hero {
    padding: 80px 0 100px;
    position: relative;
}

.hero-content {
    max-width: 680px;
    animation: fadeUp 0.6s ease-out;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--color-deep);
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.email-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.email-form input[type="email"] {
    flex: 1;
    min-width: 260px;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 2px solid var(--color-warm);
    border-radius: 8px;
    background: white;
    color: var(--color-deep);
    transition: border-color 0.2s ease;
}

.email-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-teal);
}

.email-form input[type="email"]::placeholder {
    color: var(--color-muted);
}

.email-form button {
    padding: 16px 32px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    background: var(--color-deep);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.email-form button:hover {
    background: var(--color-teal);
}

.email-form button:active {
    transform: scale(0.98);
}

.form-note {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.hero-decoration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-warm) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 900px) {
    .hero-decoration {
        display: none;
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-dark {
    background: var(--color-deep);
    color: white;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.section-title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 16px;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.step {
    position: relative;
    animation: fadeUp 0.6s ease-out backwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-warm);
    line-height: 1;
    margin-bottom: 16px;
}

.section-dark .step-number {
    color: var(--color-teal);
    opacity: 0.6;
}

.step h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    color: var(--color-muted);
    font-size: 1rem;
}

.section-dark .step p {
    color: rgba(255, 255, 255, 0.7);
}

/* Problem */
.problem-text {
    max-width: 640px;
    font-size: 1.125rem;
    line-height: 1.7;
}

.problem-text p {
    margin-bottom: 24px;
}

.problem-text p:last-child {
    margin-bottom: 0;
}

/* Audience */
.section-warm {
    background: var(--color-warm);
    padding: 60px 0;
}

.audience-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 600px) {
    .audience-list {
        grid-template-columns: 1fr;
    }
}

.audience-item {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--color-warm);
}

.audience-item h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.audience-item p {
    color: var(--color-muted);
    font-size: 0.9375rem;
}

/* Trust */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
}

.trust-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 100px 0;
}

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

.final-cta > p {
    color: var(--color-muted);
    margin-bottom: 40px;
    font-size: 1.125rem;
}

.final-cta .email-form {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 16px;
}

.final-cta .form-note {
    text-align: center;
}

/* Success banner */
.success-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-teal);
    color: white;
    text-align: center;
    padding: 16px 24px;
    font-weight: 500;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 100;
}

.success-banner.show {
    transform: translateY(0);
}

/* ==================== */
/* Blog index           */
/* ==================== */

.page-header {
    padding: 60px 0 0;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.page-description {
    color: var(--color-muted);
    font-size: 1.125rem;
    margin-bottom: 48px;
}

.post-list {
    list-style: none;
    padding-bottom: 100px;
}

.post-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-warm);
}

.post-item:first-child {
    padding-top: 0;
}

.post-date {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 8px;
}

.post-date::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.post-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.post-title a {
    color: var(--color-deep);
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: var(--color-teal);
}

.post-excerpt {
    color: var(--color-muted);
    font-size: 1rem;
}

/* ==================== */
/* Blog post            */
/* ==================== */

article {
    padding: 60px 0 80px;
}

.post-header {
    margin-bottom: 24px;
}

.post-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.post-content {
    line-height: 1.7;
}

.post-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 16px;
}

.post-content h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 2rem;
}

.post-content p {
    margin-bottom: 24px;
}

.post-content a {
    color: var(--color-teal);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-content a:hover {
    color: var(--color-deep);
}

.post-content blockquote {
    border-left: 3px solid var(--color-accent);
    padding-left: 20px;
    margin: 32px 0;
    font-style: italic;
    color: var(--color-muted);
}

.post-content code {
    font-family: 'SF Mono', Consolas, monospace;
    font-size: 0.9em;
    background: var(--color-warm);
    padding: 2px 6px;
    border-radius: 4px;
}

.post-content pre {
    background: var(--color-deep);
    color: var(--color-cream);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 32px 0;
}

.post-content pre code {
    background: none;
    padding: 0;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
}

.post-content ul,
.post-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content p + ul,
.post-content p + ol {
    margin-top: -18px;
}

.post-content hr {
  width: 40%;
  margin: 3rem auto;
  border: none;
  border-top: 1px solid var(--color-warm);
}

.post-footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--color-warm);
}

.back-link {
    font-size: 0.9375rem;
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--color-deep);
}

/* ==================== */
/* Privacy              */
/* ==================== */

.privacy-page {
    padding-top: 60px;
    padding-bottom: 100px;
}

.privacy-page h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 0.9375rem;
    color: var(--color-muted);
    margin-bottom: 48px;
}

.privacy-page h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
}

.privacy-page p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.privacy-page a {
    color: var(--color-teal);
}

.privacy-page ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.privacy-page li {
    margin-bottom: 8px;
}

/* ==================== */
/* 404                  */
/* ==================== */

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    min-height: 60vh;
}

.error-page .content {
    max-width: 400px;
}

.error-page h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.error-page p {
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: 32px;
}

.button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    background: var(--color-deep);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.button:hover {
    background: var(--color-teal);
}

.post-content table {
  border-collapse: collapse;
  table-layout: fixed;
  width: calc(100% + 120px);
  margin: 2rem -60px;

}

@media (max-width: 800px) {
  .post-content table {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}


.post-content th,
.post-content td {
  border: 1px solid var(--color-warm);
  padding: 0.75rem 1rem;
  vertical-align: top;
  text-align: left;
}

.post-content th {
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--color-warm);
}

.post-content td:first-child {
  width: 25%;
  font-weight: 500;
}


/* only in articles, for comparissons */
.article-content td:last-child {
  background: rgba(45, 90, 90, 0.04);
}

@media (max-width: 640px) {
  .post-content table {
    display: block;
    overflow-x: auto;
  }
}

/* ==================== */
/* Pricing              */
/* ==================== */

.pricing-subhead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -24px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid var(--color-warm);
    position: relative;
}

.pricing-card-featured {
    border-color: var(--color-teal);
    box-shadow: 0 8px 32px rgba(45, 90, 90, 0.12);
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--color-teal);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 20px;
}

.pricing-card-header h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-tagline {
    color: var(--color-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.pricing-card-price {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-warm);
    margin-bottom: 24px;
}

.price-coming {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-muted);
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-deep);
    font-size: 0.9375rem;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%232d5a5a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
    background-size: contain;
}

.feature-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--color-accent);
    color: var(--color-deep);
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

/* Vault examples */
.vault-explainer {
    font-size: 1.125rem;
    color: var(--color-deep);
    margin-bottom: 32px;
}

.vault-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 600px) {
    .vault-examples {
        grid-template-columns: 1fr;
    }
}

.vault-example {
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vault-example strong {
    font-weight: 600;
    color: var(--color-deep);
}

.vault-example span {
    font-size: 0.9375rem;
    color: var(--color-muted);
}

/* Included grid */
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

@media (max-width: 600px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
}

.included-item h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.included-item p {
    color: var(--color-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Comparison table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 32px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

.comparison-table th:first-child {
    width: 40%;
}

.comparison-table td {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

.comparison-table td:first-child {
    font-weight: 500;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table .feature-badge {
    background: var(--color-accent);
    color: var(--color-deep);
}

/* ==================== */
/* Page content (hero)  */
/* ==================== */

.page-content {
    max-width: 800px;
    line-height: 1.7;
}

.page-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 16px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content a {
    color: var(--color-teal);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-content a:hover {
    color: var(--color-deep);
}

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 8px;
}

.page-content blockquote {
    border-left: 3px solid var(--color-accent);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--color-muted);
}

.page-content hr {
    border: none;
    border-top: 1px solid var(--color-warm);
    margin: 40px 0;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.page-content th,
.page-content td {
    border: 1px solid var(--color-warm);
    padding: 12px 16px;
    text-align: left;
}

.page-content th {
    background: var(--color-warm);
    font-weight: 600;
}

.page-content strong {
    font-weight: 600;
}

/* ==================== */
/* About                */
/* ==================== */

.about-section {
    padding: 48px 0;
    border-bottom: 1px solid var(--color-warm);
}

.about-section:last-of-type {
    border-bottom: none;
}

.about-section h2 {
    margin-bottom: 24px;
}

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

@media (max-width: 700px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-item h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-item p {
    color: var(--color-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.company-details {
    background: var(--color-warm);
    padding: 24px;
    border-radius: 12px;
    margin-top: 32px;
}

.company-details p {
    margin-bottom: 4px;
    font-size: 0.9375rem;
}

.company-details strong {
    font-weight: 600;
}

/* ==================== */
/* Features             */
/* ==================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

@media (max-width: 800px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-warm);
}

.feature-card-image {
    background: var(--color-deep);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    font-size: 0.875rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card-image::after {
    content: 'Click to expand';
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.feature-card-image:hover::after {
    opacity: 1;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    transition: transform 0.2s ease;
}

.feature-card-image:hover img {
    transform: scale(1.02);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 47, 56, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.feature-card-content {
    padding: 24px;
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--color-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.differentiators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.differentiator {
    display: flex;
    gap: 16px;
}

.differentiator-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.differentiator-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-teal);
}

.differentiator h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.differentiator p {
    color: var(--color-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ==================== */
/* Contact              */
/* ==================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-item h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--color-muted);
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--color-teal);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ==================== */
/* Mobile               */
/* ==================== */

@media (max-width: 800px) {
    .nav-links {
        display: none;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .vault-examples {
        grid-template-columns: 1fr;
    }
}
