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

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: #f8fafc;
}

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

.email-link {
    color: #2563eb;
    text-decoration: underline;
}

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

.container {
    width: min(1080px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.site-header {
    border-bottom: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.25rem;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: -0.01em;
}

.logo-mark {
    font-size: 1.6rem;
    line-height: 1;
}

.site-nav {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.site-nav a {
    position: relative;
    padding-bottom: 0.2rem;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #0ea5e9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.section {
    padding: 3rem 0;
    border-bottom: 1px solid #f0f0f0;
}

h1, h2, h3 {
    color: #0f172a;
    letter-spacing: -0.01em;
}

h2 {
    margin-bottom: 0.75rem;
}

h3 {
    margin-top: 0;
    margin-bottom: 0.35rem;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.text-center {
    text-align: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: #6b7280;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.button {
    border: 1px solid #1f1f1f;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
}

.button.primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-color: #16a34a;
}

.button.ghost {
    background: transparent;
    color: #0f172a;
    border-color: #cbd5e1;
}

.button.ghost:hover {
    background: #e2e8f0;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.button {
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.columns > * {
    flex: 1 1 250px;
}

.note {
    border: 1px solid #e2e8f0;
    padding: 1.25rem;
    border-radius: 0.5rem;
    background: #fafafa;
}

.note p {
    margin: 0;
    line-height: 1.35;
}

.note p + p {
    margin-top: 0.35rem;
}

.note iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 0.5rem;
    margin-top: 0.75rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.card {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.5rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    border-bottom: 1px solid #f3f3f3;
    padding: 0.15rem 0 0.35rem;
}

.site-footer {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #475569;
}

.hero {
    background: radial-gradient(circle at 20% 20%, #f0f9ff, transparent 30%), radial-gradient(circle at 80% 10%, #fffbeb, transparent 30%), linear-gradient(135deg, #f8fafc 0%, #eef2ff 40%, #e2e8f0 100%);
    border-bottom: 0;
    padding: 4.75rem 0 4.25rem;
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.hero__copy h1 {
    margin: 0.35rem 0 0.35rem;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero__copy p {
    max-width: 34rem;
    color: #475569;
}

.hero__visual {
    position: relative;
    min-height: 260px;
    display: grid;
    place-items: center;
}

.hero__orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(0px);
    opacity: 0.6;
}

.orb-1 {
    width: 220px;
    height: 220px;
    background: #bbf7d0;
    top: 10px;
    right: 0;
}

.orb-2 {
    width: 180px;
    height: 180px;
    background: #a5f3fc;
    bottom: -10px;
    left: 10px;
}

.hero__card {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    text-align: left;
    min-width: 210px;
}

.hero__card-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.hero__card-note {
    margin: 0.2rem 0 0;
    color: #475569;
}

.hero__pill {
    position: absolute;
    bottom: 18px;
    right: 22px;
    background: #0f172a;
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.2);
    z-index: 2;
}

.card a {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

.card a:hover {
    color: #ea580c;
}

.note {
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: #6b7280;
    display: inline-block;
}

.site-footer {
    background: #0f172a;
    color: #e2e8f0;
}

.site-footer .container {
    color: #e2e8f0;
}

.section:nth-of-type(odd):not(.hero) {
    background: #fff;
}

.section:nth-of-type(even) {
    background: #f8fafc;
}

@media (max-width: 900px) {
    .hero__visual {
        min-height: 200px;
    }
    .hero {
        padding: 3.5rem 0 3.25rem;
    }
}

@media (max-width: 640px) {
    .site-nav {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .header__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
