@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
    --bg: #fafafa;
    --surface: #ffffff;
    --text: #141414;
    --text-muted: #6b6b6b;
    --border: #eaeaea;
    --stg: #E9212D;
    --ubc: #21307f;
    --kapture: #4a6aad;
    --kapture-dark: #3a5590;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
}

#content.lp-page,
#content.comp-page {
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", "Gotham HTF", system-ui, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

#content.lp-page img,
#content.comp-page img {
    display: block;
    max-width: 100%;
}

.lp-wrap {
    width: min(1140px, 92vw);
    margin: 0 auto;
}

.lp-hero {
    padding: 108px 0 72px;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.lp-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.lp-hero h1 {
    margin: 0 0 20px;
    font-family: "aviano-sans", "DM Sans", sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
}

.lp-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--kapture) 0%, #6b8fd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comp-page .lp-hero h1 em {
    background: linear-gradient(135deg, var(--brand) 0%, color-mix(in srgb, var(--brand) 65%, #ffffff) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-lead {
    margin: 0 0 32px;
    max-width: 520px;
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-btn:hover,
.lp-btn:focus-visible {
    transform: translateY(-2px);
}

.lp-btn-stg {
    background: var(--stg);
    color: #fff;
    box-shadow: 0 4px 16px rgba(233, 33, 45, 0.3);
}

.lp-btn-stg:hover,
.lp-btn-stg:focus-visible {
    box-shadow: 0 8px 24px rgba(233, 33, 45, 0.4);
    color: #fff;
}

.lp-btn-ubc {
    background: var(--ubc);
    color: #fff;
    box-shadow: 0 4px 16px rgba(33, 48, 127, 0.3);
}

.lp-btn-ubc:hover,
.lp-btn-ubc:focus-visible {
    box-shadow: 0 8px 24px rgba(33, 48, 127, 0.4);
    color: #fff;
}

.lp-btn-brand {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 16px rgba(var(--brand-rgb), 0.3);
}

.lp-btn-brand:hover,
.lp-btn-brand:focus-visible {
    box-shadow: 0 8px 24px rgba(var(--brand-rgb), 0.4);
    color: #fff;
}

.lp-btn-kapture {
    background: var(--kapture);
    color: #fff;
    box-shadow: 0 4px 16px rgba(74, 106, 173, 0.3);
}

.lp-btn-kapture:hover,
.lp-btn-kapture:focus-visible {
    background: var(--kapture-dark);
    box-shadow: 0 8px 24px rgba(74, 106, 173, 0.4);
    color: #fff;
}

.lp-btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
    box-shadow: none;
}

.lp-btn-outline:hover,
.lp-btn-outline:focus-visible {
    border-color: var(--kapture);
    color: var(--kapture);
    box-shadow: none;
}

.lp-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    height: min(480px, 52vw);
}

.lp-bento img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.lp-bento .span-tall {
    grid-row: span 2;
}

.lp-story {
    margin-bottom: 80px;
}

.lp-story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--surface);
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.lp-story-copy {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-story-copy h2 {
    margin: 0 0 20px;
    font-family: "aviano-sans", sans-serif;
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: none;
    color: var(--text);
    padding: 0;
}

.lp-story-copy p {
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.75;
}

.lp-story-copy p:last-child {
    margin-bottom: 0;
}

.lp-story-visual {
    position: relative;
    min-height: 320px;
}

.lp-story-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-steps-section {
    margin-bottom: 80px;
}

.lp-section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}

.lp-section-head .label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.lp-section-head h2 {
    margin: 0 0 12px;
    font-family: "aviano-sans", sans-serif;
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    background: none;
    color: var(--text);
    padding: 0;
}

.lp-section-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.125rem;
}

.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-step {
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.lp-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f5f5, #ebebeb);
    font-family: "aviano-sans", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

.lp-step-icon {
    width: 52px;
    height: 52px;
    background: rgba(74, 106, 173, 0.1);
    color: var(--kapture);
}

.lp-step-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-step-icon svg circle {
    fill: none;
}

.comp-page .lp-step-num {
    background: rgba(var(--brand-rgb), 0.1);
    color: var(--brand);
}

.lp-step h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.lp-step p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.lp-step-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--kapture);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-step-link:hover,
.lp-step-link:focus-visible {
    color: var(--kapture-dark);
}

/* ── Booth section ── */
.lp-booth {
    margin-bottom: 80px;
}

.lp-booth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 32px;
}

.lp-booth-visual {
    position: relative;
}

.lp-booth-photo {
    margin: 0;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border);
}

.lp-booth-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.lp-booth-tablet {
    position: absolute;
    bottom: -24px;
    right: -16px;
    margin: 0;
    width: min(240px, 42%);
    z-index: 2;
}

.lp-tablet-frame {
    padding: 10px 10px 14px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    border: 1px solid var(--border);
}

.lp-tablet-frame img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
}

.lp-booth-tablet figcaption {
    margin-top: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.lp-booth-copy .label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.lp-booth-copy h2 {
    margin: 0 0 16px;
    font-family: "aviano-sans", sans-serif;
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.lp-booth-lead {
    margin: 0 0 28px;
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.lp-booth-flow {
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-booth-flow li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.lp-booth-flow-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--kapture);
    color: #fff;
    font-family: "aviano-sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
}

.lp-booth-flow li strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.0625rem;
    color: var(--text);
}

.lp-booth-flow li p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.lp-booth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-booth-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lp-booth-gallery figure {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.lp-booth-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.lp-business {
    margin-bottom: 80px;
}

.lp-business-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow);
}

.lp-business-copy .label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.lp-business-copy h2 {
    margin: 0 0 16px;
    font-family: "aviano-sans", sans-serif;
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.lp-business-copy p {
    margin: 0 0 24px;
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.75;
}

.lp-business-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-business-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.lp-business-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kapture);
}

.lp-business-stats {
    display: grid;
    gap: 16px;
}

.lp-stat {
    padding: 24px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.lp-stat-value {
    display: block;
    margin-bottom: 6px;
    font-family: "aviano-sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kapture);
}

.lp-stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.lp-contact {
    padding-bottom: 88px;
}

.lp-contact-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px;
    background: linear-gradient(135deg, var(--kapture) 0%, var(--kapture-dark) 100%);
    border-radius: calc(var(--radius) + 4px);
    color: #fff;
}

.lp-contact-card .label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.lp-contact-card h2 {
    margin: 0 0 12px;
    font-family: "aviano-sans", sans-serif;
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
    font-weight: 700;
    color: #fff;
}

.lp-contact-card p {
    margin: 0;
    max-width: 520px;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.lp-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.lp-contact-card .lp-btn-kapture {
    background: #fff;
    color: var(--kapture);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.lp-contact-card .lp-btn-kapture:hover,
.lp-contact-card .lp-btn-kapture:focus-visible {
    background: #f5f5f5;
    color: var(--kapture-dark);
}

.lp-contact-card .lp-btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.lp-contact-card .lp-btn-outline:hover,
.lp-contact-card .lp-btn-outline:focus-visible {
    border-color: #fff;
    color: #fff;
}

.lp-competitions {
    margin-bottom: 80px;
}

.lp-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.lp-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--surface);
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-card:hover,
.lp-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.lp-card-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.lp-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lp-card:hover .lp-card-visual img,
.lp-card:focus-visible .lp-card-visual img {
    transform: scale(1.05);
}

.lp-card-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
}

.lp-card-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.lp-card.stg .lp-card-badge { background: var(--stg); }
.lp-card.ubc .lp-card-badge { background: var(--ubc); }

.lp-card-body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lp-card-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    object-position: left;
    margin-bottom: 16px;
}

.lp-card-body h3 {
    margin: 0 0 10px;
    font-family: "aviano-sans", sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text);
}

.lp-card-body p {
    flex: 1;
    margin: 0 0 24px;
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.lp-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    transition: gap 0.2s ease;
}

.lp-card.stg .lp-card-cta { color: var(--stg); }
.lp-card.ubc .lp-card-cta { color: var(--ubc); }

.lp-card:hover .lp-card-cta,
.lp-card:focus-visible .lp-card-cta {
    gap: 12px;
}

.lp-card-cta svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 900px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lp-bento {
        height: 360px;
    }

    .lp-story-card {
        grid-template-columns: 1fr;
    }

    .lp-story-visual {
        min-height: 240px;
        order: -1;
    }

    .lp-story-copy {
        padding: 32px 24px;
    }

    .lp-steps {
        grid-template-columns: 1fr;
    }

    .lp-booth-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-booth-tablet {
        position: relative;
        bottom: auto;
        right: auto;
        width: min(280px, 70%);
        margin: -40px auto 0;
    }

    .lp-booth-gallery {
        grid-template-columns: 1fr;
    }

    .lp-booth-gallery img {
        height: 200px;
    }

    .lp-cards {
        grid-template-columns: 1fr;
    }

    .lp-business-grid {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .lp-contact-card {
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-contact-actions {
        width: 100%;
    }

    .lp-contact-actions .lp-btn {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .lp-wrap {
        width: 100%;
        padding: 0 20px;
    }

    .lp-hero {
        padding: 96px 0 48px;
    }

    .lp-bento {
        height: 300px;
        gap: 6px;
    }

    .lp-hero-actions {
        flex-direction: column;
    }

    .lp-btn {
        justify-content: center;
    }

    .lp-booth-actions {
        flex-direction: column;
    }

    .lp-booth-actions .lp-btn {
        width: 100%;
    }

    .lp-card-visual {
        height: 220px;
    }
}
