/* ===== Brand System E: Layered Prism ===== */
:root {
    --violet: #8b5cf6;
    --indigo: #6366f1;
    --cyan: #06b6d4;
    --indigo-dark: #4f46e5;
    --violet-soft: #c4b5fd;
    --blue: #3b82f6;
    --obsidian: #0a0e1a;
    --graphite: #111827;
    --onyx: #030712;
    --white: #ffffff;
    --crystal: #faf5ff;
    --fog: #e2e8f0;
    --pewter: #6b7280;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --gradient-depth: linear-gradient(180deg, var(--violet) 0%, var(--indigo) 50%, var(--cyan) 100%);
    --gradient-text: linear-gradient(90deg, var(--violet) 0%, var(--cyan) 100%);
    --gradient-surface: linear-gradient(135deg, rgba(139,92,246,0.05) 0%, rgba(6,182,212,0.05) 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.15), 0 0 60px rgba(99, 102, 241, 0.05);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-400);
    background-color: var(--obsidian);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ===== Utilities ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 7rem 0; }

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: linear-gradient(135deg, var(--indigo) 0%, var(--cyan) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35), var(--shadow-glow);
}

.btn--outline {
    background: transparent;
    color: var(--slate-300);
    border: 1.5px solid var(--slate-700);
}

.btn--outline:hover {
    border-color: var(--violet);
    color: var(--violet-soft);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.05);
}

.btn--full { width: 100%; }

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    padding: 0.7rem 0;
}

.nav { display: flex; align-items: center; justify-content: space-between; }

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
}

.logo-light {
    font-weight: 200;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav__menu { display: flex; align-items: center; gap: 2.25rem; }

.nav__link {
    color: var(--slate-400);
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
    letter-spacing: 0.01em;
}

.nav__link:hover, .nav__link.active { color: var(--white); }

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-depth);
    transition: var(--transition);
}

.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 22px; height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.hero__particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero__container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 2rem;
    font-size: 0.8rem;
    color: var(--violet-soft);
    margin-bottom: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero__badge svg { opacity: 0.8; }

.hero__title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.8px;
}

.hero__description {
    font-size: 1.05rem;
    color: var(--slate-400);
    margin-bottom: 2.25rem;
    max-width: 560px;
    line-height: 1.75;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Prism Animation */
.hero__visual { display: flex; justify-content: center; align-items: center; }

.hero__graphic {
    width: 380px; height: 380px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}

.prism-animation {
    position: relative;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}

.prism-layer {
    position: absolute;
    border: 1.5px solid;
    animation: prism-rotate 20s linear infinite;
}

.prism-layer--1 {
    width: 280px; height: 280px;
    border-color: rgba(139, 92, 246, 0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(139, 92, 246, 0.03);
    animation-duration: 25s;
}

.prism-layer--2 {
    width: 220px; height: 220px;
    border-color: rgba(99, 102, 241, 0.25);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(99, 102, 241, 0.05);
    animation-duration: 20s;
    animation-direction: reverse;
}

.prism-layer--3 {
    width: 160px; height: 160px;
    border-color: rgba(6, 182, 212, 0.35);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(6, 182, 212, 0.06);
    animation-duration: 15s;
}

.prism-layer--4 {
    width: 100px; height: 100px;
    border-color: rgba(99, 102, 241, 0.5);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(180deg, rgba(139,92,246,0.15), rgba(6,182,212,0.15));
    animation-duration: 12s;
    animation-direction: reverse;
}

.prism-core {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4), 0 0 60px rgba(6, 182, 212, 0.2);
    animation: prism-pulse 3s ease-in-out infinite;
}

@keyframes prism-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes prism-pulse { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.2); opacity: 1; } }

/* ===== Section Headers ===== */
.section__header { text-align: center; margin-bottom: 4rem; }

.section__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 2rem;
    font-size: 0.8rem;
    color: var(--violet-soft);
    font-weight: 500;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.section__subtitle svg { opacity: 0.7; }

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* ===== About Section ===== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about__text {
    color: var(--slate-400);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.75;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--graphite);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.03), 0 0 0 6px rgba(6, 182, 212, 0.02);
}

.stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat__label { font-size: 0.75rem; color: var(--pewter); margin-top: 0.25rem; }

.about__cards { display: flex; flex-direction: column; gap: 1.25rem; }

.about__card {
    padding: 1.5rem;
    background: var(--graphite);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: var(--transition);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.about__card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: var(--shadow-glow);
    transform: translateX(4px);
}

.card__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    color: var(--violet-soft);
}

.about__card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.4rem; font-weight: 600; }
.about__card p { color: var(--pewter); font-size: 0.85rem; line-height: 1.6; }

/* ===== Services Section ===== */
.services { background: var(--graphite); }

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service__card {
    padding: 2rem;
    background: var(--obsidian);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: var(--transition);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.02), 0 0 0 6px rgba(6, 182, 212, 0.01);
}

.service__card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.service__icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(6,182,212,0.1));
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    color: var(--violet-soft);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.service__title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service__description {
    color: var(--pewter);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.service__features { display: flex; flex-direction: column; gap: 0.5rem; }

.service__features li {
    color: var(--slate-400);
    font-size: 0.8rem;
    padding-left: 1.25rem;
    position: relative;
}

.service__features li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gradient-depth);
}

/* ===== Process Section ===== */
.process__timeline { max-width: 720px; margin: 0 auto; }

.process__step {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
}

.process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 28px; top: 5rem; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--violet), rgba(6, 182, 212, 0.2));
}

.step__number {
    flex-shrink: 0;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--violet), var(--indigo));
    border-radius: var(--radius-md);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1), 0 0 0 8px rgba(99, 102, 241, 0.05);
}

.step__content h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.5rem; font-weight: 600; }
.step__content p { color: var(--pewter); font-size: 0.9rem; line-height: 1.7; }

/* ===== Contact Section ===== */
.contact { background: var(--graphite); }

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__info h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 1rem; font-weight: 600; }
.contact__info > p { color: var(--slate-400); margin-bottom: 2rem; line-height: 1.7; }

.contact__details { display: flex; flex-direction: column; gap: 1.5rem; }

.contact__item { display: flex; gap: 1rem; align-items: flex-start; }

.contact__icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(139, 92, 246, 0.08);
    border-radius: var(--radius-md);
    color: var(--violet-soft);
}

.contact__item strong { color: var(--white); display: block; margin-bottom: 0.2rem; font-size: 0.9rem; }
.contact__item p { color: var(--pewter); font-size: 0.875rem; }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }

.form__group label {
    display: block;
    color: var(--slate-300);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--obsidian);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--slate-700); }

.form__group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form__group textarea { resize: vertical; min-height: 110px; }

/* ===== Footer ===== */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.08);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand p { color: var(--pewter); margin-top: 1rem; font-size: 0.875rem; max-width: 300px; line-height: 1.65; }

.footer__links h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 1rem; font-weight: 600; }
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a { color: var(--pewter); font-size: 0.85rem; }
.footer__links a:hover { color: var(--violet-soft); }

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    text-align: center;
}

.footer__bottom p { color: var(--slate-700); font-size: 0.8rem; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero__title { font-size: 2.75rem; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav__toggle { display: flex; }

    .nav__menu {
        position: fixed;
        top: 0; right: -100%;
        width: 70%; height: 100vh;
        background: var(--graphite);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: var(--transition);
        border-left: 1px solid rgba(139, 92, 246, 0.1);
    }

    .nav__menu.active { right: 0; }

    .hero__container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero__title { font-size: 2.25rem; }
    .hero__description { margin: 0 auto 2rem; }
    .hero__actions { justify-content: center; }
    .hero__visual { order: -1; }
    .hero__graphic { width: 260px; height: 260px; }

    .about__grid { grid-template-columns: 1fr; gap: 3rem; }
    .about__stats { grid-template-columns: repeat(3, 1fr); }
    .services__grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
    .section__title { font-size: 1.85rem; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 1.75rem; }
    .about__stats { grid-template-columns: 1fr; }
    .section { padding: 4.5rem 0; }
    .hero__badge { font-size: 0.7rem; }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for layered reveal */
.fade-in:nth-child(1) { transition-delay: 0ms; }
.fade-in:nth-child(2) { transition-delay: 50ms; }
.fade-in:nth-child(3) { transition-delay: 100ms; }
.fade-in:nth-child(4) { transition-delay: 150ms; }
.fade-in:nth-child(5) { transition-delay: 200ms; }
.fade-in:nth-child(6) { transition-delay: 250ms; }

/* ===== iOS App Development Section ===== */
.ios { background: var(--obsidian); }

.section__description {
    max-width: 680px;
    margin: 1rem auto 0;
    color: var(--slate-400);
    font-size: 1rem;
    line-height: 1.7;
}

.ios__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.ios__heading {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ios__heading svg { color: var(--violet-soft); }

.ios__timeline { display: flex; flex-direction: column; gap: 1.5rem; }

.ios__item {
    padding: 1.5rem;
    background: var(--graphite);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: var(--transition);
}

.ios__item:hover {
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: var(--shadow-glow);
}

.ios__status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.ios__status--active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.ios__status--planned {
    background: rgba(139, 92, 246, 0.1);
    color: var(--violet-soft);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.ios__item h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ios__item p {
    color: var(--pewter);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.ios__tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.ios__tech span {
    padding: 0.2rem 0.6rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--cyan);
    font-weight: 500;
}

.ios__capabilities { display: flex; flex-direction: column; }

.ios__cap-list { display: flex; flex-direction: column; gap: 1.25rem; }

.ios__cap {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--graphite);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: var(--transition);
}

.ios__cap:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateX(3px);
}

.ios__cap-icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    border-radius: var(--radius-sm);
    color: var(--violet-soft);
}

.ios__cap strong {
    color: var(--white);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

.ios__cap p {
    color: var(--pewter);
    font-size: 0.8rem;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .ios__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== About Section — Vision, Mission, Cards Update ===== */
.about__vision,
.about__mission {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--graphite);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.about__vision h3,
.about__mission h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about__vision p {
    color: var(--slate-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about__mission ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.about__mission ul li {
    color: var(--slate-400);
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
}

.about__mission ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-depth);
}

.about__cards-heading {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about__card h3 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.about__card p {
    color: var(--pewter);
    font-size: 0.82rem;
    line-height: 1.6;
}
