.circler-home {
    --bg: #081015;
    --panel: #101a20;
    --panel-2: #121d24;
    --line: rgba(255, 255, 255, 0.08);
    --line-soft: rgba(255, 255, 255, 0.05);
    --text: #f3f7fb;
    --muted: #8e9ea8;
    --accent: #2fe29d;
    --accent-2: #25c88d;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 0 0, rgba(47, 226, 157, 0.05), transparent 28%),
        linear-gradient(180deg, #071015 0%, #091116 100%);
}

.circler-home *,
.circler-home *::before,
.circler-home *::after { box-sizing: border-box; }
.circler-home a { color: inherit; text-decoration: none; }
.circler-home img { display: block; max-width: 100%; }

.circler-home__shell {
    width: min(1440px, calc(100% - 52px));
    margin: 0 auto;
}

.circler-home__header .circler-home__shell {
    width: calc(100% - 80px);
    max-width: none;
}

.circler-home__header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(8, 16, 21, 0.96);
    border-bottom: 1px solid var(--line-soft);
    backdrop-filter: blur(16px);
}

.circler-home__header-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.circler-home__brand img { width: 156px; }

.circler-home__nav-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.circler-home__nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.circler-home__nav a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 500;
}

.circler-home__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.circler-home__icon-link,
.circler-home__btn {
    min-height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.circler-home__icon-link {
    width: 38px;
    font-size: 16px;
}

.circler-home__btn {
    padding: 0 14px;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.circler-home__btn--sm { min-width: 76px; }

.circler-home__btn--primary {
    color: #07140e;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}

.circler-home__btn--ghost {
    color: #edf8fb;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.circler-home__btn--dark {
    color: #edf7fb;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.circler-home__menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
}

.circler-home__menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
}

.circler-home__main { padding: 18px 0 26px; }

.circler-home__hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.16fr;
    gap: 20px;
    align-items: start;
}

.circler-home__hero-copy {
    padding: 48px 4px 0;
}

.circler-home__hero-copy h1 {
    margin: 0;
    font-size: 50px;
    line-height: 1.08;
    font-weight: 700;
}

.circler-home__hero-title-sub {
    margin: 18px 0 0;
    color: #d5dfe6;
    font-size: 21px;
    line-height: 1.45;
}

.circler-home__hero-desc {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.circler-home__searchbox {
    margin-top: 22px;
    min-height: 56px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    display: grid;
    grid-template-columns: 1fr 56px;
    align-items: center;
    overflow: hidden;
}

.circler-home__searchbox input {
    min-width: 0;
    height: 100%;
    padding: 0 18px;
    border: 0;
    outline: 0;
    color: #edf6fb;
    background: transparent;
    font-size: 14px;
}

.circler-home__searchbox input::placeholder { color: #7e919c; }

.circler-home__searchbox button {
    width: 48px;
    height: 48px;
    margin-right: 8px;
    border: 0;
    border-radius: 10px;
    color: #07140e;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    font-size: 18px;
}

.circler-home__hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.circler-home__btn--hero-primary,
.circler-home__btn--hero-secondary {
    min-width: 128px;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 10px;
    font-size: 14px;
}

.circler-home__btn--hero-primary {
    color: #07140e;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}

.circler-home__btn--hero-secondary {
    color: #f1f7fb;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.circler-home__hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.circler-home__hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.circler-home__hero-stat i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #eaf5fb;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.circler-home__hero-stat strong,
.circler-home__hero-stat span {
    display: block;
}

.circler-home__hero-stat strong {
    font-size: 23px;
    font-weight: 700;
}

.circler-home__hero-stat span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}

.circler-home__hero-media {
    display: grid;
    gap: 12px;
}

.circler-home__hero-featured {
    min-height: 100%;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(16, 25, 31, 0.98) 0%, rgba(12, 21, 27, 0.98) 100%);
    display: flex;
    flex-direction: column;
}

.circler-home__panel {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(180deg, #10191f 0%, #0e171d 100%);
}
.circler-home__workflow-thumb img,
.circler-home__blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circler-home__hero-banner {
    min-height: 100%;
    aspect-ratio: 1.42 / 1;
    border: 1px solid var(--line);
    border-radius: 16px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    position: relative;
    overflow: hidden;
}

.circler-home__hero-banner-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(47, 226, 157, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(8, 16, 21, 0.06), rgba(8, 16, 21, 0.18));
}

.circler-home__section {
    padding-top: 40px;
}

.circler-home__section--last { padding-bottom: 0; }

.circler-home__panel {
    padding: 18px 18px 16px;
}

.circler-home__section-head {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.circler-home__section-head h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.circler-home__section-head a {
    color: #b9cad3;
    font-size: 13px;
    font-weight: 600;
}

.circler-home__section-head--compact {
    margin-bottom: 16px;
    align-items: flex-start;
}

.circler-home__section-sub {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.circler-home__category-grid,
.circler-home__workflow-grid,
.circler-home__resource-grid,
.circler-home__blog-grid,
.circler-home__opus-grid {
    display: grid;
    gap: 12px;
}

.circler-home__category-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.circler-home__workflow-grid,
.circler-home__resource-grid,
.circler-home__blog-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.circler-home__opus-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.circler-home__category-card {
    min-height: 86px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    column-gap: 14px;
    row-gap: 4px;
}

.circler-home__category-card i {
    color: #89d7ff;
    font-size: 36px;
    grid-row: 1 / span 2;
}

.circler-home__category-card strong {
    font-size: 15px;
    font-weight: 600;
    align-self: end;
}

.circler-home__category-card span {
    color: var(--muted);
    font-size: 12px;
    align-self: start;
}

.circler-home__workflow-card,
.circler-home__blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(18, 29, 37, 0.98) 0%, rgba(15, 24, 31, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.circler-home__hero-course-list {
    display: grid;
    gap: 12px;
}

.circler-home__hero-course-card {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.circler-home__hero-course-thumb {
    aspect-ratio: 1.25 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.circler-home__hero-course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circler-home__hero-course-body {
    min-width: 0;
}

.circler-home__hero-course-body strong,
.circler-home__hero-course-body span,
.circler-home__hero-course-body em {
    display: block;
}

.circler-home__hero-course-body strong {
    font-size: 15px;
    line-height: 1.45;
}

.circler-home__hero-course-body span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.circler-home__hero-course-body em {
    margin-top: 10px;
    color: #8fd4a8;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
}

.circler-home__workflow-thumb {
    display: block;
    width: 100%;
    flex: 0 0 auto;
    position: relative;
    aspect-ratio: 1 / 0.58;
    margin: 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.circler-home__badge,
.circler-home__blog-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
}

.circler-home__badge.is-hot { color: #fff; background: #ff554b; }
.circler-home__badge.is-new { color: #152113; background: #a6f26f; }

.circler-home__workflow-body,
.circler-home__blog-body {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    padding: 9px 10px 10px;
}

.circler-home__workflow-body h3,
.circler-home__blog-body h3 {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.circler-home__workflow-body h3 {
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    margin-top: 2px;
    margin-bottom: 2px;
}

.circler-home__blog-body h3 {
    font-size: 15px;
}

.circler-home__workflow-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 10px;
}

.circler-home__workflow-tags span {
    min-height: 18px;
    padding: 0 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: #93a6b0;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    line-height: 1;
}

.circler-home__workflow-meta-row {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8ea1ab;
    font-size: 12px;
}

.circler-home__workflow-author,
.circler-home__workflow-metric,
.circler-home__workflow-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.circler-home__workflow-author {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.circler-home__workflow-author i {
    color: #f2c291;
    font-size: 12px;
}

.circler-home__workflow-metric i {
    color: #8ea1ab;
    font-size: 12px;
}

.circler-home__workflow-rating {
    color: #f0b24a;
    font-weight: 700;
}

.circler-home__workflow-rating i {
    color: #f0b24a;
    font-size: 10px;
}

.circler-home__workflow-footnote {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #7d919c;
    font-size: 12px;
}

.circler-home__workflow-dots {
    width: 38px;
    height: 7px;
    display: inline-block;
    background-repeat: repeat-x;
    background-size: 11px 7px;
    background-position: left center;
}

.circler-home__workflow-dots--green {
    background-image: radial-gradient(circle, #61d97f 34%, transparent 36%);
}

.circler-home__workflow-dots--orange {
    background-image: radial-gradient(circle, #f4aa3f 34%, transparent 36%);
}

.circler-home__workflow-dots--red {
    background-image: radial-gradient(circle, #ff685e 34%, transparent 36%);
}

.circler-home__blog-meta,
.circler-home__node-stats {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9badb8;
    font-size: 12px;
}


.circler-home__resource-card {
    min-height: 96px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
}

.circler-home__resource-card i {
    font-size: 40px;
}

.resource-green { color: #8edfac; }
.resource-yellow { color: #ffd257; }
.resource-purple { color: #b981ff; }
.resource-blue { color: #7db6ff; }
.resource-pink { color: #ff9aa5; }

.circler-home__resource-card strong,
.circler-home__resource-card span,
.circler-home__resource-card em {
    display: block;
}

.circler-home__resource-card strong {
    font-size: 15px;
    font-weight: 600;
}

.circler-home__resource-card span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    max-width: 14em;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.circler-home__resource-card em {
    margin-top: 8px;
    color: #7fdc99;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.circler-home__node-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 12px;
    align-items: stretch;
}

.circler-home__node-sidebar,
.circler-home__node-main {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.circler-home__node-sidebar {
    padding: 12px;
    border-color: rgba(84, 109, 123, 0.42);
    background: linear-gradient(180deg, rgba(15, 27, 35, 0.98) 0%, rgba(11, 21, 28, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.circler-home__node-sidebar a {
    min-height: 38px;
    padding: 0 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #becdd5;
}

.circler-home__node-sidebar a + a { margin-top: 4px; }
.circler-home__node-sidebar a strong { color: #8597a3; font-size: 12px; }
.circler-home__node-sidebar a.is-active { background: rgba(255, 255, 255, 0.04); }

.circler-home__node-main { padding: 12px; }

.circler-home__node-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    margin-bottom: 12px;
}

.circler-home__node-search,
.circler-home__node-toolbar button {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.circler-home__node-search {
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.circler-home__node-search i { color: #7a8d99; }

.circler-home__node-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #eef6fb;
    font-size: 13px;
}

.circler-home__node-toolbar button {
    padding: 0 14px;
    color: #dce6ec;
    font-size: 12px;
}

.circler-home__node-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.circler-home__node-card {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.circler-home__node-card a {
    color: inherit;
}

.circler-home__node-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.circler-home__node-card-head h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.circler-home__node-card-head span {
    min-height: 20px;
    padding: 0 6px;
    border-radius: 6px;
    color: #f4bc46;
    background: rgba(244, 188, 70, 0.12);
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.circler-home__node-card-head .is-red {
    color: #ff786b;
    background: rgba(255, 120, 107, 0.12);
}

.circler-home__node-card p {
    min-height: 58px;
    margin: 10px 0 0;
    color: #d9e4ea;
    font-size: 12px;
    line-height: 1.7;
}

.circler-home__node-meta {
    margin-top: 8px;
    color: var(--muted);
    font-size: 11px;
}

.circler-home__node-stats {
    justify-content: space-between;
}

.circler-home__node-stats span:last-child {
    margin-left: auto;
    text-align: right;
}

.circler-home__node-stats i {
    margin-right: 4px;
}

.circler-home__node-card ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.circler-home__billing-switch {
    min-height: 38px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.circler-home__billing-switch span,
.circler-home__billing-switch em {
    min-height: 28px;
    padding: 0 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-style: normal;
}

.circler-home__billing-switch span { color: #b9cad3; }
.circler-home__billing-switch .is-active {
    color: #07140e;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}
.circler-home__billing-switch em { color: #ef927b; }

.circler-home__pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.circler-home__price-card {
    position: relative;
    padding: 20px 18px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.circler-home__price-card h3 {
    margin: 0;
    font-size: 17px;
}

.circler-home__price {
    margin-top: 14px;
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
}

.circler-home__price span { color: var(--muted); font-size: 18px; }

.circler-home__price-desc {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.circler-home__price-card ul {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.circler-home__price-card li {
    position: relative;
    padding-left: 18px;
    color: #d6e1e8;
    font-size: 13px;
    line-height: 1.85;
}

.circler-home__price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #62df9d;
    font-size: 12px;
}

.circler-home__price-card > a {
    margin-top: 18px;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.circler-home__price-card.is-featured {
    border-color: rgba(47, 226, 157, 0.58);
    box-shadow: 0 0 0 1px rgba(47, 226, 157, 0.08) inset;
}

.circler-home__price-card.is-featured > a {
    color: #07140e;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    border-color: transparent;
}

.circler-home__price-tag {
    position: absolute;
    right: 14px;
    top: 12px;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 6px;
    color: #98ffbe;
    background: rgba(47, 226, 157, 0.12);
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
}

.circler-home__blog-thumb {
    position: relative;
    aspect-ratio: 1.03 / 0.58;
}

.circler-home__opus-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(18, 29, 37, 0.98) 0%, rgba(15, 24, 31, 0.98) 100%);
}

.circler-home__opus-thumb {
    position: relative;
    aspect-ratio: 1 / 1.08;
    overflow: hidden;
}

.circler-home__opus-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circler-home__opus-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 6px;
    background: rgba(8, 16, 21, 0.78);
    color: #f2f8fb;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
}

.circler-home__opus-body {
    padding: 12px;
}

.circler-home__opus-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.circler-home__opus-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.circler-home__opus-author strong {
    font-size: 13px;
}

.circler-home__opus-body h3 {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

.circler-home__opus-foot {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #8b9fa9;
    font-size: 12px;
}

.circler-home__opus-foot .bi-star-fill {
    color: #f0b24a;
}

.circler-home__blog-badge { color: #fff; }
.circler-home__blog-badge.is-teal { background: #2da99a; }
.circler-home__blog-badge.is-slate { background: #47576c; }
.circler-home__blog-badge.is-green { background: #4ba86f; }
.circler-home__blog-badge.is-red { background: #c65758; }
.circler-home__blog-badge.is-light-green { background: #78b66b; }

.circler-home__blog-foot {
    margin-top: 12px;
    color: #8b9fa9;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.circler-home__footer {
    margin-top: 18px;
    padding: 20px 0 24px;
    border-top: 1px solid var(--line-soft);
}

.circler-home__footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 2fr 1fr;
    gap: 36px;
    align-items: start;
}

.circler-home__footer-brand img { width: 126px; }

.circler-home__footer-brand p,
.circler-home__footer-subscribe p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.circler-home__socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.circler-home__socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.circler-home__copyright {
    margin-top: 28px;
    color: #788c98;
    font-size: 12px;
}

.circler-home__copyright a {
    color: inherit;
}

.circler-home__footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.circler-home__footer-links h4,
.circler-home__footer-subscribe h4 {
    margin: 0 0 14px;
    font-size: 16px;
}

.circler-home__footer-links a {
    display: block;
    color: #cad7de;
    font-size: 13px;
}

.circler-home__footer-links span {
    display: block;
    color: #cad7de;
    font-size: 13px;
}

.circler-home__footer-links a + a,
.circler-home__footer-links a + span,
.circler-home__footer-links span + span,
.circler-home__footer-links span + a { margin-top: 8px; }

.circler-home__subscribe-box {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.circler-home__subscribe-box input,
.circler-home__subscribe-box button {
    min-height: 44px;
    border-radius: 10px;
}

.circler-home__subscribe-box input {
    border: 1px solid var(--line);
    padding: 0 14px;
    outline: 0;
    color: #f2f8fb;
    background: rgba(255, 255, 255, 0.02);
}

.circler-home__subscribe-box input::placeholder { color: #71848f; }

.circler-home__subscribe-box button {
    border: 0;
    color: #07140e;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    font-weight: 700;
}

@media (max-width: 1280px) {
    .circler-home__category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .circler-home__workflow-grid,
    .circler-home__resource-grid,
    .circler-home__blog-grid,
    .circler-home__opus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .circler-home__pricing-grid,
    .circler-home__node-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
    .circler-home__shell { width: min(100% - 28px, 1440px); }
    .circler-home__header .circler-home__shell { width: calc(100% - 32px); }
    .circler-home__menu-toggle { display: inline-block; }
    .circler-home__nav-wrap {
        position: absolute;
        top: calc(100% + 8px);
        left: 14px;
        right: 14px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgba(10, 18, 24, 0.98);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }
    .circler-home.is-menu-open .circler-home__nav-wrap { display: flex; }
    .circler-home__nav,
    .circler-home__actions { flex-direction: column; align-items: stretch; }
    .circler-home__hero-grid,
    .circler-home__node-layout,
    .circler-home__footer-grid,
    .circler-home__footer-links { grid-template-columns: 1fr; }
    .circler-home__hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .circler-home__hero-copy { padding-top: 12px; }
    .circler-home__hero-copy h1 { font-size: 36px; }
    .circler-home__hero-title-sub { font-size: 18px; }
    .circler-home__hero-grid,
    .circler-home__category-grid,
    .circler-home__workflow-grid,
    .circler-home__resource-grid,
    .circler-home__pricing-grid,
    .circler-home__blog-grid,
    .circler-home__opus-grid,
    .circler-home__node-grid { grid-template-columns: 1fr; }
    .circler-home__hero-actions { flex-direction: column; }
    .circler-home__btn--hero-primary,
    .circler-home__btn--hero-secondary { width: 100%; }
    .circler-home__hero-stats { grid-template-columns: 1fr; }
    .circler-home__node-toolbar { grid-template-columns: 1fr; }
    .circler-home__hero-course-card { grid-template-columns: 96px minmax(0, 1fr); }
}
