:root {
    --start-teal: #1f889c;
    --start-teal-light: #52adc0;
    --start-teal-dark: #125e6d;
    --start-accent: #e4a13a;
    --start-accent-deep: #c98422;
    --start-accent-soft: rgba(228, 161, 58, 0.16);
    --start-canvas: #eef4f6;
    --start-ink: #111827;
    --start-muted: #5f7385;
    --start-border: #d9e4ea;
    --start-surface: #ffffff;
    --start-sticky-h: 72px;
}

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

html {
    scroll-behavior: smooth;
}

body.start-body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--start-ink);
    background:
        radial-gradient(circle at 8% -4%, rgba(228, 161, 58, 0.22), transparent 38%),
        radial-gradient(circle at 92% 6%, rgba(82, 173, 192, 0.28), transparent 40%),
        radial-gradient(circle at 50% 42%, rgba(31, 136, 156, 0.08), transparent 45%),
        linear-gradient(180deg, #f8fbfd 0%, #eef4f6 48%, #f7fafb 100%);
    padding-bottom: calc(var(--start-sticky-h) + env(safe-area-inset-bottom, 0px));
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.start-wrap {
    width: min(100% - 2rem, 440px);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .start-wrap {
        width: min(100% - 3rem, 720px);
    }
}

.start-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 0.5rem;
}

.start-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: Poppins, Inter, sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
}

.start-brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.start-top-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--start-muted);
}

.start-top-links a:hover {
    color: var(--start-teal-dark);
}

.start-hero {
    padding: 1.25rem 0 1.75rem;
    animation: start-rise 0.55s ease both;
}

@keyframes start-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.start-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: var(--start-accent-soft);
    border: 1px solid rgba(228, 161, 58, 0.28);
    color: var(--start-accent-deep);
    font-size: 0.82rem;
    font-weight: 700;
}

.start-badge::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--start-accent);
}

.start-hero h1 {
    margin: 1rem 0 0.75rem;
    font-family: Poppins, Inter, sans-serif;
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.start-hero h1 span {
    background: linear-gradient(120deg, var(--start-teal-dark), var(--start-teal-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.start-hero-desc {
    margin: 0 0 1.25rem;
    color: var(--start-muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

.start-cta-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.start-btn:active {
    transform: translateY(1px);
}

.start-btn--primary {
    background: var(--start-teal);
    color: #fff;
    box-shadow: 0 12px 28px rgba(31, 136, 156, 0.28);
}

.start-btn--primary:hover {
    background: var(--start-teal-dark);
}

.start-btn--accent {
    background: var(--start-accent);
    color: #fff;
    box-shadow: 0 12px 28px rgba(228, 161, 58, 0.28);
}

.start-btn--accent:hover {
    background: var(--start-accent-deep);
}

.start-btn--on-dark {
    background: #fff;
    color: var(--start-teal-dark);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    width: 100%;
}

.start-btn--on-dark:hover {
    background: #f3fafc;
}

.start-btn--compact {
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    width: 100%;
    margin-top: 0.85rem;
}

.start-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: var(--start-teal-dark);
    font-weight: 800;
    font-size: 1rem;
}

.start-link:hover {
    color: var(--start-accent-deep);
}

.start-link--block {
    width: 100%;
    padding: 0.65rem 0;
}

.start-micro {
    margin: 0.35rem 0 0;
    color: var(--start-muted);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}

.start-section {
    padding: 1.5rem 0 0.5rem;
}

.start-section--band {
    margin: 1rem -1rem 0;
    padding: 1.35rem 1rem 1rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(217, 228, 234, 0.8);
}

.start-section-badge {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--start-teal);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.start-section h2 {
    margin: 0 0 0.5rem;
    font-family: Poppins, Inter, sans-serif;
    font-size: 1.55rem;
    line-height: 1.2;
}

.start-section-sub {
    margin: 0 0 1.1rem;
    color: var(--start-muted);
    line-height: 1.5;
}

.start-advisor-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(228, 161, 58, 0.14), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border: 1px solid rgba(228, 161, 58, 0.28);
    box-shadow: 0 16px 36px rgba(228, 161, 58, 0.12);
    position: relative;
    overflow: hidden;
}

.start-advisor-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--start-accent), var(--start-teal));
}

.start-advisor-card img {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(18, 94, 109, 0.16);
}

.start-advisor-card h3 {
    margin: 0.4rem 0 0.35rem;
    font-size: 1.2rem;
    line-height: 1.25;
}

.start-advisor-card p {
    margin: 0;
    color: var(--start-muted);
    font-size: 0.94rem;
    line-height: 1.45;
}

.start-special-points {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.start-special-point {
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--start-border);
    border-left: 4px solid var(--start-teal-light);
}

.start-special-point h3 {
    margin: 0 0 0.25rem;
    font-size: 0.98rem;
}

.start-special-point p {
    margin: 0;
    color: var(--start-muted);
    font-size: 0.88rem;
    line-height: 1.4;
}

.start-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.start-feature {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0.85rem;
    align-items: center;
    padding: 0.75rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--start-border);
    box-shadow: 0 8px 20px rgba(18, 94, 109, 0.06);
}

.start-feature--premium {
    border-color: rgba(31, 136, 156, 0.28);
    background: linear-gradient(90deg, rgba(31, 136, 156, 0.06), #fff 28%);
}

.start-feature img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
}

.start-feature h3 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    line-height: 1.25;
}

.start-feature p {
    margin: 0;
    color: var(--start-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.start-feature-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.start-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(31, 136, 156, 0.12);
    color: var(--start-teal-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.start-pill--accent {
    background: rgba(228, 161, 58, 0.14);
    color: var(--start-accent-deep);
}

.start-plans {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.start-plan {
    position: relative;
    padding: 1.15rem 1rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--start-border);
    box-shadow: 0 10px 24px rgba(18, 94, 109, 0.07);
}

.start-plan--premium {
    border-color: rgba(228, 161, 58, 0.28);
    box-shadow: 0 16px 36px rgba(228, 161, 58, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #fffaf1 100%);
}

.start-plan-ribbon {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--start-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
}

.start-plan h3 {
    margin: 0 0 0.25rem;
    font-size: 1.2rem;
}

.start-plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin: 0.35rem 0 0.45rem;
}

.start-plan-price strong {
    font-family: Poppins, Inter, sans-serif;
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.start-plan-price span {
    color: var(--start-muted);
    font-weight: 600;
}

.start-plan > p {
    margin: 0 0 0.85rem;
    color: var(--start-muted);
    line-height: 1.45;
}

.start-plan ul {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}

.start-plan li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    margin-bottom: 0.45rem;
    font-size: 0.94rem;
    line-height: 1.35;
}

.start-plan li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    margin-top: 0.15rem;
    flex: 0 0 auto;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, #fff 0 35%, transparent 36%),
        var(--start-teal);
}

.start-plan--premium li::before {
    background:
        radial-gradient(circle at center, #fff 0 35%, transparent 36%),
        var(--start-accent);
}

.start-plan-note {
    margin: 0.65rem 0 0;
    color: var(--start-muted);
    font-size: 0.82rem;
    line-height: 1.4;
    text-align: center;
}

.start-closing {
    margin: 1.5rem 0 1rem;
    padding: 1.35rem 1.1rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 10%, rgba(228, 161, 58, 0.28), transparent 42%),
        linear-gradient(145deg, var(--start-teal-dark), var(--start-teal));
    color: #fff;
    text-align: center;
    box-shadow: 0 18px 40px rgba(18, 94, 109, 0.28);
}

.start-closing h2 {
    margin: 0 0 0.5rem;
    font-family: Poppins, Inter, sans-serif;
    font-size: 1.45rem;
}

.start-closing p {
    margin: 0 0 1rem;
    opacity: 0.92;
    line-height: 1.5;
}

.start-closing .start-micro {
    color: rgba(255, 255, 255, 0.85);
}

.start-footer {
    padding: 1rem 0 1.25rem;
    color: var(--start-muted);
    font-size: 0.85rem;
    text-align: center;
}

.start-footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.start-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--start-border);
    box-shadow: 0 -8px 24px rgba(18, 94, 109, 0.1);
}

.start-sticky .start-btn {
    width: min(100%, 440px);
    margin: 0 auto;
    display: flex;
}

@media (min-width: 640px) {
    .start-advisor-card {
        grid-template-columns: 140px 1fr;
        align-items: center;
    }

    .start-advisor-card img {
        margin: 0;
        max-width: none;
        width: 140px;
    }
}

@media (min-width: 768px) {
    .start-cta-row {
        flex-direction: row;
        align-items: center;
    }

    .start-btn {
        min-width: 180px;
    }

    .start-section--band {
        margin-left: 0;
        margin-right: 0;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .start-plans {
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        align-items: stretch;
    }

    .start-plan--premium {
        order: 2;
    }

    .start-plan--free {
        order: 1;
    }

    .start-sticky {
        display: none;
    }

    body.start-body {
        padding-bottom: 0;
    }
}
