:root {
    --rp-ink: #101828;
    --rp-text: #344054;
    --rp-muted: #667085;
    --rp-night: #07111f;
    --rp-night-soft: #10243f;
    --rp-blue: #2f80ed;
    --rp-blue-light: #59a7ff;
    --rp-surface: #ffffff;
    --rp-page: #f4f7fb;
    --rp-line: #d9e2ec;
}

body {
    color: var(--rp-ink);
    background: var(--rp-page);
    overflow-x: hidden;
}

/* Shared header */
.repeatedly-header {
    display: block;
    width: 100%;
    grid-column: 1 / 13;
    color: #fff;
    background: var(--rp-night);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.repeatedly-header__inner {
    box-sizing: border-box;
    max-width: 1180px;
    min-height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.repeatedly-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    text-decoration: none;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.repeatedly-brand__mark {
    width: 31px;
    height: 31px;
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
}

.repeatedly-brand__mark i {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 3px solid var(--rp-blue-light);
    border-radius: 50%;
}

.repeatedly-brand__mark i:nth-child(1) { left: 1px; top: 1px; }
.repeatedly-brand__mark i:nth-child(2) { right: 1px; top: 1px; }
.repeatedly-brand__mark i:nth-child(3) { left: 8px; bottom: 1px; }
.repeatedly-brand__name { font-size: 20px; font-weight: 700; }
.repeatedly-brand__product {
    margin-left: 2px;
    padding-left: 12px;
    color: #a9b7c9;
    border-left: 1px solid #3a4657;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.repeatedly-menu { flex: 1; }
.repeatedly-menu nav {
    position: static;
    top: auto;
    right: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    width: auto;
    min-height: 0;
    color: #fff;
    background: transparent;
    box-shadow: none;
}
.repeatedly-nav,
.repeatedly-account { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.repeatedly-nav a,
.repeatedly-account a,
.repeatedly-account button {
    display: inline-flex;
    padding: 9px 11px;
    color: #c9d3df !important;
    background: transparent;
    border: 0;
    border-radius: 7px;
    font: inherit;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}
.repeatedly-nav a:hover,
.repeatedly-account a:hover,
.repeatedly-account button:hover,
.repeatedly-nav a.is-current { color: #fff !important; background: rgba(255, 255, 255, .08); }
.repeatedly-account { padding-left: 14px; border-left: 1px solid #2a3748; }
.repeatedly-account form { margin: 0; }

/* Compact task-first homepage intro */
body.home,
body.home.feature-cc { color: var(--rp-ink); background: var(--rp-page); }

.repeatedly-hero {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    width: 100%;
    grid-column: 1 / 13;
    color: #fff;
    background:
        radial-gradient(circle at 82% 25%, rgba(47, 128, 237, .24), transparent 25rem),
        linear-gradient(135deg, var(--rp-night), var(--rp-night-soft));
}
.repeatedly-hero::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: -280px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(89, 167, 255, .25);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(89, 167, 255, .035), 0 0 0 140px rgba(89, 167, 255, .02);
}
.repeatedly-hero__inner {
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 52px 24px 76px;
}
.repeatedly-eyebrow {
    margin: 0 0 13px;
    color: var(--rp-blue-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.repeatedly-hero h1 {
    display: block;
    max-width: 800px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -.05em;
}
.repeatedly-hero h1 span { color: var(--rp-blue-light); }
.repeatedly-hero__copy {
    max-width: 720px;
    margin: 18px 0 0;
    color: #c1ccda;
    font-size: 17px;
    line-height: 1.6;
}

/* Test form */
body.home .home_content_contain { box-sizing: border-box; background: var(--rp-page); }
body.home > .home_content_contain > .home_content {
    position: relative;
    z-index: 3;
    margin-top: -34px;
}

body.home #test_box-container {
    box-sizing: border-box;
    width: calc(100% - 48px);
    max-width: 1120px;
    margin: 0 auto 58px;
    overflow: visible;
    color: var(--rp-text);
    background: var(--rp-surface);
    border: 1px solid var(--rp-line);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(16, 24, 40, .12);
}

.repeatedly-test-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 25px 30px 21px;
    border-bottom: 1px solid #e5eaf0;
}
.repeatedly-test-intro p {
    margin: 0 0 5px;
    color: var(--rp-blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.repeatedly-test-intro h2 {
    display: block;
    margin: 0;
    padding: 0;
    color: var(--rp-ink);
    font-size: 27px;
    line-height: 1.15;
}
.repeatedly-test-type { display: flex; align-items: center; gap: 10px; color: var(--rp-muted); font-size: 12px; }
.repeatedly-test-type > h2 { margin: 0; }
.repeatedly-test-type > h2 > span:first-child,
.repeatedly-test-type > h2 > span:last-child { display: none; }
.repeatedly-test-type .home_test_select {
    box-sizing: border-box;
    width: 190px;
    padding: 10px 36px 10px 13px;
    color: var(--rp-text);
    background-color: #fff;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.3;
}

body.home .test_box {
    padding: 24px 30px 30px;
    color: var(--rp-text);
    background: #fff;
    border-radius: 0 0 16px 16px;
}
body.home .input_fields.home_responsive_test_top { margin: 0; padding: 0; }
body.home .input_fields.home_responsive_test_top > li:first-child {
    display: flex;
    align-items: stretch;
    gap: 11px;
}
body.home #url {
    box-sizing: border-box;
    flex: 1;
    width: auto;
    height: 54px;
    margin: 0;
    padding: 0 17px;
    color: var(--rp-ink);
    background: #fff;
    border: 1px solid #b9c5d2;
    border-radius: 8px;
    box-shadow: none;
    font-size: 17px;
}
body.home #url:focus { border-color: var(--rp-blue); outline: 3px solid rgba(47, 128, 237, .15); }
.repeatedly-start {
    min-width: 205px;
    padding: 0 21px;
    color: #fff;
    background: var(--rp-blue);
    border: 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}
.repeatedly-start:hover { background: #1f6fd7; }

body.home .simpleadvancedfields_contain { margin-top: 20px; color: var(--rp-text); }
body.home .simpleadvancedfields_contain > input + label {
    box-sizing: border-box;
    margin: 0;
    padding: 15px 42px;
    color: var(--rp-text);
    border-top: 1px solid #e7ecf2;
    font-size: 14px;
}
body.home .simpleadvancedfields_contain > input + label::before {
    top: 13px;
    left: 7px;
    background-color: var(--rp-blue);
    border: 0;
}
body.home .simpleadvancedfields_contain > input + label em { color: var(--rp-muted); }
body.home .simpleadvancedfields { padding: 11px 7px 3px; color: var(--rp-text); }
body.home .test_presets_easy { display: block; width: 100%; }
body.home .test_presets_easy_checks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 0 0 10px;
}
body.home .test_presets_easy_checks .fieldrow {
    box-sizing: border-box;
    min-height: 92px;
    padding: 15px;
    background: #f8fafc;
    border: 1px solid #e4e9f0;
    border-radius: 9px;
}
body.home .test_presets_easy_checks .fieldrow#description:empty { display: none; }
body.home .test_presets_easy_checks label { width: 100%; color: var(--rp-text); font-size: 13px; }
body.home .test_presets_easy_checks small { margin-top: 5px; color: #7a8697; line-height: 1.4; }
body.home .test_presets_easy_submit { display: none; }
body.home #advanced_settings-container { color: var(--rp-text); background: #f8fafc; }
body.home #test_box-container a { color: #175cd3; }

/* Homepage supporting content */
.repeatedly-benefits {
    box-sizing: border-box;
    max-width: 1120px;
    margin: 0 auto;
    padding: 62px 24px 78px;
    color: var(--rp-text);
}
.repeatedly-section-heading { max-width: 690px; }
.repeatedly-section-heading h2 {
    margin: 0 0 35px;
    color: var(--rp-ink);
    font-size: clamp(29px, 3.5vw, 43px);
    line-height: 1.12;
    letter-spacing: -.04em;
}
.repeatedly-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.repeatedly-benefits article {
    padding: 27px;
    color: var(--rp-text);
    background: #fff;
    border: 1px solid var(--rp-line);
    border-radius: 12px;
}
.repeatedly-benefit-number { color: var(--rp-blue); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.repeatedly-benefits h3 { margin: 28px 0 10px; color: var(--rp-ink); font-size: 20px; }
.repeatedly-benefits p { margin: 0; color: var(--rp-muted); line-height: 1.6; }

/* Shared footer */
.repeatedly-footer {
    box-sizing: border-box;
    display: block;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-top: 0;
    padding: 0;
    grid-column: 1 / 13;
    color: #b9c5d3;
    background: var(--rp-night);
}
.repeatedly-footer__inner {
    box-sizing: border-box;
    max-width: 1180px;
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.repeatedly-footer p { margin: 0; font-size: 12px; }
.repeatedly-footer a { color: #d9e4ef; }
.repeatedly-footer__links { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 0; padding: 0; font-size: 12px; }

@media (max-width: 840px) {
    .repeatedly-brand__product,
    .repeatedly-account { display: none; }
    .repeatedly-nav li:nth-child(n+3) { display: none; }
    .repeatedly-header__inner { min-height: 60px; padding: 0 16px; gap: 12px; }
    .repeatedly-brand__mark { width: 28px; height: 28px; }
    .repeatedly-brand__name { font-size: 18px; }
    .repeatedly-menu nav { gap: 0; }
    .repeatedly-nav a { padding: 8px 7px; font-size: 12px; }
    .repeatedly-hero__inner { padding: 40px 18px 58px; }
    .repeatedly-hero h1 { font-size: 39px; }
    .repeatedly-hero__copy { font-size: 15px; line-height: 1.55; }
    body.home > .home_content_contain > .home_content { margin-top: -22px; }
    body.home #test_box-container { width: calc(100% - 24px); }
    .repeatedly-test-intro { align-items: flex-start; flex-direction: column; gap: 16px; padding: 21px 19px 17px; }
    .repeatedly-test-intro h2 { font-size: 23px; }
    .repeatedly-test-type { width: 100%; justify-content: space-between; }
    body.home .test_box { padding: 19px; }
    body.home .input_fields.home_responsive_test_top > li:first-child { flex-direction: column; }
    .repeatedly-start { width: 100%; height: 50px; }
    body.home .test_presets_easy_checks { grid-template-columns: 1fr; }
    body.home .simpleadvancedfields_contain > input + label { padding-right: 7px; }
    body.home .simpleadvancedfields_contain > input + label em { display: block; margin-top: 3px; }
    .repeatedly-benefits { padding: 50px 18px 60px; }
    .repeatedly-benefits__grid { grid-template-columns: 1fr; }
    .repeatedly-footer__inner { align-items: flex-start; flex-direction: column; }
}
