:root {
    --page-bg: #ffffff;
    --page-ink: #202124;
    --page-muted: #5f6368;
    --page-line: #e5e7eb;
    --page-card: #f8f9fa;
    --page-accent: #1a73e8;
    --page-accent-soft: #e8f0fe;
    --page-success-bg: #dfe8fb;
    --page-button-ink: #ffffff;
    --page-shadow: 0 18px 48px rgba(60, 64, 67, 0.12);
    --page-radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: var(--page-ink);
    background: var(--page-bg);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.gb-shell {
    overflow: clip;
    position: relative;
}

.gb-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 540px;
    background:
        radial-gradient(circle at 14% 12%, rgba(26, 115, 232, 0.08), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(52, 168, 83, 0.06), transparent 24%),
        linear-gradient(180deg, rgba(248, 250, 255, 0.92), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: -1;
}

.gb-container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.gb-hero {
    padding: 68px 0 52px;
}

.gb-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
    align-items: center;
    gap: 48px;
}

.gb-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #3c4043;
    margin-bottom: 24px;
}

.gb-brand img {
    width: 22px;
    height: 22px;
}

.gb-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--page-accent-soft);
    color: var(--page-accent);
    font-size: 0.83rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.gb-hero h1,
.gb-section h2,
.gb-steps h2,
.gb-faq h2 {
    margin: 0;
    letter-spacing: -0.04em;
    line-height: 0.98;
    font-weight: 800;
}

.gb-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.gb-hero h1 .accent,
.gb-section h2 .accent,
.gb-steps h2 .accent {
    color: var(--page-accent);
}

.gb-lead {
    max-width: 58ch;
    margin: 18px 0 0;
    color: var(--page-muted);
    font-size: 1.02rem;
}

.gb-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--page-accent);
    color: var(--page-button-ink);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 26px color-mix(in srgb, var(--page-accent) 22%, transparent);
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1), background-color 240ms ease;
}

.gb-cta:hover,
.gb-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px color-mix(in srgb, var(--page-accent) 28%, transparent);
}

.gb-cta:active {
    transform: translateY(0);
}

.gb-hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 420px;
}

.gb-hero-visual::before {
    content: "";
    position: absolute;
    inset: 14% 12% auto auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--page-accent) 18%, #fff);
    filter: blur(8px);
    z-index: 0;
}

.gb-hero-card,
.gb-floating-photo {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--page-shadow);
}

.gb-hero-card {
    width: min(300px, 68%);
    z-index: 2;
    background: #fff;
}

.gb-hero-card--video {
    width: min(320px, 72%);
    aspect-ratio: 9 / 10;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.gb-floating-photo {
    width: min(220px, 44%);
    right: 10%;
    top: 16%;
    z-index: 1;
    transform: translateY(32px);
}

.gb-visual-stack {
    position: relative;
    width: min(420px, 100%);
    margin: 0 auto;
}

.gb-visual-stack > img {
    width: 100%;
}

.gb-hero-video-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--page-shadow);
}

.gb-hero-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gb-hero-video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(32, 33, 36, 0.05));
    pointer-events: none;
}

.gb-hero-dots {
    position: absolute;
    top: 27%;
    width: 34px;
    height: 110px;
    background-image: radial-gradient(circle, rgba(95, 99, 104, 0.34) 1.3px, transparent 1.4px);
    background-size: 10px 10px;
    opacity: 0.9;
}

.gb-hero-dots--left {
    left: -18px;
}

.gb-hero-dots--right {
    right: -18px;
}

.gb-hero-orb {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(60, 64, 67, 0.15);
}

.gb-hero-orb--yellow {
    left: -12px;
    top: 30%;
    background: #fbbc04;
}

.gb-hero-orb--green {
    right: -12px;
    top: 58%;
    background: #34a853;
}

.gb-hero-control {
    position: absolute;
    right: -10px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 26px rgba(60, 64, 67, 0.2);
    color: var(--page-accent);
    font-size: 1rem;
    font-weight: 800;
    pointer-events: none;
}

.gb-feature__visual .gb-visual-stack {
    width: min(330px, 100%);
}

.gb-overlay-card,
.gb-overlay-pill,
.gb-overlay-note {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(218, 220, 224, 0.95);
    box-shadow: 0 14px 34px rgba(60, 64, 67, 0.18);
    color: #202124;
}

.gb-overlay-card {
    min-width: 124px;
    max-width: 188px;
    padding: 11px 13px;
    border-radius: 18px;
}

.gb-overlay-card strong,
.gb-overlay-note strong {
    display: block;
    font-size: 0.92rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.gb-overlay-card span,
.gb-overlay-note span {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    color: var(--page-muted);
}

.gb-overlay-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
}

.gb-overlay-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--page-accent);
    flex: 0 0 auto;
}

.gb-overlay-pill--warm::before {
    background: #f9ab00;
}

.gb-overlay-pill--green::before {
    background: #34a853;
}

.gb-overlay-note {
    padding: 9px 11px;
    border-radius: 16px;
    max-width: 168px;
}

.gb-overlay-note strong {
    font-size: 0.86rem;
}

.gb-overlay-note span {
    font-size: 0.72rem;
}

.gb-section {
    padding: 42px 0;
}

.gb-feature {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 44px;
    padding: 28px 0;
}

.gb-feature--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.gb-feature--reverse .gb-feature__visual {
    order: 2;
}

.gb-feature--reverse .gb-feature__copy {
    order: 1;
}

.gb-feature__visual {
    padding: 34px;
    border-radius: var(--page-radius);
    background: var(--feature-bg, #eef3fd);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gb-feature:hover .gb-feature__visual {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(60, 64, 67, 0.12);
}

.gb-feature__copy h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    margin-bottom: 14px;
}

.gb-feature__copy p {
    margin: 0;
    max-width: 48ch;
    color: var(--page-muted);
}

.gb-story {
    margin: 26px 0 0;
    background: var(--page-success-bg);
    padding: 56px 0;
}

.gb-story__panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(280px, 1.14fr);
    gap: 22px;
    align-items: stretch;
}

.gb-story__quote,
.gb-story__image {
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
}

.gb-story__quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
}

.gb-story__eyebrow {
    margin: 0 0 10px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #3c4043;
}

.gb-story__quote blockquote {
    margin: 0;
    font-size: clamp(1.6rem, 2vw, 2rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.gb-story__quote p {
    margin: 18px 0 0;
    color: var(--page-muted);
    font-size: 0.95rem;
}

.gb-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-story__pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.gb-story__dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(95, 99, 104, 0.24);
}

.gb-story__dot.is-active {
    width: 28px;
    background: var(--page-accent);
}

.gb-story__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(26, 115, 232, 0.16);
    color: var(--page-accent);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.gb-steps {
    padding: 60px 0 26px;
    text-align: center;
}

.gb-steps h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.gb-steps__lead {
    max-width: 58ch;
    margin: 14px auto 0;
    color: var(--page-muted);
}

.gb-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.gb-step {
    padding: 18px 18px 8px;
}

.gb-step__number {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    line-height: 1;
    font-weight: 800;
    color: var(--page-accent);
    letter-spacing: -0.05em;
}

.gb-step h3 {
    margin: 14px 0 8px;
    font-size: 1.18rem;
    letter-spacing: -0.03em;
}

.gb-step p {
    margin: 0;
    color: var(--page-muted);
    font-size: 0.96rem;
}

.gb-faq {
    padding: 10px 0 72px;
}

.gb-faq h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    text-align: center;
    margin-bottom: 28px;
}

.gb-faq__list {
    width: min(820px, 100%);
    margin: 0 auto;
    border-top: 1px solid var(--page-line);
}

.gb-faq details {
    border-bottom: 1px solid var(--page-line);
}

.gb-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 46px 18px 0;
    position: relative;
    font-weight: 600;
}

.gb-faq summary::-webkit-details-marker {
    display: none;
}

.gb-faq summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--page-accent);
    font-size: 1.3rem;
    font-weight: 500;
}

.gb-faq details[open] summary::after {
    content: "−";
}

.gb-faq p {
    margin: 0;
    padding: 0 0 18px;
    color: var(--page-muted);
}

.gb-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.gb-mini-card {
    padding: 18px;
    border-radius: 22px;
    background: var(--page-card);
    border: 1px solid var(--page-line);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), background-color 260ms ease, border-color 260ms ease, box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gb-mini-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(26, 115, 232, 0.18);
    box-shadow: 0 14px 30px rgba(60, 64, 67, 0.08);
}

.gb-mini-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(26, 115, 232, 0.12), rgba(26, 115, 232, 0.06));
    color: var(--page-accent);
    font-size: 1.05rem;
    font-weight: 800;
}

.gb-mini-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    letter-spacing: -0.03em;
}

.gb-mini-card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--page-muted);
}

.gb-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

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

.gb-rise {
    transform: translateY(34px) scale(0.985);
}

.gb-rise.is-visible {
    transform: translateY(0) scale(1);
}

.gb-soft-float {
    animation: gb-soft-float 6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.gb-soft-float-delayed {
    animation-delay: -2.4s;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .gb-reveal,
    .gb-rise {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 920px) {
    .gb-hero {
        padding-top: 32px;
    }

    .gb-hero__grid,
    .gb-feature,
    .gb-feature--reverse,
    .gb-story__panel,
    .gb-steps__grid,
    .gb-mini-grid {
        grid-template-columns: 1fr;
    }

    .gb-feature--reverse .gb-feature__visual,
    .gb-feature--reverse .gb-feature__copy {
        order: initial;
    }

    .gb-hero-visual {
        min-height: 360px;
        margin-top: 8px;
    }

    .gb-hero-card {
        width: min(280px, 72%);
        left: 10%;
    }

    .gb-hero-card--video {
        width: min(280px, 72%);
        left: 10%;
    }

    .gb-floating-photo {
        width: min(190px, 42%);
        right: 6%;
        top: 12%;
    }

    .gb-overlay-card {
        max-width: 164px;
    }

    .gb-hero-dots {
        height: 94px;
        top: 29%;
    }

    .gb-hero-orb {
        width: 30px;
        height: 30px;
    }

    .gb-hero-control {
        width: 36px;
        height: 36px;
        right: -8px;
    }

    .gb-story__quote,
    .gb-story__image {
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .gb-container {
        width: min(100% - 24px, 100%);
    }

    .gb-hero h1,
    .gb-feature__copy h2,
    .gb-steps h2 {
        line-height: 1.02;
    }

    .gb-feature__visual,
    .gb-story__quote {
        padding: 24px;
    }

    .gb-overlay-card,
    .gb-overlay-note {
        padding: 10px 12px;
    }

    .gb-overlay-card strong,
    .gb-overlay-note strong {
        font-size: 0.82rem;
    }

    .gb-overlay-card span,
    .gb-overlay-note span,
    .gb-overlay-pill {
        font-size: 0.7rem;
    }

    .gb-hero-dots--left,
    .gb-hero-dots--right {
        display: none;
    }

    .gb-step {
        padding-inline: 0;
    }
}
