@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;600;700&family=Lora:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5ede4 0%, #efe7dc 100%);
    line-height: 1.6;
    color: #4a3d33;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: rgba(245, 237, 228, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 154, 120, 0.15);
}

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

/* When the logo is an anchor, remove link decoration and inherit color */
.logo {
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #4a3d33;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 20px;
    height: 3px;
    background: #f5ede4;
    border-radius: 2px;
    position: absolute;
    top: 12px;
    left: 10px;
    transform: rotate(-5deg);
}

.logo-icon::after {
    content: '';
    width: 16px;
    height: 3px;
    background: #f5ede4;
    border-radius: 2px;
    position: absolute;
    bottom: 12px;
    left: 10px;
    transform: rotate(8deg);
}

.logo-text {
    font-size: 24px;
    font-weight: 500;
    color: #4a3d33;
    letter-spacing: -0.5px;
    font-family: 'Lora', serif;
}

.logo-image {
    height: 32px;
    width: auto;
    display: block;
}

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

.nav-links a {
    text-decoration: none;
    color: #6b5d52;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #4a3d33;
}


.cta-btn {
    background: #c09a78;
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(192, 154, 120, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn:hover {
    background: #b08a68;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(192, 154, 120, 0.4);
}

.cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(192, 154, 120, 0.3);
}

.cta-btn:focus-visible {
    outline: 2px solid #c09a78;
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    padding: 80px 48px 60px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 52px;
    font-weight: 500;
    color: #4a3d33;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
    font-family: 'Lora', serif;
}

.hero .highlight {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    color: #c09a78;
    font-size: 56px;
}

.hero .highlight-digital {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    color: #c09a78;
}

.hero p {
    font-size: 20px;
    color: #6b5d52;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Demo Section */
.demo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.note-sample {
    background: transparent;
    padding: 0;
    border-radius: 16px;
    box-shadow: none;
    width: 440px;
    font-family: 'Kalam', cursive;
    font-size: 15px;
    line-height: 1.8;
    color: #4a3d33;
    transform: none;
    border: none;
}

.demo-arrow {
    font-size: 32px;
    color: #c09a78;
    font-weight: bold;
}

.digital-output {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(74, 61, 51, 0.08);
    width: 320px;
    border-left: 4px solid #c09a78;
}

.digital-output h3 {
    color: #4a3d33;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: 'Lora', serif;
}

.doc-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f3f5;
    color: #5a6c7d;
    border: 1px solid #e9ecef;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.digital-output p {
    color: #6b5d52;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 14px;
}

.digital-output ul {
    color: #6b5d52;
    margin-bottom: 16px;
    margin-left: 16px;
}

.digital-output li {
    margin-bottom: 4px;
}

/* Media helpers */
.note-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Integration Icons */
.integrations {
    text-align: center;
    margin: 60px 0;
}

.integrations p {
    color: #6b5d52;
    margin-bottom: 24px;
    font-size: 16px;
}

.icons-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.icon-item:hover {
    opacity: 1;
}

.app-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.obsidian-icon {
    background: #7c3aed;
    color: white;
}

.notion-icon {
    background: #000;
    color: white;
}

.gdrive-icon {
    background: #4285f4;
    color: white;
}

.onenote-icon {
    background: #7719aa;
    color: white;
}

.icon-item span {
    font-size: 13px;
    color: #6b5d52;
    font-weight: 500;
}

.brand-icon {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
}

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 80px 48px;
    margin-top: 40px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    color: #4a3d33;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    font-family: 'Lora', serif;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: #f5ede4;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(192, 154, 120, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

/* Arrows between steps (replaces numbers) */
.steps .step::after {
    content: '→';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: #c09a78;
    font-size: 24px;
    line-height: 1;
}
.steps .step:last-child::after { display: none; }

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 61, 51, 0.1);
}

.step-number {
    position: absolute;
    top: -12px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #c09a78;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    display: none; /* hide numeric badges in favor of arrows */
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #3498db, #2980b9); */
    background: transparent;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

/* Ensure inline SVG step icons render crisp and consistently */
.step-icon svg {
    width: 36px;
    height: 36px;
    display: block;
    stroke: #4a3d33;
    stroke-width: 2;
    fill: none;
    vector-effect: non-scaling-stroke;
}

.step h3 {
    font-size: 22px;
    font-weight: 600;
    color: #4a3d33;
    margin-bottom: 16px;
    font-family: 'Lora', serif;
}

.step p {
    color: #6b5d52;
    line-height: 1.6;
    font-size: 15px;
}

/* Integrations Section */
.integrations-section {
    padding: 80px 0 0 0;
    background: #f5ede4;
}

.integrations-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    color: #4a3d33;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    font-family: 'Lora', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b5d52;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Centered CTA below integrations grid */
.center-cta {
    text-align: center;
    margin-top: 32px;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* force 2x2 on desktop */
    gap: 32px;
}

.integration-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(74, 61, 51, 0.06);
    border: 1px solid rgba(192, 154, 120, 0.2);
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 61, 51, 0.12);
}

.integration-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    margin: 0 auto 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.brand-icon-large {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
}

.integration-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4a3d33;
    margin-bottom: 16px;
    font-family: 'Lora', serif;
}

.integration-card p {
    color: #6b5d52;
    line-height: 1.6;
    margin-bottom: 24px;
}

.integration-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    background: rgba(192, 154, 120, 0.15);
    color: #9a7a58;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    color: #4a3d33;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    font-family: 'Lora', serif;
}

.pricing-categories {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: 48px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-category h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4a3d33;
    margin-bottom: 8px;
    font-family: 'Lora', serif;
}

.category-subtitle {
    font-size: 15px;
    color: #6b5d52;
    margin-bottom: 24px;
}

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

.pricing-options.centered {
    grid-template-columns: 1fr;
    max-width: 250px;
    margin: 0 auto;
}

.pricing-card {
    background: #f5ede4;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 61, 51, 0.1);
}

.pricing-card.featured {
    border-color: #c09a78;
    background: white;
}

.pricing-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #4a3d33;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #c09a78;
    margin-bottom: 4px;
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 500;
    color: #6b5d52;
}

.pricing-card .credits {
    font-size: 14px;
    color: #6b5d52;
    margin: 0;
}

.pricing-card .asterisk {
    color: #c09a78;
    text-decoration: none;
    font-weight: 600;
    margin-left: 2px;
}

.pricing-card .asterisk:hover {
    color: #4a3d33;
    text-decoration: underline;
}

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

.pricing-card {
    background: #f5ede4;
    border: 2px solid rgba(192, 154, 120, 0.2);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 61, 51, 0.1);
}

.pricing-card.pro {
    border-color: #c09a78;
    box-shadow: 0 8px 32px rgba(192, 154, 120, 0.2);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #c09a78;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4a3d33;
    margin-bottom: 8px;
    font-family: 'Lora', serif;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #4a3d33;
    margin-bottom: 8px;
}

.price span {
    font-size: 18px;
    color: #6b5d52;
}

.plan-header p {
    color: #6b5d52;
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.plan-features li {
    color: #6b5d52;
    margin-bottom: 12px;
    font-size: 15px;
}

.plan-btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.free-btn {
    background: #f5ede4;
    color: #4a3d33;
    border: 2px solid rgba(192, 154, 120, 0.3);
    text-decoration: none;
}

.free-btn:hover {
    background: #efe7dc;
}

.pro-btn {
    background: #c09a78;
    color: white;
}

.pro-btn:hover {
    background: #b08a68;
}

.topup-btn {
    background: #4a3d33;
    color: white;
}

.topup-btn:hover {
    background: #5a4d43;
}

.pricing-note {
    background: rgba(192, 154, 120, 0.1);
    border: 1px solid rgba(192, 154, 120, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.pricing-note p {
    color: #9a7a58;
    margin: 0;
}

/* Content (Legal/Docs) */
.content {
    padding: 80px 0;
    background: white;
}

.content .container {
    max-width: 900px;
}

.content article header {
    margin-bottom: 24px;
}

.content h1 {
    font-size: 36px;
    font-weight: 500;
    color: #4a3d33;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    font-family: 'Lora', serif;
}

.content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #4a3d33;
    margin: 32px 0 12px;
    font-family: 'Lora', serif;
}

.content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4a3d33;
    margin: 20px 0 8px;
    font-family: 'Lora', serif;
}

.content p {
    color: #6b5d52;
    margin-bottom: 12px;
}

.content ul,
.content ol {
    color: #6b5d52;
    margin-bottom: 12px;
    margin-left: 20px;
}

.content li {
    margin-bottom: 6px;
}

.content nav {
    margin: 16px 0 8px;
}

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

.content table th,
.content table td {
    border: 1px solid rgba(192, 154, 120, 0.2);
    padding: 8px 10px;
    text-align: left;
    color: #6b5d52;
    vertical-align: top;
}

.content table th {
    background: #f5ede4;
    color: #4a3d33;
}

/* Tagline Section */
.tagline-section {
    padding: 60px 0;
    text-align: center;
    background: #f5ede4;
}

.tagline {
    font-size: 28px;
    font-weight: 500;
    color: #c09a78;
    font-family: 'Lora', serif;
    letter-spacing: -0.5px;
}

/* Footer */
.footer {
    background: #4a3d33;
    color: white;
    padding: 60px 0 24px;
}

.bottom-logo-text {
    font-size: 24px;
    font-weight: 500;
    color: #c09a78;
    letter-spacing: -0.5px;
    font-family: 'Lora', serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #c9b8a8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #c9b8a8;
    line-height: 1.6;
    margin-top: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(192, 154, 120, 0.3);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #c9b8a8;
    margin: 0;
}

/* Workflow Steps */
.workflow-step {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 48px;
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.workflow-header {
    text-align: center;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: #4a3d33;
    margin-bottom: 8px;
    font-family: 'Lora', serif;
}

.workflow-header p {
    font-size: 16px;
    color: #6b5d52;
    line-height: 1.5;
}

.workflow-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #c09a78 transparent;
}

.workflow-carousel::-webkit-scrollbar {
    height: 6px;
}

.workflow-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.workflow-carousel::-webkit-scrollbar-thumb {
    background: #c09a78;
    border-radius: 3px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    margin: 0 auto;
    justify-content: center;
}

.screenshot-item {
    flex-shrink: 0;
    width: 240px;
}

.screenshot-item img {
    background: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(74, 61, 51, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-item:hover img {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 61, 51, 0.15);
}

.screenshot-caption {
    font-size: 11px;
    color: #9a8a7a;
    text-align: center;
    margin: 12px 0 0;
    line-height: 1.4;
}

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

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

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

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

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 36px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* Hero Compatibility (Devices + Integrations) */
.hero-compatibility {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.compatibility-group {
    text-align: center;
}

.compatibility-group p {
    color: #6b5d52;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.device-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 4px;
}

/* SVG Device Icons */
.device-svg-icon {
    background: #f5ede4;
    border: 1px solid rgba(192, 154, 120, 0.3);
}

.device-svg-icon svg {
    width: 55%;
    height: 55%;
    color: #6b5d52;
}

.device-examples {
    display: block;
    font-size: 11px;
    color: #9a8a7a;
    margin-top: 2px;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background: white;
}

.use-cases-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    color: #4a3d33;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
    font-family: 'Lora', serif;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.use-case {
    background: #f5ede4;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(192, 154, 120, 0.2);
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 61, 51, 0.1);
}

.use-case-context {
    font-size: 14px;
    font-weight: 600;
    color: #c09a78;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.use-case-flow {
    margin-bottom: 16px;
}

.flow-from {
    display: block;
    font-size: 15px;
    color: #6b5d52;
    margin-bottom: 8px;
}

.flow-arrow {
    display: block;
    font-size: 20px;
    color: #c09a78;
    margin: 8px 0;
}

.flow-to {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #4a3d33;
    font-family: 'Lora', serif;
}

.use-case-speed {
    font-size: 13px;
    color: #9a8a7a;
    font-style: italic;
}

/* Devices Section */
.devices-section {
    padding: 40px 0 80px;
    background: #f5ede4;
}

.devices-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    color: #4a3d33;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    font-family: 'Lora', serif;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.device-card {
    background: white;
    border-radius: 12px;
    padding: 20px 12px 16px;
    text-align: center;
    border: 1px solid rgba(192, 154, 120, 0.15);
    transition: all 0.3s ease;
}

.device-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 61, 51, 0.08);
}

.device-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #f5ede4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.device-card-icon svg {
    width: 24px;
    height: 24px;
    color: #8b7355;
}

.device-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #4a3d33;
    margin-bottom: 2px;
    font-family: 'Lora', serif;
}

.device-card p {
    font-size: 11px;
    color: #9a8a7a;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.device-method {
    display: block;
    font-size: 11px;
    color: #c09a78;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav {
        padding: 20px 24px;
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 24px;
    }

    .hero {
        padding: 60px 24px 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero .highlight {
        font-size: 46px;
    }

    .demo {
        flex-direction: column;
        gap: 32px;
        padding: 0 24px;
    }

    /* On mobile, show the arrow pointing down */
    .demo-arrow {
        transform: rotate(90deg);
        line-height: 1;
    }

    .how-it-works {
        padding: 60px 24px;
    }

    .how-it-works h2 {
        font-size: 32px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    /* Hide between-step arrows on mobile and allow larger note to scale */
    .steps .step::after { display: none; }
    .note-sample { width: 100%; transform: none; }

    .icons-row {
        gap: 24px;
    }

    .integrations-section {
        padding: 60px 0;
    }

    .integrations-section h2 {
        font-size: 32px;
    }

    .integration-grid { grid-template-columns: 1fr; }
    .content { padding: 60px 0; }
    .content h1 { font-size: 30px; }
    .content h2 { font-size: 24px; }
    .content h3 { font-size: 18px; }
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-section h2 {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .workflow-step {
        padding: 0 24px;
        margin-bottom: 48px;
    }

    .workflow-header {
        gap: 16px;
    }

    .workflow-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .workflow-text h3 {
        font-size: 22px;
    }

    .carousel-track {
        gap: 12px;
    }

    .screenshot-item {
        width: 200px;
    }

    .pricing-categories {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .pricing-section h2 {
        font-size: 32px;
    }

    /* Use Cases responsive */
    .use-cases-section {
        padding: 60px 24px;
    }

    .use-cases-section h2 {
        font-size: 32px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Devices responsive */
    .devices-section {
        padding: 60px 24px;
    }

    .devices-section h2 {
        font-size: 32px;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Hero compatibility responsive */
    .hero-compatibility {
        gap: 24px;
    }

    .icons-row {
        gap: 16px;
    }
}
