:root {
    color-scheme: light;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --background: #fff7f2;
    --background-dark: #1f1533;
    --foreground: #20152d;
    --muted: #6a5875;
    --accent: #ff795f;
    --accent-strong: #7a4be4;
    --accent-soft: rgba(255, 153, 128, 0.18);
    --card-bg: rgba(255, 255, 255, 0.94);
    --card-border: rgba(123, 74, 209, 0.14);
    --watch-green: #2cd85c;
}

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

body {
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

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

header,
main,
footer {
    width: 100%;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    padding: clamp(3.5rem, 4vw, 5.5rem) clamp(1.5rem, 3vw, 5rem);
    background: linear-gradient(135deg, #ff8366 0%, #ffb27a 32%, #c65cc7 70%, #704be3 100%);
    color: #fefaf6;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.18), transparent 60%);
    pointer-events: none;
}

.hero__content {
    max-width: 520px;
    position: relative;
    z-index: 1;
}

.hero__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1.5rem;
}

.hero__brand-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    box-shadow: 0 18px 35px -18px rgba(32, 21, 45, 0.55);
}

.hero__brand-copy {
    display: grid;
}

.hero__brand-title {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.hero__brand-tagline {
    font-size: 0.95rem;
    opacity: 0.82;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: rgb(32 21 44);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 2rem;
}

.cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta {
    position: relative;
    z-index: 1;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.button--primary {
    background: #7c53cb;
    color: #fffaf6;
    box-shadow: 0 18px 35px -16px rgba(112, 75, 227, 0.55);
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 45px -20px rgba(112, 75, 227, 0.65);
}

.button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
}

.button--ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.hero__device {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.device-frame {
    width: clamp(220px, 30vw, 280px);
    height: clamp(260px, 36vw, 320px);
    border-radius: 28px;
    background: linear-gradient(155deg, rgba(28, 18, 48, 0.9), rgba(28, 18, 48, 0.55));
    padding: 18px;
    position: relative;
}

.device-frame::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 36px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.device-screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.device-screen--paceo {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 60%),
                linear-gradient(155deg, var(--watch-green) 0%, #1ac34a 65%, #0f8c32 100%);
}

.watch-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 55%);
    opacity: 0.75;
}

.watch-layout {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 28px 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.watch-time {
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.96);
}

.watch-label {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.watch-target {
    display: grid;
    gap: 0.35rem;
    justify-items: center;
}

.watch-target-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

.watch-target-value {
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
}

.watch-status {
    display: flex;
    justify-content: center;
}

.watch-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(5, 21, 9, 0.35);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    font-weight: 600;
}

.watch-stop {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fdfdfd;
    font-size: 1.4rem;
    line-height: 1;
    margin-top: auto;
}

.watch-stop-icon {
    position: relative;
    top: -2px;
}

.section {
    padding: clamp(4rem, 5vw, 6rem) clamp(1.5rem, 3vw, 5rem);
}

.section--light {
    background: linear-gradient(180deg, rgba(255, 249, 244, 0.95) 0%, rgba(255, 243, 236, 0.85) 100%);
}

.section--dark {
    background: radial-gradient(circle at top, rgba(122, 75, 228, 0.35) 0%, rgba(31, 21, 51, 0.95) 65%), var(--background-dark);
    color: rgba(245, 241, 255, 0.94);
}

.section__inner {
    max-width: 1080px;
    margin: 0 auto;
}

.section__inner--split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    align-items: center;
}

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

.section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
}

.grid {
    display: grid;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.grid--three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid var(--card-border);
    box-shadow: 0 35px 55px -45px rgba(32, 21, 45, 0.4);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.card p {
    color: var(--muted);
}

.section__copy p {
    color: rgba(246, 242, 255, 0.82);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    color: rgba(246, 241, 255, 0.9);
}

.feature-list li::before {
    content: "•";
    color: rgba(255, 186, 120, 0.95);
    margin-right: 0.65rem;
}

.section__media {
    display: flex;
    justify-content: center;
}

.iphone-frame {
    width: clamp(230px, 28vw, 280px);
    border-radius: 40px;
    padding: 16px;
    background: linear-gradient(150deg, rgba(255, 160, 120, 0.85), rgba(122, 75, 228, 0.85));
    position: relative;
}

.iphone-frame::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 46px;
    border: 2px solid rgba(255, 205, 180, 0.45);
}

.iphone-screen {
    border-radius: 30px;
    background: linear-gradient(160deg, rgba(15, 21, 33, 0.88), rgba(30, 18, 54, 0.95));
    padding: 26px 24px;
    color: #f8fafc;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone-ui {
    display: grid;
    gap: 0.9rem;
    text-align: left;
}

.iphone-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 143, 116, 0.25);
    color: rgba(255, 206, 188, 0.95);
    font-size: 0.8rem;
    font-weight: 600;
}

.narrow {
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

code {
    display: inline-block;
    font-family: "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
    background: rgba(255, 189, 160, 0.25);
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.footer {
    background: #120d21;
    color: rgba(244, 238, 255, 0.72);
    padding: 1.5rem clamp(1.5rem, 3vw, 5rem);
}

.footer__inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer a {
    color: rgba(255, 179, 140, 0.9);
}

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

    .hero__device {
        order: -1;
    }
}
