/* Godsways Hero Section Styles - ArkShield Edition */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Hero Section Container - matches ArkShield unit body */
.godsways-hero {
    background-color: #2b3036;
    min-height: 50vh;
    color: #ffffff;
}

/* Background Gradient Overlay - subtle graphite depth, like the molded plastic of the unit */
.godsways-hero__bg-gradient {
    background: linear-gradient(to bottom, #3a4148 0%, #2b3036 45%, #1f2429 100%);
    opacity: 1;
}

/* Radial Glow Effect - warm copper light from above, mimicking the panel's orange trim */
.godsways-hero__radial-glow {
    background: radial-gradient(ellipse at top, rgba(227, 157, 98, 0.18), transparent 60%, transparent);
}

/* Pre-headline */
.godsways-preheadline {
    color: #e39d62;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: 0.15em;
    font-size: calc(15px + 7 * ((100vw - 350px) / (1920 - 350)));
    text-align: center;
}

/* Main Headline (Headline 1) */
.godsways-headline {
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 1px;
    font-size: calc(20px + 25 * ((100vw - 350px) / (1920 - 350)));
    margin-bottom: 20px;
}

.godsways-headline-accent {
    color: #e39d62;
}

.godsways-headline-secondary {
    color: rgba(255, 255, 255, 0.9);
}

/* Secondary Headline (Headline 2) */
.godsways-headline-2 {
    color: rgba(255, 255, 255, 0.92);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.5px;
    font-size: calc(16px + 12 * ((100vw - 350px) / (1920 - 350)));
}

.godsways-headline-2-accent {
    color: #e39d62;
}

/* Subheadline Box */
.godsways-subheadline-box {
    background: linear-gradient(to right, rgba(227, 157, 98, 0.16), rgba(180, 115, 70, 0.16));
}

.godsways-subheadline {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: center;
}

@media (min-width: 768px) {
    .godsways-subheadline {
        font-size: 1.6rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .godsways-subheadline {
        font-size: 1.5rem;
    }
}

.godsways-quickstart {
    color: #e39d62;
    font-weight: 700;
}

/* Curved underline */
.curved-underline {
    position: relative;
    display: inline;
    padding-bottom: 14px;
}

.curved-underline::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: -5%;
    width: 110%;
    height: 0px;
    border-bottom: 5px solid #e39d62;
    border-radius: 999px;
    transform-origin: 0% 100%;
    transform: translateY(1px) rotate(-2deg);
    pointer-events: none;
}

@media (max-width: 575px) {
    .curved-underline::after {
        left: 0%;
        width: 100%;
    }
}

