body.nautypro-body {
    font-family: var(--font-family-base);
    color: var(--color-text);
    background:
        radial-gradient(circle at top right, rgba(25, 183, 198, 0.16), transparent 28%),
        linear-gradient(180deg, #f8fbfd 0%, #f3f6f9 100%);
    line-height: 1.6;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
}

.section {
    position: relative;
    padding: var(--section-spacing) 0;
}

.section--muted {
    background: rgba(255, 255, 255, 0.56);
}

.section--highlight {
    background:
        radial-gradient(circle at bottom left, rgba(25, 183, 198, 0.08), transparent 35%),
        linear-gradient(180deg, rgba(232, 250, 252, 0.72) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.section--deep {
    background: linear-gradient(180deg, #0a314d 0%, #0e476d 100%);
    color: var(--color-white);
}

.section--cta {
    padding-bottom: calc(var(--section-spacing) + 56px);
}

.section-heading {
    max-width: none;
    margin-bottom: 26px;
}

.section-heading--compact {
    margin-top: 56px;
}

.section-heading h1,
.section-heading h2,
.hero__content h1 {
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.section-heading h2 {
    font-size: clamp(1.5rem, 1.8vw, 2.05rem);
    margin-top: 10px;
    max-width: none;
    text-wrap: balance;
}

.section-heading p,
.hero__lead,
.section-note,
.site-footer__tagline,
.site-footer__note {
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.4;
    max-width: 108ch;
}

.section--deep .section-heading p,
.section--deep .eyebrow--light,
.section--deep .testimonial__author p {
    color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: 0.45;
}

.eyebrow--light {
    color: var(--color-accent-light);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 560ms ease,
        transform 560ms ease;
}

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 24px;
    left: 24px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    background: var(--color-primary);
    color: var(--color-white);
    clip: auto;
    z-index: 1000;
}
