/*
Theme Name: Internet Lifestyle Theme
Theme URI: https://example.com/
Author: OpenAI Codex
Author URI: https://openai.com/
Description: A custom WordPress landing page theme inspired by the Internet Lifestyle Hub visual style.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: internet-lifestyle-theme
*/

:root {
    --bg: #f6f7fc;
    --paper: #ffffff;
    --navy: #07153b;
    --text: #16203a;
    --muted: #68718d;
    --blue: #1683ff;
    --violet: #7e53ff;
    --shadow: 0 24px 60px rgba(18, 31, 76, 0.14);
    --radius-xl: 32px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Outfit", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(22, 131, 255, 0.14), transparent 32%),
        radial-gradient(circle at top right, rgba(126, 83, 255, 0.16), transparent 30%),
        linear-gradient(180deg, #fbfbfe 0%, #f4f6fd 45%, #eef2fb 100%);
    line-height: 1.6;
}

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

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

.container {
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(246, 247, 252, 0.74);
    border-bottom: 1px solid rgba(12, 29, 77, 0.08);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
    position: relative;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
}

.brand-mark::before {
    width: 16px;
    height: 16px;
    left: 8px;
    top: 8px;
}

.brand-mark::after {
    width: 11px;
    height: 11px;
    right: 8px;
    bottom: 8px;
}

.nav-links,
.nav-links ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--muted);
    font-weight: 500;
    list-style: none;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.button {
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.45rem;
    font: inherit;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.ghost {
    background: transparent;
    color: var(--navy);
}

.button.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 18px 35px rgba(84, 84, 217, 0.28);
}

.button.secondary {
    background: rgba(255, 255, 255, 0.84);
    color: var(--navy);
    border: 1px solid rgba(15, 34, 80, 0.1);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 3.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(22, 131, 255, 0.09);
    color: var(--blue);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
}

h1,
h2 {
    font-family: "Outfit", sans-serif;
    font-style: italic;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--navy);
}

.hero h1 {
    font-size: clamp(3.1rem, 7vw, 6.3rem);
    line-height: 0.96;
    max-width: 11ch;
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    margin-top: 1.35rem;
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    color: var(--muted);
    max-width: 58ch;
}

.cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 34, 77, 0.08);
    box-shadow: 0 14px 30px rgba(25, 40, 84, 0.08);
}

.stat strong {
    display: block;
    font-size: 1.4rem;
    color: var(--navy);
    letter-spacing: -0.03em;
}

.stat span {
    display: block;
    margin-top: 0.15rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-card {
    position: relative;
    padding: 1.3rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 247, 255, 0.9));
    border: 1px solid rgba(20, 31, 68, 0.08);
    box-shadow: var(--shadow);
}

.hero-card::before,
.hero-card::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.6;
}

.hero-card::before {
    width: 140px;
    height: 140px;
    right: -35px;
    top: -35px;
    background: rgba(22, 131, 255, 0.16);
}

.hero-card::after {
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -70px;
    background: rgba(126, 83, 255, 0.12);
}

.showcase {
    position: relative;
    min-height: 520px;
    border-radius: calc(var(--radius-xl) - 6px);
    overflow: hidden;
    padding: 1.25rem;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 28%),
        linear-gradient(150deg, #0a1d50 0%, #133f97 52%, #8a54ff 100%);
}

.floating-note,
.metric-chip,
.mini-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 40px rgba(8, 20, 55, 0.18);
    backdrop-filter: blur(16px);
}

.floating-note {
    top: 24px;
    left: 24px;
    width: 220px;
    padding: 1rem;
    border-radius: 22px;
}

.metric-chip {
    right: 24px;
    top: 170px;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    min-width: 150px;
}

.mini-card {
    left: 30px;
    bottom: 28px;
    right: 30px;
    border-radius: 26px;
    padding: 1.3rem;
}

.floating-note p,
.metric-chip p,
.mini-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

.floating-note strong,
.metric-chip strong,
.mini-card strong {
    display: block;
    color: var(--navy);
    letter-spacing: -0.03em;
}

.floating-note strong {
    margin-bottom: 0.35rem;
    font-size: 1.15rem;
}

.metric-chip strong {
    font-size: 1.8rem;
}

.mini-card strong {
    margin-bottom: 0.25rem;
    font-size: 1.15rem;
}

.rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rings span {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rings span:nth-child(1) {
    width: 280px;
    height: 280px;
    top: 100px;
    left: 120px;
}

.rings span:nth-child(2) {
    width: 380px;
    height: 380px;
    top: 50px;
    left: 75px;
}

.rings span:nth-child(3) {
    width: 500px;
    height: 500px;
    top: 0;
    left: 10px;
}

.section {
    padding: 2.2rem 0;
}

.quote-card,
.cta-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 251, 255, 0.85)),
        repeating-linear-gradient(180deg, rgba(116, 128, 166, 0.06) 0, rgba(116, 128, 166, 0.06) 1px, transparent 1px, transparent 34px);
    border: 1px solid rgba(19, 33, 72, 0.08);
    box-shadow: var(--shadow);
}

.quote-card {
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    left: 28px;
    top: 10px;
    font-family: "Lora", serif;
    font-size: 6rem;
    color: rgba(22, 131, 255, 0.18);
    line-height: 1;
}

blockquote {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.5;
    color: #23304f;
    font-weight: 500;
}

.quote-credit {
    margin-top: 1rem;
    text-align: center;
    color: var(--muted);
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.section-head h2 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1;
}

.section-head p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.step-card {
    border-radius: 28px;
    padding: 1.55rem;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(18, 34, 76, 0.08);
    box-shadow: 0 14px 28px rgba(23, 38, 74, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(23, 38, 74, 0.12);
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--blue);
    background: rgba(22, 131, 255, 0.1);
    margin-bottom: 1.1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 0.45rem;
}

.step-card p {
    color: var(--muted);
    font-size: 0.98rem;
}

.band {
    padding: 1.4rem 1.6rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #08173f, #153d93 50%, #7e53ff);
    color: #fff;
    box-shadow: var(--shadow);
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.band-item strong {
    display: block;
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.band-item span {
    display: block;
    opacity: 0.82;
}

.cta-panel {
    border-radius: 34px;
    padding: 3.25rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-panel::before,
.cta-panel::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(91, 110, 255, 0.08);
}

.cta-panel::before {
    width: 260px;
    height: 260px;
    top: -110px;
    left: -80px;
}

.cta-panel::after {
    width: 220px;
    height: 220px;
    right: -70px;
    bottom: -90px;
}

.cta-panel h2 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    position: relative;
    z-index: 1;
}

.cta-panel p {
    margin: 1rem auto 0;
    max-width: 650px;
    color: var(--muted);
    font-size: 1.08rem;
    position: relative;
    z-index: 1;
}

.cta-panel .cta-row {
    justify-content: center;
    position: relative;
    z-index: 1;
}

.site-footer {
    padding: 1.5rem 0 2.5rem;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 30, 66, 0.08);
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 1.25rem;
    list-style: none;
}

.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;
}

@media (max-width: 980px) {
    .hero-grid,
    .steps-grid,
    .band-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid {
        gap: 1.5rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 720px) {
    .hero {
        padding-top: 4rem;
    }

    .hero-grid,
    .steps-grid,
    .band-grid,
    .hero-stats,
    .footer-row {
        grid-template-columns: 1fr;
        display: grid;
    }

    .nav-actions .ghost {
        display: none;
    }

    .quote-card,
    .cta-panel {
        padding: 2rem 1.25rem;
    }

    .showcase {
        min-height: 440px;
    }

    .floating-note,
    .metric-chip {
        position: static;
        margin-bottom: 1rem;
    }

    .mini-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .footer-row,
    .nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}
