/* mindsquare Codex — Custom Landing Page Styles
   Brand colors: --primary:#ea5b0b (Orange), --secondary:#fdc300 (Gold)
   Source: mindsquare.de
*/

:root {
    --msq-primary: #ea5b0b;
    --msq-primary-hover: #c44a07;
    --msq-secondary: #fdc300;
    --msq-secondary-hover: #f6ba00;
    --msq-text: #565656;
    --msq-text-light: #777;
    --msq-bg: #fff;
    --msq-bg-soft: #f8f9fa;
    --msq-border: #e8e8ec;
}

.msq-home {
    background: var(--msq-bg);
    color: var(--msq-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 0 !important;
}

/* HERO */
.msq-hero {
    background: linear-gradient(135deg, #fff 0%, var(--msq-bg-soft) 100%);
    padding: 96px 24px 80px;
    text-align: center;
    border-bottom: 4px solid var(--msq-primary);
    margin-bottom: 0;
}
.msq-hero-inner {
    max-width: 880px;
    margin: 0 auto;
}
.msq-hero-title {
    font-size: 64px;
    line-height: 1.05;
    margin: 0 0 24px;
    font-weight: 300;
    letter-spacing: -1px;
}
.msq-hero-brand {
    color: var(--msq-text);
    font-weight: 300;
}
.msq-hero-product {
    color: var(--msq-primary);
    font-weight: 700;
    margin-left: 0.25em;
}
.msq-hero-tagline {
    font-size: 22px;
    line-height: 1.55;
    color: var(--msq-text);
    margin: 0 auto 40px;
    max-width: 720px;
    font-weight: 400;
}
.msq-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.msq-hero-aux {
    margin-top: 28px;
    color: var(--msq-text-light);
    font-size: 16px;
}
.msq-hero-aux a {
    color: var(--msq-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed var(--msq-primary);
}
.msq-hero-aux a:hover {
    border-bottom-style: solid;
}

/* BUTTONS */
.msq-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    border: none;
    line-height: 1.4;
}
.msq-btn:hover {
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.msq-btn-primary {
    background: var(--msq-primary);
    color: #fff !important;
}
.msq-btn-primary:hover {
    background: var(--msq-primary-hover);
    color: #fff !important;
}
.msq-btn-secondary {
    background: var(--msq-secondary);
    color: var(--msq-text) !important;
}
.msq-btn-secondary:hover {
    background: var(--msq-secondary-hover);
    color: var(--msq-text) !important;
}

/* FEATURES */
.msq-features {
    padding: 80px 24px;
    background: var(--msq-bg);
}
.msq-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.msq-feature {
    text-align: center;
    padding: 40px 28px;
    border-radius: 10px;
    background: var(--msq-bg-soft);
    border: 1px solid var(--msq-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.msq-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: var(--msq-primary);
}
.msq-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--msq-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.msq-feature-icon svg {
    width: 48px;
    height: 48px;
}
.msq-feature h3 {
    font-size: 22px;
    color: var(--msq-text);
    margin: 0 0 12px;
    font-weight: 600;
}
.msq-feature p {
    color: var(--msq-text);
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

/* QUICKLINKS */
.msq-quicklinks {
    background: var(--msq-bg-soft);
    padding: 64px 24px 80px;
    text-align: center;
    border-top: 1px solid var(--msq-border);
}
.msq-quicklinks-inner {
    max-width: 760px;
    margin: 0 auto;
}
.msq-quicklinks h2 {
    color: var(--msq-text);
    font-size: 28px;
    margin: 0 0 28px;
    font-weight: 600;
}
.msq-quicklinks ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.msq-quicklinks ul li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--msq-text);
    font-size: 16px;
    line-height: 1.55;
    border-bottom: 1px solid var(--msq-border);
}
.msq-quicklinks ul li:last-child {
    border-bottom: none;
}
.msq-quicklinks ul li::before {
    content: "▸";
    color: var(--msq-primary);
    position: absolute;
    left: 8px;
    font-weight: bold;
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 720px) {
    .msq-hero { padding: 56px 20px 48px; }
    .msq-hero-title { font-size: 44px; }
    .msq-hero-tagline { font-size: 18px; }
    .msq-hero-cta { flex-direction: column; align-items: stretch; }
    .msq-btn { padding: 14px 22px; }
    .msq-features { padding: 48px 16px; }
    .msq-quicklinks { padding: 48px 16px; }
}
