*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 960px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: #222;
    background: #f8f9fa;
    line-height: 1.6;
}

a {
    color: #4a90d9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.site-logo img {
    height: 80px;
    width: auto;
}

nav a {
    margin-left: 1.5rem;
    font-size: 0.9rem;
    color: #555;
}

nav a:hover {
    color: #4a90d9;
}

.hero {
    text-align: center;
    margin: 3rem 0;
}

.hero h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.about-section {
    text-align: center;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Screenshot showcase */

.product-section {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.product-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.product-section h4 {
    font-size: 1.15rem;
    color: #1a1a1a;
    margin: 2rem 0 0.5rem;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem auto 0;
    max-width: 720px;
}

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

.screenshot-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    margin: 0;
}

.screenshot-card img {
    width: 100%;
    display: block;
}

.screenshot-card figcaption {
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    text-align: left;
}

section {
    margin-bottom: 2.5rem;
}

section h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
}

section p {
    color: #444;
    margin: 0 0 1rem;
}

.pricing-trial {
    text-align: center;
    font-size: 0.95rem;
    color: #4a90d9;
    font-weight: 600;
    margin: 0 0 1rem;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.tier-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.pricing-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-divider {
    width: 1px;
    height: 3rem;
    background: #dee2e6;
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.tier-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
}

.pricing-savings {
    font-size: 0.8rem;
    color: #2e7d32;
    font-weight: 600;
    margin-top: 0.25rem;
}

.cta-button {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    background: #4a90d9;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 1rem;
}

.cta-button:hover {
    opacity: 0.9;
    text-decoration: none;
}

.coming-soon {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: #e9ecef;
    color: #555;
    font-weight: 600;
    font-size: 0.8rem;
}


.policy h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
}

.policy h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 2rem 0 0.5rem;
}

.policy p,
.policy ul {
    color: #444;
    margin: 0 0 1rem;
}

.policy ul {
    padding-left: 1.5rem;
}

.policy li {
    margin-bottom: 0.4rem;
}

/* Team page */

.team-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem 0;
}

.team-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 0.5rem;
}

.team-intro {
    text-align: center;
    color: #555;
    max-width: 540px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
}

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

.team-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e8e8e8;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.team-card .role {
    min-height: 4.5em;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    max-width: 360px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.15rem;
}

.team-card .role {
    font-size: 0.85rem;
    color: #4a90d9;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.team-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.65;
    text-align: left;
}

.team-card .links {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card .links a {
    font-size: 0.8rem;
    color: #4a90d9;
    text-decoration: none;
    border: 1px solid #d6e4f0;
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    transition: background 0.15s, border-color 0.15s;
}

.team-card .links a:hover {
    background: #eef4fb;
    border-color: #4a90d9;
    text-decoration: none;
}

.site-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
}

.site-footer nav {
    margin-bottom: 0.75rem;
}

.site-footer nav a {
    margin: 0 0.75rem;
    color: #777;
}

.site-footer nav a:hover {
    color: #4a90d9;
}

