/* ============================================
   Anogeissus — Global Styles
   Apple.com-inspired, clean & minimal
   ============================================ */

/* Web fonts — SF Pro Display (Regular + Semibold) */
@font-face {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 400;
    src: local('☺'), url('../fonts/sf-pro-display-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 600;
    src: local('☺'), url('../fonts/sf-pro-display-semibold.woff2') format('woff2');
}

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

/* Prevent layout shift from scrollbar appearing/disappearing */
html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

/* Base */
body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    background: #fff;
    color: #1d1d1f;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Navigation ---- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 100;
    padding: 0 24px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 14px;
    margin: 0 20px;
    opacity: 0.72;
    transition: opacity 0.2s;
}

nav a:hover {
    opacity: 1;
}

/* Nav links — inline on desktop, dropdown on mobile */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Hamburger — hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #1d1d1f;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Animated X when open */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav dropdown — desktop */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    padding-top: 8px;
    z-index: 200;
}

.nav-dropdown-menu .nav-dropdown-inner {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 180px;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: #1d1d1f;
    opacity: 1;
    margin: 0;
    white-space: nowrap;
    transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.04);
}

.nav-dropdown-label {
    display: block;
    padding: 8px 20px 2px;
    font-size: 11px;
    font-weight: 600;
    color: #86868b;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-dropdown-label:first-child {
    padding-top: 4px;
}

.nav-dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 6px 0;
}

/* Overlay for closing menu on tap */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 90;
}

.nav-overlay.visible {
    display: block;
}

/* ---- Hero ---- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 60px 24px 32px;
    background: #f5f5f7;
    position: relative;
    overflow: hidden;
    --hero-img-height: min(580px, 60vh);
}

.hero-copy {
    max-width: 980px;
    margin: 0 auto 12px;
    flex-shrink: 0;
}

.hero h1 {
    font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.1;
    color: #1d1d1f;
    margin-bottom: 22px;
}

/* Caption strip — compact, sits between headline and image */
.hero-caption-strip {
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: first baseline;
    justify-content: center;
    gap: 12px;
}

.hero-caption-label {
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 650;
    letter-spacing: -0.01em;
    text-transform: none !important;
    font-variant-caps: normal;
    color: #1d1d1f;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-caption-icon {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    flex-shrink: 0;
    vertical-align: middle;
}

.hero-caption-text {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.4;
    color: #6e6e73;
    max-width: 680px;
    text-align: left;
    position: relative;
    top: -4px;
    min-height: 4.3em;
}

.hero-caption-text strong {
    color: #1d1d1f;
}

/* Showcase — fills remaining hero space, arrows pinned to edges */
.hero-showcase {
    width: 100%;
    max-width: 1280px;
    flex: 0 1 auto;
    min-height: 0;
    margin: 0 auto;
    margin-top: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 76px;
}

.hero-window {
    flex: 0 1 auto;
    min-width: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-window-body {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.hero-window-body img {
    height: var(--hero-img-height, 580px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 0;
    display: block;
    margin: 0 auto;
    box-shadow: none;
}

/* Hero arrows — absolute, pinned to showcase edges so they never shift */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.85);
    color: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
    padding: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-arrow:hover {
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-arrow-left {
    left: calc(50% - 600px);
}

.hero-arrow-right {
    right: calc(50% - 600px);
}

/* Hero dots — inside the image, bottom edge */
.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    padding: 0;
}

.hero-dot:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.4);
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    opacity: 0.35;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.scroll-indicator:hover {
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 12px;
    color: #86868b;
    letter-spacing: 0.05em;
}

.scroll-indicator .arrow {
    font-size: 16px;
    color: #86868b;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ---- Sections ---- */
.section {
    padding: 48px 24px 80px;
    text-align: center;
    background: #f5f5f7;
    margin-top: 12px;
}

.section h2 {
    font-family: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 3.8vw, 40px);
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.07;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.section .tagline {
    font-family: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(15px, 2vw, 21px);
    font-weight: 400;
    color: #6e6e73;
    margin-bottom: 16px;
}

.section .details {
    font-family: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

/* Section video */
.section-video {
    max-width: 900px;
    margin: 0 auto 36px;
}

.section-video video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.05);
    display: block;
}

.video-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.video-label {
    font-size: 15px;
    color: #86868b;
}

.video-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.85);
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.video-toggle:hover {
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.15);
}

/* Section icon */
.section-icon {
    border-radius: 14px;
    margin-bottom: 16px;
}

/* Section image */
.section-image {
    max-width: 900px;
    margin: 0 auto 36px;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.05);
    display: block;
}

/* Screenshot placeholders */
.screenshot-placeholder {
    max-width: 800px;
    margin: 40px auto;
    background: #e8e8ed;
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86868b;
    font-size: 15px;
}

/* ---- CTAs ---- */
.cta-group {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta {
    font-size: 18px;
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}

.cta:hover {
    color: #0077ed;
    text-decoration: underline;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 156px;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, #1e7df0 0%, #0a66d8 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 6px 18px rgba(10, 102, 216, 0.20);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cta-pill:hover {
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(180deg, #2a86f5 0%, #0e6fe6 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.26), 0 8px 22px rgba(10, 102, 216, 0.24);
    transform: translateY(-1px);
}

.app-store-badge {
    height: 40px;
    transition: opacity 0.2s;
}

.app-store-badge:hover {
    opacity: 0.8;
}

/* ---- Testimonials ---- */
.testimonials {
    padding: 100px 24px;
    background: #fff;
}

.testimonials h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.testimonials .section-subtitle {
    font-size: 18px;
    color: #6e6e73;
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-group {
    max-width: 1100px;
    margin: 0 auto 56px;
}

.testimonials-group h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 32px;
}

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

.testimonial-card {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
}

.testimonial-card .stars {
    font-size: 18px;
    color: #f5a623;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.55;
    color: #1d1d1f;
    font-style: italic;
}

/* ---- Legal Pages ---- */
.legal-page {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff;
    text-align: left !important;
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: left;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content p,
.legal-content ul,
.legal-content li {
    text-align: left;
}

.legal-content h1 {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
    margin-top: 32px;
    margin-bottom: 8px;
}

.legal-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1f;
    margin-top: 20px;
    margin-bottom: 4px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.legal-content ul {
    margin: 4px 0 12px 24px;
    color: #1d1d1f;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 4px;
}

.legal-content code {
    font-family: "SF Mono", SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
    color: #1d1d1f;
}

.legal-content ol {
    margin: 4px 0 12px 24px;
    color: #1d1d1f;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

.legal-content a:hover {
    color: #0077ed;
    text-decoration: underline;
}

.legal-updated {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 4px;
}

/* ---- Tutorials ---- */
.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 10px;
    transition: background 0.2s;
}

.pdf-link:hover {
    background: #f5f5f7;
}

.pdf-link img {
    width: 56px;
    height: auto;
    flex-shrink: 0;
}

.pdf-link span {
    font-size: 17px;
    color: #0066cc;
}

.tutorial-video {
    margin-top: 40px;
}

.tutorial-video h2 {
    font-size: 21px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 10px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* ---- Footer ---- */
footer {
    background: #f5f5f7;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 48px 24px 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-col a {
    display: block;
    color: #6e6e73;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #1d1d1f;
}

footer .copyright {
    text-align: center;
    color: #86868b;
    font-size: 13px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
}

/* ---- Mobile ---- */
/* ---- Blog ---- */
.blog-page {
    padding-top: 90px;
}

.blog-page .legal-content {
    max-width: 980px;
}

.blog-list {
    display: grid;
    gap: 26px;
    margin-top: 28px;
}

.blog-card {
    background: #f5f5f7;
    border-radius: 14px;
    padding: 20px;
}

.blog-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 14px;
}

.blog-card h2 {
    font-size: 24px;
    margin: 0 0 6px;
}

.blog-card h2 a {
    color: #1d1d1f;
    text-decoration: none;
}

.blog-card h2 a:hover {
    text-decoration: underline;
}

.blog-date {
    color: #6e6e73;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-card p,
.blog-post-content p {
    color: #1d1d1f;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 12px;
}

.blog-collapsed p,
.blog-post-excerpt {
    font-weight: 600;
}

.blog-readmore {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.blog-readmore:hover {
    text-decoration: underline;
}

.blog-empty {
    color: #6e6e73;
}

.blog-post-article h1 {
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 8px;
}

.blog-post-cover {
    width: 100%;
    border-radius: 12px;
    margin: 18px 0 22px;
}

/* ---- Blog Admin ---- */
.blog-admin-page {
    padding-top: 54px;
}

.blog-admin-page .legal-content {
    max-width: 1260px;
}

.blog-admin-card {
    background: #f5f5f7;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 20px;
}

.blog-admin-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.blog-admin-form {
    display: grid;
    gap: 10px;
}

.blog-admin-form label {
    font-size: 14px;
    color: #1d1d1f;
    display: grid;
    gap: 6px;
}

.blog-admin-form input,
.blog-admin-form textarea,
.blog-admin-form select {
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    padding: 9px 10px;
    font: inherit;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.blog-admin-form button,
.blog-admin-actions button,
.blog-admin-table button {
    border: 0;
    border-radius: 999px;
    background: #0066cc;
    color: #fff;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.2;
}

.blog-admin-form button {
    width: 100%;
    max-width: 100%;
}

.blog-admin-table button[data-move] {
    padding: 6px 9px;
    min-width: 30px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blog-admin-table button.danger {
    background: #c62828;
}

.blog-admin-msg {
    margin-top: 8px;
    color: #6e6e73;
}

.blog-table-wrap {
    overflow-x: auto;
}

.blog-admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    font-size: 14px;
}

.blog-admin-table th,
.blog-admin-table td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #e3e3e8;
}

@media (max-width: 768px) {
    nav {
        justify-content: flex-start;
        padding: 0 16px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 42px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        flex-direction: column;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        z-index: 100;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        margin: 0;
        padding: 16px 24px;
        font-size: 20px;
        font-weight: 600;
        text-align: left;
        opacity: 1;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover {
        background: rgba(0, 0, 0, 0.03);
    }

    /* Dropdown inline on mobile */
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .nav-dropdown-toggle {
        margin: 0 !important;
        padding: 16px 24px !important;
        font-size: 20px !important;
        font-weight: 600 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    /* Hide dropdown by default on mobile — only show on click (open class) */
    .nav-dropdown-menu {
        display: none !important;
        flex-direction: column;
        position: static;
        transform: none;
        margin: 0;
        padding-top: 0;
        background: rgba(0, 0, 0, 0.02);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
        border: none;
        box-shadow: none;
        padding: 0;
        min-width: 0;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none !important;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: flex !important;
    }

    .nav-dropdown-menu a {
        padding: 14px 24px 14px 44px !important;
        font-size: 17px !important;
        font-weight: 400 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .hero {
        padding: 56px 20px 32px;
    }

    .hero h1 {
        font-size: clamp(22px, 6vw, 32px);
    }

    .hero-caption-strip {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 12px;
    }

    .hero-caption-text {
        text-align: center;
        font-size: 16px;
    }

    .hero-window-body img {
        max-height: none;
        border-radius: 10px;
    }

    .cta-pill {
        min-width: 144px;
        min-height: 42px;
        padding: 0 20px;
        font-size: 16px;
    }

    .section {
        padding: 48px 20px;
    }

    .testimonials {
        padding: 60px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-col a {
        display: inline;
        margin-bottom: 0;
    }

    .footer-col a + a::before {
        content: " | ";
        color: #c7c7cc;
        margin: 0 6px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-showcase {
        padding: 0 12px;
    }

    .hero-window-body img {
        height: auto;
        width: 100%;
    }

    .hero-caption-text {
        font-size: 15px;
        min-height: 0;
    }

    .hero-copy {
        margin-bottom: 6px;
    }

    .hero-showcase {
        margin-top: 8px;
    }

    .hero {
        padding-bottom: 20px;
    }

    .hero-dot {
        width: 7px;
        height: 7px;
    }
}
