/* Cassandra — public pages: landing, pricing, about, terms, privacy, * disclaimer. Shared by all templates extending public_base.html. * Visual language matches the app shell but without dashboard chrome. */ .public-page { background: var(--bg); } .public-shell { display: flex; flex-direction: column; min-height: 100vh; max-width: 1080px; margin: 0 auto; padding: 0 24px; } .public-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 0 16px; border-bottom: 1px solid var(--border); } .public-header__brand { color: var(--accent); font-weight: 700; text-decoration: none; font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.01em; } .public-header__brand::before { content: "▰ "; opacity: 0.6; } .public-header__brand:hover { color: var(--text); } .public-header__nav { display: flex; align-items: center; gap: 22px; } .public-header__nav a { color: var(--muted); font-size: 13px; text-decoration: none; } .public-header__nav a:hover, .public-header__nav a.active { color: var(--text); } .public-header__cta { color: var(--accent) !important; border: 1px solid var(--accent); padding: 6px 14px; border-radius: 3px; } .public-header__cta:hover { background: var(--accent); color: var(--bg) !important; } .public-main { flex: 1; padding: 48px 0 64px; } .public-footer { border-top: 1px solid var(--border); padding: 28px 0 36px; margin-top: 24px; font-size: 12px; color: var(--muted); } .public-footer__inner { display: flex; flex-direction: column; gap: 14px; } .public-footer__brand strong { color: var(--text); margin-right: 10px; } .public-footer__tagline { color: var(--muted); } .public-footer__links { display: flex; flex-wrap: wrap; gap: 16px; } .public-footer__links a { color: var(--muted); text-decoration: none; } .public-footer__links a:hover { color: var(--accent); } .public-footer__meta { color: var(--dim); font-size: 11px; } /* --- Hero (landing) -------------------------------------------------- */ .hero { padding: 32px 0 48px; border-bottom: 1px solid var(--border); margin-bottom: 48px; } .hero__brand { color: var(--muted); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; } .hero__headline { font-size: clamp(28px, 5vw, 44px); font-weight: 700; line-height: 1.15; color: var(--text); margin: 12px 0 14px; letter-spacing: -0.01em; } .hero__subhead { font-size: 16px; color: var(--muted); max-width: 640px; line-height: 1.55; margin: 0 0 24px; } .hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; } /* Shared button shape — was previously scoped to .hero__ctas, which made the pricing-card CTAs render as bare anchors. */ .btn-primary, .btn-secondary { display: inline-block; padding: 10px 22px; border-radius: 3px; font-size: 13.5px; font-weight: 500; line-height: 1.4; text-decoration: none; text-align: center; cursor: pointer; } /* Block variant: full-width within parent, slightly taller — used inside tier cards so each CTA spans the card and reads as the obvious action. */ .btn-block { display: block; width: 100%; padding: 12px 22px; font-size: 14px; } /* Qualify with `a` so we beat `a { color: var(--accent) }` and any :link/:visited UA defaults. Without `a.btn-primary` the cascade can resolve in favour of the visited-link color on some browsers and the label disappears against the accent background. */ a.btn-primary, a.btn-primary:link, a.btn-primary:visited { background: var(--accent); color: var(--bg); border: 1px solid var(--accent); } a.btn-primary:hover { background: transparent; color: var(--accent); } a.btn-secondary, a.btn-secondary:link, a.btn-secondary:visited { background: transparent; color: var(--text); border: 1px solid var(--border); } a.btn-secondary:hover { color: var(--accent); border-color: var(--accent); } /* --- Feature blocks (landing) --------------------------------------- */ .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 8px 0 56px; } .feature-card { border: 1px solid var(--border); border-radius: 4px; padding: 22px 22px 24px; background: var(--surface); /* Flex column so the screenshot thumbnail can dock to the bottom via margin-top:auto — that's what lines the three thumbnails up across cards regardless of body-text length. */ display: flex; flex-direction: column; } .feature-card__tag { font-family: var(--font-mono); font-size: 10.5px; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; } .feature-card__title { font-size: 17px; font-weight: 600; color: var(--text); margin: 0 0 10px; } .feature-card__body { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; /* Grow to fill the flex column so the thumbnail below docks to the bottom of the card. With grid-stretched equal-height cards, this is what aligns the thumbnails across the three cards. */ flex-grow: 1; } /* --- Section primitives reused across pricing/about/legal ---------- */ .public-section { margin: 0 0 56px; } .public-section__head { font-size: 20px; font-weight: 600; color: var(--text); margin: 0 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); } .public-section h3 { font-size: 15px; font-weight: 600; color: var(--text); margin: 24px 0 8px; } .public-section p, .public-section li { font-size: 14px; line-height: 1.65; color: var(--text); } .public-section p { margin: 0 0 14px; } .public-section ul { margin: 0 0 16px; padding-left: 22px; } .public-section li { margin-bottom: 6px; } .public-section a { color: var(--accent); } .public-section--callout { border-left: 3px solid var(--accent); padding: 16px 22px; background: var(--surface); border-radius: 0 4px 4px 0; margin: 0 0 32px; } .public-section--warning { border-left-color: var(--negative); background: color-mix(in srgb, var(--negative) 6%, var(--bg)); } .public-section--warning a { color: var(--text); } /* --- "What this is not" strip on landing --------------------------- */ .not-strip { border: 1px dashed var(--border); padding: 18px 22px; border-radius: 4px; margin: 0 0 56px; background: var(--surface); } .not-strip strong { color: var(--text); } .not-strip ul { display: flex; flex-wrap: wrap; gap: 18px 28px; margin: 8px 0 0; padding: 0; list-style: none; } .not-strip li { color: var(--muted); font-size: 13px; } .not-strip li::before { content: "✕ "; color: var(--negative); font-weight: 700; margin-right: 4px; } /* --- Pricing comparison -------------------------------------------- */ .tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 8px 0 40px; } .tier-card { position: relative; border: 1px solid var(--border); border-radius: 6px; padding: 28px 26px 28px; background: var(--surface); display: flex; flex-direction: column; } .tier-card--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset, 0 12px 32px rgba(15, 23, 42, 0.10); } [data-theme="dark"] .tier-card--featured { box-shadow: 0 0 0 1px var(--accent) inset, 0 12px 32px rgba(0, 0, 0, 0.45); } .tier-card__badge { position: absolute; top: -11px; left: 24px; background: var(--accent); color: var(--bg); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; font-weight: 600; padding: 4px 10px; border-radius: 3px; } /* Tier name — the actual heading, not the small uppercase chip it used to be. Pairs with .tier-card__tagline for a one-line value framing. */ .tier-card__name { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); margin: 0 0 4px; line-height: 1.1; } .tier-card__tagline { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 22px; } .tier-card__price { font-size: 40px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; } .tier-card__price-unit { font-size: 15px; color: var(--muted); font-weight: 400; letter-spacing: 0; } .tier-card__price-hint { font-size: 12px; color: var(--muted); line-height: 1.55; margin-bottom: 20px; } .tier-card__divider { height: 1px; background: var(--border); margin: 0 0 18px; } .tier-card__list-head { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 12px; } .tier-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; } .tier-card li { font-size: 13.5px; color: var(--text); line-height: 1.55; padding: 8px 0 8px 22px; position: relative; border-bottom: 1px solid var(--border); } .tier-card li:last-child { border-bottom: 0; } .tier-card li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--positive); font-weight: 700; } .tier-card__cta { margin-top: 18px; } /* Consent block above the Subscribe buttons (paid card, logged-in free user). The Subscribe buttons render disabled; ticking the box is what enables them. Wording covers ToS agreement (both cadences) + the Reg 36 CCR 2013 waiver (monthly only). */ .tier-card__consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; padding: 12px 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 4px; font-size: 12px; line-height: 1.55; color: var(--muted); cursor: pointer; } .tier-card__consent input[type="checkbox"] { flex-shrink: 0; margin-top: 2px; cursor: pointer; } .tier-card__consent a { color: var(--accent); text-decoration: underline; } .tier-card__consent strong { color: var(--text); } .tier-card__more { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--border); font-size: 12px; color: var(--muted); line-height: 1.55; } /* Side-by-side feature comparison table. Lives below the cards and makes the deltas readable at a glance — the cards sell, the table confirms. */ .compare-table { width: 100%; border-collapse: collapse; margin: 0 0 16px; font-size: 13.5px; } .compare-table th, .compare-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5; } .compare-table thead th { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); font-weight: 600; border-bottom: 1px solid var(--border); } .compare-table th[scope="row"] { font-weight: 500; color: var(--text); width: 38%; } .compare-table td.compare-table__free { color: var(--muted); } .compare-table td.compare-table__paid { color: var(--text); font-weight: 500; } .compare-table td.compare-table__paid strong { color: var(--accent); font-weight: 600; } .compare-table td.compare-table__none { color: var(--dim); } @media (max-width: 520px) { .compare-table th[scope="row"] { width: 50%; } .compare-table th, .compare-table td { padding: 10px 8px; font-size: 13px; } } /* --- Landing-page screenshots: hero shot, thumbnails, gallery, lightbox --- */ /* All clickable screenshots are