/* ==========================================================================
   SpottingLog — Marketing Website Stylesheet
   Brand tokens align with the in-app CSS/style.css (AGENTS.md "Brand Colours")
   ========================================================================== */

:root {
    --brand-navy: #000032;
    --brand-navy-2: #0a1352;
    --brand-primary: #0b7ecf;
    --brand-primary-dark: #0966a8;
    --brand-primary-pale: #e8f3fc;
    --brand-success: #00b67a;
    --brand-danger: #bc4749;
    --brand-amber: #f7a526;
    --brand-surface: #f0f4f8;
    --brand-surface-2: #ffffff;
    --brand-muted: #8faabf;
    --brand-body: #374151;
    --brand-heading: #0b1226;
    --brand-border: #e5edf4;
    --brand-card-shadow: 0 8px 24px rgba(8, 24, 60, 0.06), 0 2px 6px rgba(8, 24, 60, 0.04);
    --brand-card-shadow-hover: 0 18px 40px rgba(8, 24, 60, 0.12), 0 6px 14px rgba(8, 24, 60, 0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 28px;
    --container-max: 1200px;
    --gutter: clamp(1.25rem, 3vw, 2.5rem);
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--brand-body);
    background: var(--brand-surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.18s ease;
}

a:hover {
    color: var(--brand-primary-dark);
}

h1,
h2,
h3,
h4 {
    color: var(--brand-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.6em;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
}

p {
    margin: 0 0 1em;
}

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.section--surface {
    background: var(--brand-surface-2);
}

.section--navy {
    background: var(--brand-navy);
    color: #ffffff;
}

.section--navy h1,
.section--navy h2,
.section--navy h3 {
    color: #ffffff;
}

.section--gradient {
    background: linear-gradient(140deg, var(--brand-navy) 0%, var(--brand-navy-2) 55%, #112c8a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.section--gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 22%, rgba(11, 126, 207, 0.45), transparent 45%),
        radial-gradient(circle at 82% 78%, rgba(0, 182, 122, 0.22), transparent 50%);
    pointer-events: none;
}

.section--gradient > * {
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-primary);
    background: var(--brand-primary-pale);
    padding: 0.45em 1em;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.section--gradient .section-eyebrow,
.section--navy .section-eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #cfe4ff;
}

.section-title-wrap {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.section-title-wrap p {
    color: var(--brand-muted);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

.section--navy .section-title-wrap p,
.section--gradient .section-title-wrap p {
    color: #b3c4d8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.6rem;
    font-weight: 600;
    font-size: 0.98rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(11, 126, 207, 0.28);
}

.btn-primary:hover {
    background: var(--brand-primary-dark);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(11, 126, 207, 0.32);
}

.btn-secondary {
    background: #ffffff;
    color: var(--brand-navy);
    border-color: rgba(0, 0, 50, 0.12);
}

.btn-secondary:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: #ffffff;
}

.btn-success {
    background: var(--brand-success);
    color: #ffffff;
}

.btn-success:hover {
    background: #009563;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-block {
    width: 100%;
}

/* Header / Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--brand-border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 72px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--brand-navy);
    letter-spacing: -0.01em;
    text-decoration: none;
}

.nav-brand:hover {
    color: var(--brand-primary);
}

.nav-brand-logo {
    height: 38px;
    width: auto;
    display: block;
}

.nav-brand-logo--light {
    height: 40px;
    filter: brightness(0) invert(1);
}

.nav-brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-navy));
    color: #ffffff;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--brand-navy);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.4rem 0;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--brand-primary);
}

.nav-links a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--brand-navy);
    font-size: 1.35rem;
    cursor: pointer;
    padding: 0.4rem;
}

.nav-mobile-panel {
    display: none;
    flex-direction: column;
    gap: 0.7rem;
}

/* Hero */
.hero {
    padding: clamp(4rem, 9vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(11, 126, 207, 0.16);
    color: #8fc3ee;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero h1 {
    color: #ffffff;
    font-size: clamp(2.25rem, 5vw, 3.6rem);
    margin-bottom: 1.1rem;
}

.hero h1 span {
    background: linear-gradient(120deg, #6ec0ff 0%, #00d499 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    color: #c8d6e6;
    font-size: 1.15rem;
    max-width: 56ch;
    margin-bottom: 1.8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    color: #b6c8df;
    font-size: 0.92rem;
}

.hero-meta i {
    color: var(--brand-success);
    margin-right: 0.4rem;
}

/* Hero visual mock */
.hero-visual {
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 30, 0.45), 0 12px 24px rgba(0, 0, 30, 0.25);
    overflow: hidden;
    color: var(--brand-body);
}

.hero-card-top {
    background: var(--brand-navy);
    color: #ffffff;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.hero-card-top .dots {
    display: inline-flex;
    gap: 0.35rem;
    margin-right: 0.7rem;
}

.hero-card-top .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.hero-card-top .dots span:first-child {
    background: #ff5f57;
}

.hero-card-top .dots span:nth-child(2) {
    background: #febc2e;
}

.hero-card-top .dots span:nth-child(3) {
    background: #28c840;
}

.hero-card-body {
    padding: 1.3rem 1.5rem 1.6rem;
}

.hero-card-h {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-card-h h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--brand-navy);
}

.hero-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.2rem;
}

.hero-stat {
    background: var(--brand-primary-pale);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 1.4rem;
    color: var(--brand-navy);
    line-height: 1;
}

.hero-stat span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-muted);
}

.hero-sighting-row {
    display: grid;
    grid-template-columns: 1fr 90px 70px;
    gap: 0.5rem;
    align-items: center;
    padding: 0.7rem 0;
    border-top: 1px solid var(--brand-border);
    font-size: 0.85rem;
}

.hero-sighting-row:first-of-type {
    border-top: 0;
}

.hero-sighting-reg {
    font-family: "SFMono-Regular", Menlo, monospace;
    font-weight: 600;
    color: var(--brand-navy);
}

.hero-sighting-pill {
    display: inline-block;
    background: var(--brand-success);
    color: #ffffff;
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    text-align: center;
}

.hero-sighting-pill.inactive {
    background: var(--brand-muted);
}

.hero-airline {
    color: var(--brand-muted);
    font-size: 0.78rem;
}

.hero-card-floating {
    position: absolute;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 30, 0.35);
    padding: 0.9rem 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: var(--brand-navy);
}

.hero-card-floating--tl {
    top: -18px;
    left: -22px;
    animation: float 6s ease-in-out infinite;
}

.hero-card-floating--br {
    bottom: -22px;
    right: -18px;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-card-floating i {
    color: var(--brand-success);
    font-size: 1.15rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Trust strip — modernised stat cards */
.trust-strip {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-surface) 100%);
    padding: 3rem 0 3.4rem;
    border-bottom: 1px solid var(--brand-border);
}

.trust-strip-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    color: var(--brand-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 1.7rem;
}

.trust-strip-eyebrow i {
    font-size: 0.85rem;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    text-align: center;
}

.trust-stat {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 1.9rem 1rem 1.55rem;
    box-shadow: var(--brand-card-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-navy));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s ease;
}

.trust-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--brand-card-shadow-hover);
    border-color: rgba(11, 126, 207, 0.25);
}

.trust-stat:hover::before {
    transform: scaleX(1);
}

.trust-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.trust-stat-icon--primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-navy));
    box-shadow: 0 8px 18px rgba(11, 126, 207, 0.28);
}

.trust-stat-icon--success {
    background: linear-gradient(135deg, #00b67a, #008f5d);
    box-shadow: 0 8px 18px rgba(0, 182, 122, 0.28);
}

.trust-stat-icon--amber {
    background: linear-gradient(135deg, #f7a526, #d8821b);
    box-shadow: 0 8px 18px rgba(247, 165, 38, 0.28);
}

.trust-stat-icon--sightings {
    background: linear-gradient(135deg, #6c5ce7, #4834d4);
    box-shadow: 0 8px 18px rgba(108, 92, 231, 0.32);
}

.trust-stat strong {
    display: block;
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-navy) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 0.45rem;
    font-variant-numeric: tabular-nums;
}

.trust-stat span {
    display: block;
    color: var(--brand-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    line-height: 1.4;
}

/* =============================================================
   Live feed — latest sightings + latest photos
   ============================================================= */
.live-feed {
    position: relative;
    background:
        radial-gradient(circle at 12% 0%, rgba(11, 126, 207, 0.07), transparent 60%),
        radial-gradient(circle at 88% 100%, rgba(0, 0, 50, 0.06), transparent 60%),
        var(--brand-surface);
    padding: 4.5rem 0 4.8rem;
    border-bottom: 1px solid var(--brand-border);
}

.live-feed-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.live-feed-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    color: var(--brand-primary);
    border: 1px solid rgba(11, 126, 207, 0.18);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    box-shadow: 0 6px 18px rgba(11, 126, 207, 0.1);
}

.live-feed-head h2 {
    margin: 0;
}

.live-feed-head p {
    color: var(--brand-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.live-pulse {
    position: relative;
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand-success);
    box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.55);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.55); }
    70%  { box-shadow: 0 0 0 9px rgba(0, 182, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 182, 122, 0); }
}

.live-feed-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1.6rem;
}

.live-feed-grid > .live-feed-card {
    flex: 1 1 0;
    min-width: 0;
    align-self: stretch;
}

.live-feed-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--brand-card-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-feed-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--brand-card-shadow-hover);
}

.live-feed-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.4rem;
    border-bottom: 1px solid var(--brand-border);
    background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
    flex-shrink: 0;
}

/* Fills space between header and footer so paired cards match height */
.live-feed-card-body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.live-feed-card-body > .live-sighting-list,
.live-feed-card-body > .live-photo-grid {
    flex: 1;
    min-height: 0;
}

.live-feed-card-body > .live-feed-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.live-feed-card-head h3 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.live-feed-card-head h3 i {
    color: var(--brand-primary);
    font-size: 0.95rem;
}

.live-feed-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 182, 122, 0.1);
    color: #008f5d;
    border: 1px solid rgba(0, 182, 122, 0.22);
    border-radius: 999px;
    padding: 0.22rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.live-feed-card-pill--sample {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.35);
}

.live-feed-card-pill--unavailable {
    background: rgba(107, 114, 128, 0.12);
    color: #4b5563;
    border-color: rgba(107, 114, 128, 0.28);
}

.live-feed-card-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    padding: 0.95rem 1.4rem;
    background: #f5f9fd;
    border-top: 1px solid var(--brand-border);
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.live-feed-card-foot:hover {
    background: var(--brand-primary);
    color: #ffffff;
}

.live-feed-empty {
    padding: 1.6rem 1.4rem;
    color: var(--brand-muted);
    text-align: center;
    margin: 0;
    font-size: 0.95rem;
}

/* Latest sightings list */
.live-sighting-list {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
}

.live-sighting-row {
    display: grid;
    grid-template-columns: 78px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1.4rem;
    border-bottom: 1px solid #eef2f7;
    transition: background 0.2s ease;
}

.live-sighting-row:last-child {
    border-bottom: 0;
}

.live-sighting-row:hover {
    background: #f7fafd;
}

.live-sighting-time {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.3;
    font-variant-numeric: tabular-nums;
}

.live-sighting-main {
    min-width: 0;
}

.live-sighting-reg {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-weight: 700;
    font-size: 1rem;
    color: var(--brand-navy);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 0.15rem;
}

.live-sighting-sub {
    color: var(--brand-body);
    font-size: 0.84rem;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-sighting-meta {
    text-align: right;
    line-height: 1.3;
}

.live-sighting-airport {
    display: block;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-weight: 800;
    color: var(--brand-primary);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.live-sighting-spotter {
    display: block;
    color: var(--brand-muted);
    font-size: 0.72rem;
    margin-top: 0.15rem;
}

/* Latest photos grid (home: 2 per row; feed-photos uses .live-photo-grid--dense) */
.live-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    padding: 1rem;
}

.live-photo-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    background-color: #1a4d8f;
    box-shadow: 0 4px 10px rgba(0, 0, 50, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-photo-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.live-photo-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 22px rgba(0, 0, 50, 0.18);
    z-index: 1;
}

.live-photo-card.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-photo-card--v1 { background: linear-gradient(135deg, #0b7ecf 0%, #000032 100%); }
.live-photo-card--v2 { background: linear-gradient(135deg, #45a3f0 0%, #1a4d8f 100%); }
.live-photo-card--v3 { background: linear-gradient(135deg, #002b4d 0%, #0b7ecf 100%); }
.live-photo-card--v4 { background: linear-gradient(135deg, #1f6bb3 0%, #0a2540 100%); }

.live-photo-card-icon {
    color: rgba(255, 255, 255, 0.22);
    font-size: 2.4rem;
    transform: rotate(-25deg);
    transition: transform 0.4s ease, color 0.3s ease;
}

.live-photo-card:hover .live-photo-card-icon {
    color: rgba(255, 255, 255, 0.4);
    transform: rotate(-15deg) scale(1.08);
}

.live-photo-overlay {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.7rem 0.8rem 0.65rem;
    color: #ffffff;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 50, 0.85) 100%);
}

.live-photo-overlay strong {
    display: block;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.live-photo-overlay span {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

button.live-photo-card.live-photo-card--lightbox {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    margin: 0;
    font: inherit;
    text-align: left;
    cursor: zoom-in;
    -webkit-appearance: none;
    appearance: none;
}

button.live-photo-card.live-photo-card--lightbox:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 3px;
}

/* Full-screen photo lightbox (feed-photos) */
.sl-photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.sl-photo-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.sl-photo-lightbox-open {
    overflow: hidden;
}

.sl-photo-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 32, 0.88);
}

.sl-photo-lightbox__stage {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: min(72rem, 100%);
}

.sl-photo-lightbox__img {
    max-width: 100%;
    max-height: min(85vh, 880px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.sl-photo-lightbox__title {
    margin: 1rem 0 0;
    max-width: 100%;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.sl-photo-lightbox__count {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    text-align: center;
}

.sl-photo-lightbox__close,
.sl-photo-lightbox__nav {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: background 0.2s ease;
}

.sl-photo-lightbox__close:hover,
.sl-photo-lightbox__nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.28);
}

.sl-photo-lightbox__close:focus-visible,
.sl-photo-lightbox__nav:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.sl-photo-lightbox__close {
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.25rem;
}

.sl-photo-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    font-size: 1.1rem;
}

.sl-photo-lightbox__nav--prev {
    left: 0.75rem;
}

.sl-photo-lightbox__nav--next {
    right: 0.75rem;
}

.sl-photo-lightbox__nav:disabled {
    opacity: 0.25;
    cursor: default;
}

.sl-photo-lightbox__nav[hidden] {
    display: none;
}

@media (min-width: 768px) {
    .sl-photo-lightbox {
        padding: 2rem;
    }

    .sl-photo-lightbox__nav--prev {
        left: 1.25rem;
    }

    .sl-photo-lightbox__nav--next {
        right: 1.25rem;
    }
}

.live-feed-note {
    margin: 2rem auto 0;
    text-align: center;
    color: var(--brand-muted);
    font-size: 0.88rem;
    max-width: 720px;
}

.live-feed-note i {
    color: var(--brand-primary);
    margin-right: 0.4rem;
}

.live-feed-note a {
    color: var(--brand-primary);
    font-weight: 600;
}

/* Plane Spotters feed — full listing pages (feed-sightings / feed-photos) */

.feed-page-section {
    padding-top: clamp(1.75rem, 4vw, 2.75rem);
}

.feed-page-card {
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--brand-card-shadow);
    overflow: hidden;
}

.feed-page-card--photos {
    padding: 1rem;
}

.feed-page-secondary-link {
    color: var(--brand-primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(11, 126, 207, 0.25);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.feed-page-secondary-link:hover {
    color: var(--brand-navy);
    border-bottom-color: var(--brand-navy);
}

.feed-page-cross {
    text-align: center;
    margin: 1.5rem 0 0;
    font-size: 0.95rem;
}

.live-photo-grid--dense {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    padding: 0;
}

@media (min-width: 720px) {
    .live-photo-grid--dense {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1100px) {
    .live-photo-grid--dense {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feed-page-cta {
    background: linear-gradient(120deg, var(--brand-primary) 0%, var(--brand-navy) 100%);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 6vw, 3.5rem);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 30, 0.22);
}

.feed-page-cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #e8f4ff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.feed-page-cta h2 {
    color: #ffffff;
    margin: 0 0 0.75rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.feed-page-cta p {
    color: #cce0f5;
    max-width: 560px;
    margin: 0 auto 1.6rem;
    font-size: 1.02rem;
    line-height: 1.55;
}

.feed-page-cta-actions .btn {
    margin: 0.25rem;
}

/* =============================================================
   Public profile mockup (profile-preview.php)
   ============================================================= */

/* Preview notice strip */
.profile-preview-notice {
    background: linear-gradient(135deg, #fff5e1 0%, #ffe8c2 100%);
    border-bottom: 1px solid #f0c781;
    color: #7a4d10;
    font-size: 0.88rem;
}
.profile-preview-notice .container {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}
.profile-preview-notice i {
    color: #c47c1c;
    font-size: 1rem;
}

/* Banner */
.profile-banner {
    position: relative;
    background:
        radial-gradient(circle at 18% 0%, rgba(11, 126, 207, 0.55) 0%, transparent 55%),
        radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, var(--brand-navy) 0%, #0a2d6b 60%, var(--brand-primary) 100%);
    color: #ffffff;
    padding: 5.5rem 0 3.5rem;
    overflow: hidden;
}
.profile-banner-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.profile-banner-plane {
    position: absolute;
    color: rgba(255, 255, 255, 0.08);
    font-size: 6rem;
    transform: rotate(-20deg);
}
.profile-banner-plane--1 { top: 12%; left: 8%; font-size: 5rem; }
.profile-banner-plane--2 { top: 55%; right: 10%; font-size: 8rem; transform: rotate(-12deg); }
.profile-banner-plane--3 { bottom: -10%; left: 45%; font-size: 4rem; transform: rotate(-25deg); opacity: 0.6; }

.profile-url-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    font-size: 0.85rem;
    backdrop-filter: blur(6px);
    color: #ffffff;
}
.profile-url-chip strong {
    color: #ffffff;
    font-weight: 700;
}
.profile-url-copy {
    background: rgba(255, 255, 255, 0.12);
    border: 0;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.profile-url-copy:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Identity row (sits below banner with avatar overlapping) */
.profile-identity-section {
    background: #ffffff;
    border-bottom: 1px solid var(--brand-border);
    position: relative;
}
.profile-identity {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 2rem 0 1.5rem;
}
.profile-avatar {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-navy) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 5px solid #ffffff;
    box-shadow: 0 12px 28px rgba(8, 24, 60, 0.18);
    margin-top: -85px;
    z-index: 2;
}
.profile-identity-main {
    flex: 1;
    min-width: 0;
}
.profile-identity-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}
.profile-name {
    margin: 0 0 0.35rem;
    font-size: clamp(1.6rem, 3.4vw, 2.05rem);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.profile-verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #ffffff;
    font-size: 0.7rem;
    box-shadow: 0 4px 10px rgba(11, 126, 207, 0.3);
}
.profile-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    color: var(--brand-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}
.profile-meta-row i {
    color: var(--brand-primary);
    margin-right: 0.2rem;
    font-size: 0.78rem;
}
.profile-meta-dot {
    opacity: 0.5;
}
.profile-handle {
    color: var(--brand-primary);
    font-weight: 600;
}
.profile-tier-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, #ffd34d, #f3a712);
    color: #5a3d05;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
}
.profile-tier-pill i {
    color: #5a3d05 !important;
    margin: 0 !important;
}

.profile-actions {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}
.profile-follow-btn {
    padding: 0.6rem 1.4rem !important;
    font-size: 0.92rem !important;
}
.profile-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--brand-border);
    color: var(--brand-navy);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}
.profile-icon-btn:hover {
    background: var(--brand-primary-pale);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.profile-bio {
    color: var(--brand-body);
    line-height: 1.6;
    font-size: 0.97rem;
    margin: 0 0 1rem;
    max-width: 720px;
}

.profile-social-counts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    align-items: center;
    color: var(--brand-muted);
    font-size: 0.88rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--brand-border);
}
.profile-social-counts strong {
    color: var(--brand-navy);
    font-weight: 700;
    margin-right: 0.2rem;
}
.profile-views-pill {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--brand-primary-pale);
    color: var(--brand-primary);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* Stats strip */
.profile-stats-section {
    background: #ffffff;
    padding: 1.6rem 0 2rem;
    border-bottom: 1px solid var(--brand-border);
}
.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.9rem;
}
.profile-stat {
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    padding: 1.1rem 0.8rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.profile-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 126, 207, 0.3);
    box-shadow: var(--brand-card-shadow);
}
.profile-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    margin: 0 auto 0.55rem;
}
.profile-stat-icon--primary { background: linear-gradient(135deg, var(--brand-primary), var(--brand-navy)); }
.profile-stat-icon--success { background: linear-gradient(135deg, #00b67a, #008f5d); }
.profile-stat-icon--amber   { background: linear-gradient(135deg, #f7a526, #d8821b); }
.profile-stat-icon--navy    { background: linear-gradient(135deg, #0a2d6b, var(--brand-navy)); }
.profile-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-navy) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 0.2rem;
    font-variant-numeric: tabular-nums;
}
.profile-stat span {
    display: block;
    font-size: 0.72rem;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Tab nav */
.profile-tabs {
    background: #ffffff;
    border-bottom: 1px solid var(--brand-border);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(8, 24, 60, 0.04);
}
.profile-tab-nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.profile-tab-nav::-webkit-scrollbar { display: none; }
.profile-tab-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
    color: var(--brand-muted);
    font-weight: 600;
    font-size: 0.92rem;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: color 0.18s ease, border-color 0.18s ease;
}
.profile-tab-nav a:hover {
    color: var(--brand-navy);
}
.profile-tab-nav a.is-active {
    color: var(--brand-primary);
    border-bottom-color: var(--brand-primary);
}
.profile-tab-count {
    background: var(--brand-primary-pale);
    color: var(--brand-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
}

/* Body grid */
.profile-body {
    background: var(--brand-surface);
    padding: 2.5rem 0 4rem;
}
.profile-body-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.6rem;
    align-items: flex-start;
}
.profile-main {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    min-width: 0;
}
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: sticky;
    top: 70px;
}

/* Reusable monospace registration */
.profile-reg-mono {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-weight: 700;
    color: var(--brand-navy);
    letter-spacing: 0.02em;
}

/* Pinned card */
.profile-pinned-card {
    background: linear-gradient(135deg, var(--brand-primary-pale) 0%, #ffffff 60%);
    border: 1px solid rgba(11, 126, 207, 0.22);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    box-shadow: var(--brand-card-shadow);
}
.profile-pinned-flag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.profile-pinned-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.profile-pinned-reg {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}
.profile-pinned-reg .profile-reg-mono {
    font-size: 1.6rem;
}
.profile-pinned-time {
    color: var(--brand-muted);
    font-size: 0.82rem;
}
.profile-pinned-meta {
    text-align: right;
}
.profile-pinned-meta strong {
    display: block;
    color: var(--brand-navy);
    font-size: 1rem;
}
.profile-pinned-meta span {
    color: var(--brand-muted);
    font-size: 0.85rem;
}
.profile-pinned-note {
    margin: 1rem 0 0.8rem;
    color: var(--brand-body);
    font-style: italic;
    line-height: 1.55;
}
.profile-pinned-actions {
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid rgba(11, 126, 207, 0.12);
    padding-top: 0.8rem;
}
.profile-react-btn {
    background: transparent;
    border: 0;
    color: var(--brand-muted);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}
.profile-react-btn:hover {
    background: #ffffff;
    color: var(--brand-primary);
}
.profile-react-btn.is-liked {
    color: var(--brand-danger);
}
.profile-react-btn--right {
    margin-left: auto;
}

/* Section cards (sightings, photos, trips) */
.profile-section-card {
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--brand-card-shadow);
    overflow: hidden;
}
.profile-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--brand-border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}
.profile-section-head h2 {
    margin: 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.profile-section-head h2 i {
    color: var(--brand-primary);
}
.profile-section-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Sighting list (same vibe as live feed) */
.profile-sighting-list {
    list-style: none;
    margin: 0;
    padding: 0.3rem 0;
}
.profile-sighting-row {
    display: grid;
    grid-template-columns: 78px 1fr 56px 36px;
    gap: 0.9rem;
    align-items: center;
    padding: 0.75rem 1.4rem;
    border-bottom: 1px solid #eef2f7;
}
.profile-sighting-row:last-child { border-bottom: 0; }
.profile-sighting-time {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.profile-sighting-main { min-width: 0; }
.profile-sighting-main .profile-reg-mono {
    font-size: 0.98rem;
    display: block;
    margin-bottom: 0.1rem;
}
.profile-sighting-sub {
    color: var(--brand-body);
    font-size: 0.82rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.profile-sighting-loc {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-weight: 800;
    color: var(--brand-primary);
    font-size: 0.95rem;
}
.profile-mini-like {
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--brand-muted);
    font-size: 1rem;
    transition: color 0.2s ease, transform 0.15s ease;
}
.profile-mini-like:hover { color: var(--brand-danger); transform: scale(1.15); }
.profile-mini-like.is-liked { color: var(--brand-danger); }

/* Photo grid (mockup) */
.profile-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    padding: 1rem;
}
.profile-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 50, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-photo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 50, 0.18);
    z-index: 1;
}
.profile-photo--v1 { background: linear-gradient(135deg, #0b7ecf 0%, #000032 100%); }
.profile-photo--v2 { background: linear-gradient(135deg, #45a3f0 0%, #1a4d8f 100%); }
.profile-photo--v3 { background: linear-gradient(135deg, #002b4d 0%, #0b7ecf 100%); }
.profile-photo--v4 { background: linear-gradient(135deg, #1f6bb3 0%, #0a2540 100%); }
.profile-photo-icon {
    color: rgba(255, 255, 255, 0.22);
    font-size: 2.4rem;
    transform: rotate(-25deg);
}
.profile-photo-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.6rem 0.7rem 0.55rem;
    color: #ffffff;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 50, 0.85) 100%);
}
.profile-photo-meta strong {
    display: block;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 0.88rem;
}
.profile-photo-meta span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
}
.profile-photo-like {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 50, 0.62);
    border: 0;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}
.profile-photo-like i {
    color: #ff7d7d;
    font-size: 0.7rem;
}

/* Trip grid */
.profile-trip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
    padding: 1rem;
}
.profile-trip-card {
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    padding: 1.1rem;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.profile-trip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--brand-card-shadow);
    border-color: rgba(11, 126, 207, 0.3);
}
.profile-trip-airport {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-weight: 800;
    color: var(--brand-primary);
    background: var(--brand-primary-pale);
    padding: 0.15rem 0.55rem;
    border-radius: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}
.profile-trip-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    padding-right: 3rem;
}
.profile-trip-date {
    color: var(--brand-muted);
    font-size: 0.82rem;
    margin-bottom: 0.7rem;
}
.profile-trip-counts {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 0.7rem;
    color: var(--brand-body);
    font-size: 0.85rem;
}
.profile-trip-counts strong { color: var(--brand-navy); }
.profile-trip-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* Sidebar cards */
.profile-side-card {
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.3rem 1.3rem;
    box-shadow: var(--brand-card-shadow);
}
.profile-side-card h3 {
    margin: 0 0 0.7rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.profile-side-card h3 i {
    color: var(--brand-primary);
    font-size: 0.85rem;
}
.profile-side-text {
    color: var(--brand-muted);
    font-size: 0.85rem;
    margin: 0 0 0.85rem;
    line-height: 1.5;
}
.profile-side-foot {
    margin: 0.6rem 0 0;
    font-size: 0.82rem;
    color: var(--brand-muted);
    text-align: center;
}
.profile-side-foot strong { color: var(--brand-navy); }

/* Share buttons */
.profile-share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.profile-share-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.profile-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 50, 0.18);
}
.profile-share-btn--x  { background: #000000; }
.profile-share-btn--fb { background: #1877f2; }
.profile-share-btn--wa { background: #25d366; }
.profile-share-btn--em { background: var(--brand-primary); }
.profile-share-btn--qr { background: var(--brand-navy); }

/* Badge grid */
.profile-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}
.profile-badge {
    background: #f8fafd;
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 0.7rem;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.profile-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 126, 207, 0.25);
}
.profile-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin: 0 auto 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.95rem;
}
.profile-badge--primary .profile-badge-icon { background: linear-gradient(135deg, var(--brand-primary), var(--brand-navy)); }
.profile-badge--success .profile-badge-icon { background: linear-gradient(135deg, #00b67a, #008f5d); }
.profile-badge--amber   .profile-badge-icon { background: linear-gradient(135deg, #f7a526, #d8821b); }
.profile-badge--navy    .profile-badge-icon { background: linear-gradient(135deg, var(--brand-navy), #0a2d6b); }
.profile-badge strong {
    display: block;
    font-size: 0.78rem;
    color: var(--brand-navy);
    line-height: 1.25;
    margin-bottom: 0.15rem;
}
.profile-badge span {
    font-size: 0.68rem;
    color: var(--brand-muted);
    line-height: 1.3;
}

/* Bar list (top airports / airlines) */
.profile-bar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.profile-bar-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.25rem;
    font-size: 0.82rem;
}
.profile-bar-label { color: var(--brand-body); }
.profile-bar-label strong {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    color: var(--brand-primary);
    margin-right: 0.3rem;
}
.profile-bar-value {
    font-weight: 700;
    color: var(--brand-navy);
    font-variant-numeric: tabular-nums;
}
.profile-bar-track {
    height: 7px;
    border-radius: 999px;
    background: #eef2f7;
    overflow: hidden;
}
.profile-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-navy));
    border-radius: 999px;
}
.profile-bar-fill--success {
    background: linear-gradient(90deg, #00b67a, #008f5d);
}

/* Activity chart */
.profile-activity-chart {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: end;
    gap: 0.3rem;
    height: 110px;
    padding-top: 0.4rem;
}
.profile-activity-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    height: 100%;
}
.profile-activity-bar {
    width: 100%;
    background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-navy) 100%);
    border-radius: 4px 4px 0 0;
    transition: opacity 0.2s ease;
}
.profile-activity-col:hover .profile-activity-bar { opacity: 0.8; }
.profile-activity-label {
    font-size: 0.68rem;
    color: var(--brand-muted);
    font-weight: 600;
}

/* Grid utilities */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.split .split-text {
    max-width: 36rem;
}

/* Cards */
.feature-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.85rem;
    box-shadow: var(--brand-card-shadow);
    border: 1px solid var(--brand-border);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--brand-card-shadow-hover);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-navy));
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}

.feature-icon--success {
    background: linear-gradient(135deg, var(--brand-success), #007a55);
}

.feature-icon--amber {
    background: linear-gradient(135deg, var(--brand-amber), #d4791a);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.18rem;
}

.feature-card p {
    color: var(--brand-body);
    margin: 0 0 0.6rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.feature-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.feature-cards-cta {
    text-align: center;
    margin-top: 2.25rem;
}

/* Highlight cards (large numbered) */
.highlight-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--brand-border);
    box-shadow: var(--brand-card-shadow);
    position: relative;
}

.highlight-card-num {
    position: absolute;
    top: -24px;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--brand-navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.highlight-card h3 {
    margin-top: 0.5rem;
}

/* Bulleted list */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 0.97rem;
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--brand-success);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.price-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.9rem;
    border: 1px solid var(--brand-border);
    box-shadow: var(--brand-card-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--brand-card-shadow-hover);
}

.price-card--featured {
    border: 2px solid var(--brand-primary);
    transform: scale(1.02);
}

.price-card--featured::before {
    content: "Most Popular";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: #ffffff;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.price-card-sub {
    color: var(--brand-muted);
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

.price-amount .amt {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1;
}

.price-amount .period {
    color: var(--brand-muted);
    font-size: 0.95rem;
}

.price-note {
    color: var(--brand-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.price-card .check-list {
    margin-bottom: 1.5rem;
}

.price-card .btn {
    margin-top: auto;
}

/* FAQ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.faq-item.is-open {
    border-color: var(--brand-primary);
    box-shadow: 0 8px 22px rgba(11, 126, 207, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: 0;
    text-align: left;
    padding: 1.2rem 1.4rem;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--brand-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
}

.faq-question::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--brand-primary);
    font-size: 0.85rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item.is-open .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer-inner {
    padding: 0 1.4rem 1.3rem;
    color: var(--brand-body);
    font-size: 0.97rem;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    border: 1px solid var(--brand-border);
    box-shadow: var(--brand-card-shadow);
}

.testimonial-stars {
    color: var(--brand-amber);
    margin-bottom: 0.8rem;
    letter-spacing: 0.1em;
}

.testimonial p {
    color: var(--brand-body);
    font-size: 0.97rem;
}

.testimonial-author {
    margin-top: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-navy));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    color: var(--brand-navy);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--brand-muted);
    font-size: 0.85rem;
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(120deg, var(--brand-primary) 0%, var(--brand-navy) 100%);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 6vw, 4rem);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 30, 0.25);
}

.cta-banner h2 {
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.cta-banner p {
    color: #cce0f5;
    max-width: 580px;
    margin: 0 auto 1.8rem;
    font-size: 1.05rem;
}

.cta-banner .btn {
    margin: 0.25rem;
}

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-border);
    box-shadow: var(--brand-card-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--brand-card-shadow-hover);
}

.news-card-image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-navy));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.news-card-image--success {
    background: linear-gradient(135deg, var(--brand-success), #006144);
}

.news-card-image--amber {
    background: linear-gradient(135deg, var(--brand-amber), #b85e0e);
}

.news-card-image--purple {
    background: linear-gradient(135deg, #6a40c5, #2c1a73);
}

.news-card-body {
    padding: 1.5rem 1.5rem 1.7rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-meta {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    color: var(--brand-muted);
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
}

.news-card-tag {
    background: var(--brand-primary-pale);
    color: var(--brand-primary);
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.news-card h3 {
    color: var(--brand-navy);
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.news-card p {
    color: var(--brand-body);
    font-size: 0.93rem;
    margin: 0 0 1.1rem;
    flex-grow: 1;
}

.news-card-link {
    font-weight: 600;
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.93rem;
}

/* Article */
.article {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: var(--brand-card-shadow);
    border: 1px solid var(--brand-border);
}

.article h1 {
    color: var(--brand-navy);
    margin-bottom: 0.7rem;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

.article-meta {
    color: var(--brand-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--brand-border);
    padding-bottom: 1.2rem;
}

.article h2 {
    color: var(--brand-navy);
    margin-top: 2rem;
}

.article p,
.article li {
    font-size: 1.02rem;
    color: var(--brand-body);
}

.article ul {
    padding-left: 1.3rem;
}

.article ul li {
    margin-bottom: 0.4rem;
}

.article blockquote {
    border-left: 4px solid var(--brand-primary);
    background: var(--brand-primary-pale);
    margin: 1.5rem 0;
    padding: 1rem 1.3rem;
    color: var(--brand-navy);
    font-style: italic;
    border-radius: 0 12px 12px 0;
}

/* Page hero (sub pages) */
.page-hero {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.page-hero p {
    color: #c8d6e6;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Legal pages (privacy, terms, cookies) */
.legal-page {
    max-width: 42rem;
    margin: 0 auto;
}

.legal-page__meta {
    color: var(--brand-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.legal-page h2 {
    margin-top: 2.25rem;
    margin-bottom: 0.65rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.legal-page h2:first-of-type {
    margin-top: 0;
}

.legal-page p {
    margin-bottom: 0.85rem;
    color: var(--brand-body);
    line-height: 1.65;
}

.legal-page p:last-child {
    margin-bottom: 0;
}

.legal-page a {
    color: var(--brand-primary);
    text-decoration: underline;
}

.legal-page a:hover {
    text-decoration: none;
}

.legal-page ul {
    margin: 0.5rem 0 1rem;
    padding-left: 1.25rem;
    color: var(--brand-body);
    line-height: 1.65;
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info {
    background: var(--brand-navy);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-info h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #b3c4d8;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 1.1rem;
}

.contact-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.contact-list i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8fc3ee;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-list strong {
    display: block;
    color: #ffffff;
    font-size: 0.92rem;
}

.contact-list span,
.contact-list a {
    color: #b3c4d8;
    font-size: 0.92rem;
}

.contact-list a:hover {
    color: #ffffff;
}

.contact-form {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--brand-card-shadow);
    border: 1px solid var(--brand-border);
}

.contact-form-alert {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

.contact-form-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.contact-form-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.contact-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.field {
    margin-bottom: 1.1rem;
}

.field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 0.4rem;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 0.75rem 0.95rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--brand-border);
    font-family: inherit;
    font-size: 0.97rem;
    color: var(--brand-body);
    background: #ffffff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: 0;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(11, 126, 207, 0.12);
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-note {
    color: var(--brand-muted);
    font-size: 0.83rem;
    margin-top: 1rem;
}

/* About page — story column visual (simple motif; avoids custom plane SVG) */
.about-story-visual {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--brand-card-shadow);
    border: 1px solid var(--brand-border);
}

.about-story-visual__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    min-height: clamp(240px, 36vw, 320px);
    padding: clamp(1.75rem, 4vw, 2.5rem) 1.5rem;
    text-align: center;
    background: linear-gradient(148deg, var(--brand-navy) 0%, #0b3f6e 42%, var(--brand-primary) 100%);
}

.about-story-visual__mark {
    width: clamp(5.5rem, 18vw, 7rem);
    height: clamp(5.5rem, 18vw, 7rem);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.35rem, 7vw, 3.1rem);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.about-story-visual__line {
    margin: 0;
    max-width: 17rem;
    font-size: clamp(0.9rem, 2.2vw, 1.02rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

/* Footer */
.site-footer {
    background: var(--brand-navy);
    color: #b3c4d8;
    padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-grid h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #b3c4d8;
    font-size: 0.93rem;
    max-width: 320px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.footer-grid a {
    color: #b3c4d8;
    font-size: 0.93rem;
}

.footer-grid a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.95rem;
    transition: background 0.18s ease;
}

.footer-social a:hover {
    background: var(--brand-primary);
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    color: #8faabf;
    font-size: 0.85rem;
}

/* Misc */
.kbd {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: rgba(11, 126, 207, 0.14);
    border-radius: 6px;
    font-family: "SFMono-Regular", Menlo, monospace;
    color: var(--brand-primary);
    font-size: 0.88em;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 2rem; }

/* Responsive */
@media (max-width: 980px) {
    .grid-3, .grid-4, .pricing-grid, .testimonial-grid, .news-grid, .trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        order: -1;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .price-card--featured {
        transform: none;
    }
    .live-feed-grid {
        flex-direction: column;
    }
    /* Profile preview - tablet */
    .profile-body-grid {
        grid-template-columns: 1fr;
    }
    .profile-sidebar {
        position: static;
    }
    .profile-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .profile-trip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .profile-photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .nav-links,
    .nav-actions .btn-secondary {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-mobile-panel {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--brand-border);
        padding: 1.2rem var(--gutter);
        box-shadow: 0 18px 30px rgba(0, 0, 30, 0.06);
    }
    .nav-mobile-panel.is-open {
        display: flex;
    }
    .nav-mobile-panel a {
        color: var(--brand-navy);
        font-weight: 500;
        padding: 0.4rem 0;
    }
    .grid-3, .grid-4, .pricing-grid, .testimonial-grid, .news-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .trust-strip {
        padding: 2.2rem 0 2.4rem;
    }
    .trust-strip-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
        margin-bottom: 1.2rem;
    }
    .trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
    .trust-stat {
        padding: 1.4rem 0.6rem 1.2rem;
    }
    .trust-stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        margin-bottom: 0.55rem;
    }
    .trust-stat strong {
        font-size: 1.55rem;
    }
    .trust-stat span {
        font-size: 0.66rem;
        letter-spacing: 0.08em;
    }
    .live-feed {
        padding: 3rem 0 3.2rem;
    }
    .live-feed-head {
        margin-bottom: 2rem;
    }
    .live-feed-head p {
        font-size: 0.95rem;
    }
    .live-feed-grid {
        gap: 1.2rem;
    }
    .live-feed-card-head {
        padding: 0.9rem 1.1rem;
    }
    .live-feed-card-head h3 {
        font-size: 0.95rem;
    }
    .live-sighting-row {
        grid-template-columns: 60px 1fr auto;
        gap: 0.6rem;
        padding: 0.75rem 1.1rem;
    }
    .live-sighting-time {
        font-size: 0.65rem;
    }
    .live-sighting-reg {
        font-size: 0.92rem;
    }
    .live-sighting-sub {
        font-size: 0.78rem;
    }
    .live-sighting-airport {
        font-size: 0.85rem;
    }
    .live-sighting-spotter {
        font-size: 0.66rem;
    }
    .live-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.75rem;
    }
    .live-feed-card-foot {
        padding: 0.85rem 1.1rem;
        font-size: 0.85rem;
    }
    .live-feed-note {
        margin-top: 1.5rem;
        font-size: 0.82rem;
    }
    /* Profile preview - mobile */
    .profile-banner {
        padding: 3rem 0 4.5rem;
    }
    .profile-identity {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding-top: 1.5rem;
    }
    .profile-avatar {
        width: 110px;
        height: 110px;
        font-size: 2.3rem;
        margin-top: -70px;
    }
    .profile-identity-top {
        flex-direction: column;
        gap: 0.9rem;
        align-items: stretch;
    }
    .profile-actions {
        flex-wrap: wrap;
    }
    .profile-follow-btn {
        flex: 1;
    }
    .profile-social-counts {
        font-size: 0.8rem;
        gap: 0.9rem;
    }
    .profile-views-pill {
        margin-left: 0;
        order: 99;
        flex-basis: 100%;
        justify-content: center;
    }
    .profile-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .profile-stat strong { font-size: 1.25rem; }
    .profile-tabs { position: relative; }
    .profile-tab-nav a {
        padding: 0.85rem 1rem;
        font-size: 0.85rem;
    }
    .profile-pinned-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .profile-pinned-meta { text-align: left; }
    .profile-sighting-row {
        grid-template-columns: 64px 1fr 32px;
        gap: 0.6rem;
        padding: 0.7rem 1.1rem;
    }
    .profile-sighting-loc { display: none; }
    .profile-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.8rem;
    }
    .profile-trip-grid {
        grid-template-columns: 1fr;
        padding: 0.8rem;
    }
    .profile-badge-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations on reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* What's New release page */
.whats-new-hero .whats-new-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.whats-new-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.75rem;
}

.whats-new-highlights,
.whats-new-glance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.whats-new-highlight {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 1.35rem 1.25rem;
    background: #ffffff;
    border-radius: var(--radius-lg, 16px);
    border: 1px solid var(--brand-border);
    box-shadow: var(--brand-card-shadow);
}

a.whats-new-highlight {
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a.whats-new-highlight:hover {
    border-color: rgba(11, 126, 207, 0.35);
    box-shadow: var(--brand-card-shadow-hover);
    transform: translateY(-2px);
}

a.whats-new-highlight:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 3px;
}

.whats-new-highlight strong {
    color: var(--brand-navy);
    font-size: 1.05rem;
}

.whats-new-highlight > span:last-child {
    color: var(--brand-muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.whats-new-highlight__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    background: var(--brand-primary-pale);
    color: var(--brand-primary);
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.whats-new-highlight__icon--success {
    background: rgba(0, 182, 122, 0.12);
    color: var(--brand-success);
}

.whats-new-highlight__icon--amber {
    background: rgba(245, 158, 11, 0.14);
    color: var(--brand-amber);
}

.whats-new-release {
    max-width: 52rem;
    margin: 0 auto;
}

.whats-new-theme {
    margin-bottom: 2.75rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--brand-border);
}

.whats-new-theme:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.whats-new-theme__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.whats-new-theme__head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    color: var(--brand-navy);
}

.whats-new-theme__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    background: var(--brand-primary-pale);
    color: var(--brand-primary);
    font-size: 1.25rem;
}

.whats-new-theme__icon--success {
    background: rgba(0, 182, 122, 0.12);
    color: var(--brand-success);
}

.whats-new-theme__icon--amber {
    background: rgba(245, 158, 11, 0.14);
    color: var(--brand-amber);
}

.whats-new-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.15rem;
}

.whats-new-points li {
    padding: 0.35rem 0.5rem 0.35rem 1.1rem;
    border-left: 3px solid var(--brand-primary);
    scroll-margin-top: 5.5rem;
    border-radius: 0 var(--radius-md, 12px) var(--radius-md, 12px) 0;
}

.whats-new-points li:target {
    background: rgba(11, 126, 207, 0.06);
    box-shadow: inset 0 0 0 1px rgba(11, 126, 207, 0.12);
}

.whats-new-points li strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--brand-navy);
    font-size: 1.05rem;
}

.whats-new-points li p {
    margin: 0;
    color: var(--brand-body);
    line-height: 1.65;
}

.whats-new-more {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--brand-surface);
    border-radius: var(--radius-lg, 16px);
    border: 1px solid var(--brand-border);
}

.whats-new-more h2 {
    margin: 0 0 0.75rem;
    color: var(--brand-navy);
}

.whats-new-more p {
    margin: 0 auto;
    max-width: 40rem;
    color: var(--brand-body);
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .whats-new-highlights,
    .whats-new-glance {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .whats-new-highlights,
    .whats-new-glance {
        grid-template-columns: 1fr;
    }
}
