
@import url(fonts.css);
#logopng{
    height:32px;margin-top:5px;
    margin-left: auto;
    margin-right: auto;
}
:root {
    --rose-gold: #C9956A;
    --rose-gold-light: #E8C4A0;
    --rose-gold-pale: #F5E6D8;
    --crimson: #8B1A1A;
    --crimson-deep: #5C0F0F;
    --slate: #3D4553;
    --slate-mid: #5A6270;
    --dark: #0D0D0D;
    --dark2: #141414;
    --dark3: #1C1A18;
    --off-white: #F9F5F0;
    --muted: #7A7570;
    --gold-line: linear-gradient(90deg, transparent, #C9956A, transparent);
}

html,
body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--dark);
    color: var(--off-white);
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 300;
    cursor: none;
    direction: rtl;
    text-align: right;
    line-height: 1.9
}


/* CURSOR */

.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--rose-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform .1s, width .2s, height .2s
}

.cursor-ring {
    position: fixed;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 149, 106, .4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all .18s ease
}


/* NAV */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(13, 13, 13, .95) 0%, transparent 100%);
    backdrop-filter: blur(2px)
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: .5px
}


.nav-logo .r {
    color: var(--crimson)
}

.nav-logo .dot {
    color: var(--rose-gold)
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    flex-direction: row-reverse
}

.nav-links a {
    font-size: 13px;
    letter-spacing: 0;
    color: rgba(249, 245, 240, .6);
    text-decoration: none;
    transition: color .3s;
    font-family: 'Vazirmatn', sans-serif
}

.nav-links a:hover {
    color: var(--rose-gold)
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--rose-gold);
    color: var(--rose-gold);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 11px;
    letter-spacing: 0;
    padding: 10px 24px;
    cursor: none;
    transition: all .3s
}

.nav-cta:hover {
    background: var(--rose-gold);
    color: var(--dark)
}


/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 60px
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 40% 50%, rgba(139, 26, 26, .12) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 20% 30%, rgba(201, 149, 106, .07) 0%, transparent 50%), var(--dark);
    z-index: 0
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 149, 106, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 149, 106, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px
}

.hero-eyebrow {
    font-size: 16px;
    letter-spacing: 0;
    color: var(--rose-gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: row-reverse;
    justify-content: flex-end
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--rose-gold)
}

.hero-title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 32px
}

.hero-title em {
    font-style: normal;
    color: var(--rose-gold)
}

.hero-title .r {
    color: var(--crimson)
}

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(249, 245, 240, .6);
    line-height: 2;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end
}

.btn-primary {
    background: linear-gradient(135deg, var(--crimson), var(--rose-gold));
    color: #fff;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 13px;
    padding: 16px 36px;
    border: none;
    cursor: none;
    transition: opacity .3s
}

.btn-primary:hover {
    opacity: .85
}

.btn-ghost {
    color: var(--rose-gold-light);
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px
}

.btn-ghost::before {
    content: '↙';
    font-size: 16px;
    transition: transform .3s
}

.btn-ghost:hover::before {
    transform: translate(-2px, 2px)
}

.hero-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    z-index: 1
}

.hero-orb {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 1px solid rgba(201, 149, 106, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: auto;
    animation: orbit 20s linear infinite
}

.hero-orb::before {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(139, 26, 26, .2)
}

.hero-orb::after {
    content: '';
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 26, 26, .18), rgba(201, 149, 106, .08), transparent);
    animation: pulse 4s ease-in-out infinite
}

@keyframes orbit {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: .6;
        transform: scale(.95)
    }
    50% {
        opacity: 1;
        transform: scale(1.05)
    }
}

.orb-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--rose-gold);
    border-radius: 50%
}

.orb-dot:nth-child(1) {
    top: 10%;
    left: 50%;
    transform: translateX(-50%)
}

.orb-dot:nth-child(2) {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%)
}

.orb-dot:nth-child(3) {
    left: 10%;
    top: 50%;
    transform: translateY(-50%)
}

.orb-dot:nth-child(4) {
    right: 10%;
    top: 50%;
    transform: translateY(-50%)
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 60px;
    z-index: 2;
    flex-direction: row-reverse
}

.stat {
    border-right: 1px solid rgba(201, 149, 106, .3);
    padding-right: 20px
}

.stat-val {
    font-family: 'Vazirmatn', sans-serif;
    ;
    font-size: 36px;
    font-weight: 300;
    color: var(--rose-gold-light);
    direction: ltr;
    text-align: right
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    text-align: right
}


/* DIVIDER */

.gold-divider {
    height: 1px;
    background: var(--gold-line);
    margin: 0
}


/* SECTION BASE */

section {
    padding: 120px 60px
}

.section-eyebrow {
    font-size: 12px;
    letter-spacing: 0;
    color: var(--rose-gold);
    margin-bottom: 12px
}

.section-title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-sub {
    font-size: 15px;
    color: rgba(249, 245, 240, .55);
    line-height: 2;
    max-width: 560px
}


/* ABOUT */

.about {
    background: var(--dark2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-card {
    background: rgba(201, 149, 106, .04);
    border: 1px solid rgba(201, 149, 106, .12);
    padding: 40px;
    position: relative
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--rose-gold)
}

.about-card-icon {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--rose-gold)
}

.about-card h3 {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--rose-gold-light)
}

.about-card p {
    font-size: 14px;
    color: rgba(249, 245, 240, .55);
    line-height: 2
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}


/* EDGE */

.edge {
    background: var(--dark3)
}

.edge-inner {
    max-width: 1200px;
    margin: 0 auto
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid rgba(201, 149, 106, .1);
    margin-top: 60px
}

.edge-item {
    padding: 44px 36px;
    background: var(--dark3);
    position: relative;
    transition: background .3s;
    right: 10px;
}

.edge-item:hover {
    background: rgba(201, 149, 106, .04)
}

.edge-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-line)
}

.edge-num {
    font-family: 'Vazirmatn', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(255, 175, 109, 0. 5);
    margin-bottom: 16px;
    direction: rtl;
    text-align: right
}

.edge-item h3 {
    font-size: 14px;
    color: var(--rose-gold-light);
    margin-bottom: 12px;
    font-weight: 500
}

.edge-item p {
    font-size: 14px;
    color: rgba(249, 245, 240, .5);
    line-height: 2
}


/* FOUNDER */

.founder {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 100px;
    align-items: center
}

.founder-img-wrap {
    position: relative
}

.founder-frame {
    width: 380px;
    height: 460px;
    background: linear-gradient(135deg, rgba(139, 26, 26, .15), rgba(201, 149, 106, .08));
    border: 1px solid rgba(201, 149, 106, .2);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-right: auto
}

.founder-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(201, 149, 106, .1), transparent)
}

.founder-initials {
    font-family: 'Vazirmatn', serif;
    font-size: 120px;
    font-weight: 300;
    color: rgba(201, 149, 106, .12);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap
}

.founder-name-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(13, 13, 13, .95), transparent)
}

.founder-name {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 20px;
    font-weight: 400
}

.founder-role {
    font-size: 12px;
    color: var(--rose-gold);
    margin-top: 4px
}

.founder-corner {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 60px;
    height: 60px;
    background: var(--crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    text-align: center;
    line-height: 1.6;
    font-family: 'Vazirmatn', sans-serif
}

.cred-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px
}

.cred {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cred-dot {
    width: 6px;
    height: 6px;
    background: var(--rose-gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0
}

.cred-text {
    font-size: 15px;
    color: rgba(249, 245, 240, .7);
    line-height: 1.9
}

.cred-text strong {
    color: var(--rose-gold-light);
    font-weight: 500;
    display: block;
    margin-bottom: 4px
}


/* CHARTS */

.charts-section {
    background: var(--dark2)
}

.charts-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 70px
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.chart-card {
    background: rgba(13, 13, 13, .8);
    border: 1px solid rgba(201, 149, 106, .1);
    padding: 28px 24px;
    position: relative;
    transition: border-color .3s
}

.chart-card:hover {
    border-color: rgba(201, 149, 106, .3)
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-direction: row-reverse
}

.chart-name {
    font-size: 13px;
    color: var(--rose-gold-light)
}

.chart-badge {
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(201, 149, 106, .1);
    color: var(--rose-gold);
    border-radius: 0;
    direction: ltr
}

.chart-badge.pos {
    background: rgba(34, 197, 94, .08);
    color: #4ade80
}

.chart-badge.neg {
    background: rgba(239, 68, 68, .08);
    color: #f87171
}

.chart-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(201, 149, 106, .08);
    flex-direction: row-reverse
}

.chart-metric {
    text-align: center
}

.chart-metric-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--off-white);
    direction: ltr
}

.chart-metric-lbl {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px
}

.portfolio-card {
    grid-column: -1/1;
    background: linear-gradient(135deg, rgba(139, 26, 26, .1), rgba(201, 149, 106, .06));
    border: 1px solid rgba(201, 149, 106, .25);
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin-top: 20px
}

.portfolio-title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: var(--rose-gold-light);
    margin-bottom: 8px
}

.portfolio-sub {
    font-size: 13px;
    color: rgba(249, 245, 240, .5);
    margin-bottom: 24px
}

.portfolio-metrics {
    display: flex;
    gap: 40px;
    flex-direction: row-reverse
}

.p-metric-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    color: var(--off-white);
    direction: ltr
}

.p-metric-lbl {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px
}


/* COMMITMENT */

.commitment {
    background: var(--dark3)
}

.commit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid rgba(201, 149, 106, .08);
    margin-top: 60px
}

.commit-item {
    padding: 40px 28px;
    background: var(--dark3);
    text-align: center
}

.commit-icon {
    font-size: 32px;
    margin-bottom: 20px
}

.commit-title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--rose-gold-light);
    margin-bottom: 12px
}

.commit-desc {
    font-size: 13px;
    color: rgba(249, 245, 240, .5);
    line-height: 2
}


/* PROCESS */

.process {
    background: var(--dark)
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 70px;
    position: relative
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--gold-line)
}

.step {
    text-align: center;
    padding: 0 16px
}

.step-num {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(201, 149, 106, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 20px;
    color: var(--rose-gold);
    background: var(--dark);
    position: relative;
    z-index: 1
}

.step h4 {
    font-size: 13px;
    color: var(--rose-gold-light);
    margin-bottom: 10px;
    font-weight: 500
}

.step p {
    font-size: 13px;
    color: rgba(249, 245, 240, .45);
    line-height: 2
}


/* PRICING */
.cta-section {
    background: var(--dark2)
}
.pricing {
    background: var(--dark2)
}

.pricing-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.pricing-card {
    background: linear-gradient(135deg, rgba(139, 26, 26, .08), rgba(201, 149, 106, .05));
    border: 1px solid rgba(201, 149, 106, .2);
    padding: 60px;
    margin-top: 60px;
    position: relative
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--crimson), var(--rose-gold))
}

.pricing-tag {
    font-size: 12px;
    color: var(--rose-gold);
    margin-bottom: 16px
}

.pricing-headline {
    font-family: 'Vazirmatn', sans-serif;
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 200;
    margin-bottom: 16px;
    color: var(--off-white);
    line-height: 1.6
}

.pricing-note {
    font-size: 15px;
    color: rgba(249, 245, 240, .5);
    margin-bottom: 48px;
    line-height: 2
}

.pricing-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: right;
    margin-bottom: 48px
}

.pricing-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: rgba(201, 149, 106, .04);
    border-right: 2px solid var(--rose-gold);
    flex-direction: column
}

.pricing-point p {
    font-size: 14px;
    color: rgba(249, 245, 240, .65);
    line-height: 2
}

.pricing-point strong {
    color: var(--rose-gold-light);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    font-size: 13px
}


/* CTA */

.cta-section {
    background: linear-gradient(135deg, var(--crimson-deep), var(--dark3), var(--dark));
    padding: 140px 60px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 149, 106, .08), transparent)
}

.cta-title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 200;
    margin-bottom: 24px;
    line-height: 1.4
}

.cta-title em {
    font-style: normal;
    color: var(--rose-gold)
}

.cta-sub {
    font-size: 16px;
    color: rgba(249, 245, 240, .55);
    margin-bottom: 52px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2
}

.cta-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 32px;
    flex-direction: row-reverse
}

.cta-form input {
    flex: 1;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(201, 149, 106, .2);
    color: var(--off-white);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
    padding: 16px 24px;
    outline: none;
    text-align: right
}

.cta-form input::placeholder {
    color: rgba(249, 245, 240, .3)
}

.cta-form button {
    background: linear-gradient(135deg, var(--crimson), var(--rose-gold));
    color: #fff;
    border: none;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 13px;
    padding: 16px 28px;
    cursor: none;
    white-space: nowrap
}

.cta-location {
    font-size: 12px;
    color: rgba(249, 245, 240, .3);
    letter-spacing: 1px;
    direction: ltr
}


/* FOOTER */

footer {
    background: var(--dark);
    border-top: 1px solid rgba(201, 149, 106, .1);
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 16px;
    direction: ltr;
    text-align: right
}

.footer-brand .r {
    color: var(--crimson)
}

.footer-brand .dot {
    color: var(--rose-gold)
}

.footer-desc {
    font-size: 13px;
    color: rgba(249, 245, 240, .4);
    line-height: 2;
    max-width: 260px
}

.footer-col h4 {
    font-size: 12px;
    color: var(--rose-gold);
    margin-bottom: 24px;
    font-weight: 500
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-col a {
    font-size: 13px;
    color: rgba(249, 245, 240, .45);
    text-decoration: none;
    transition: color .3s
}

.footer-col a:hover {
    color: var(--rose-gold-light)
}

.footer-bottom {
    border-top: 1px solid rgba(201, 149, 106, .08);
    padding: 24px 60px;
    text-align: center
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(249, 245, 240, .25)
}


/* ANIMATIONS */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}


/* SCROLLBAR */

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: var(--dark)
}

::-webkit-scrollbar-thumb {
    background: var(--rose-gold)
}

@media(max-width:900px) {
    nav {
        padding: 20px 24px
    }
    .nav-links {
        display: none
    }
    .hero {
        padding: 0 24px
    }
    .hero-stats {
        right: 24px;
        gap: 28px
    }
    section {
        padding: 80px 24px
    }
    .about,
    .founder,
    .charts-intro {
        grid-template-columns: 1fr
    }
    .edge-grid,
    .commit-grid {
        grid-template-columns: 1fr 1fr
    }
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }
    .process-steps::before {
        display: none
    }
    footer {
        grid-template-columns: none;
        padding: 40px 24px
    }
    .cta-section {
        padding: 80px 24px
    }
    .cta-form {
        flex-direction: column
    }
    .portfolio-card {
        grid-template-columns: 1fr
    }
}

.highcharts-figure {
    height: 400px;
    width: 90%;
    margin: 1em auto;
}

.commitment .contains {
    display: block;
    min-height: 550px;
}

#ips_desc {
    float: right;
    width: 50%;
    height: 600px;
    padding: 40px
}

#ips {
    float: left;
    width: 50%;
    height: 600px;
    padding: 30px
}

.containx {
    width: 100%;
}

@media(min-width:1280px) {
    .containx {
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
    }
    .hero-left {
        left: 10%;
    }
    .cpx {
        position: absolute;
        top: 10px;
        left: 5%;
        width: 70%;
    }
    .grpahs_descs {
        position: relative;
        min-height: 660px;
    }
}

@media(min-width:1080px) {
    .hero-left {
        position: absolute;
        left: 2%;
    }
}



#logopng{
    height:36px;margin-top:5px
}

#comparisions{
    width:100%; padding-right:15%; height:500px
}


@media(max-width:860px) {
  .highcharts-exporting-group, .highcharts-credits,  .highcharts-linear-series, .highcharts-data-label-color-0 > rect{
    display: none;
    opacity: 0;
}
    .highcharts-label .highcharts-data-label .highcharts-data-label-color-0 > rect{
        height: 100px !important;
       display: none !important;
       color: red !important;
    }
    .nav-logo{
        width: 100%;
        text-align: center;
        
    }
    .charts-intro{
        flex: none;
        width: 100%;
        padding: 5%;
        transform:none !important;
        display: block;
    }
    .charts-intro .section-eyebrow{
        margin-top:40px;
        
    }
    .commitment{
        box-sizing: border-box;
        padding:0;
        min-height: 1000px !important;
        
    }
    #ips_desc{
        padding: 10px;
        height:auto;
    }
    #algorithms{
        padding: 0;
    }
    #comparisions{
        width:390px; padding-right:0%; height:600px
    }
    
    .hero-sub{
        font-size: small;
        
    }
    .hero-content{
        display: block;
        float: none;
        top:220px;
        min-height: auto !important;
        
    }
    
    #logopng{
        height:32px;
         margin-top:5px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-left-mobile{
        top:700px
        
    }
    
    #EA_Count_container, #hourly-heatmap{
        width:390px !important;
    }
    .hero-left {
        
        
        display: block;
        right: 2px;
        z-index: 4;
        display: block;
        float: right;
        transform: translateY(-80%);
        min-width: 400px;
        float: none;
    }
    
    
    /* herosss go to max-width:100% */
    .charts-grid {
        grid-template-columns: repeat(1, 6fr)
    }
    .portfolio-card {
        grid-template-columns: 1fr 2fr;
        gap: 20px;
        margin-top: 10px
    }
    .edge-item,
    .about-card {
        padding: 10px;
        width: 100%;
        float: right
    }
    .edge-grid,
    .about-cards,
    .commit-grid,
    .process-steps {
        grid-template-columns: none;
        gap: 10px;
        width: 100%
    }
    .portfolio-metrics,
    .hero-stats,
    .chart-meta {
        grid-template-columns: 2fr 2fr;
        display: grid;
        gap: 10px
    }
    .cpx {
        position: relative;
        right: 0;
        margin-top: 30px;
    }
    footer {
        grid-template-columns: none;
    }
    .founder-frame {
        width: 90%;
    }
    .nav-cta {
        display: none;
    }
    .chart-header {
        display: inline;
    }
    .chart-card {
        max-width: 700px;
    }
    .hero-content {
        display: block;
        float: right;
        margin-top: 100px;
        width: 100%;
    }
    
    .hero-sub {
        margin-bottom: 10px
    }
    /* .portfolio-metrics , .portfolio-title , .portfolio-sub,.cp{width:  100%;   display: block; right: 5%; } */
    .hero {
        display: block;
        align-items: center;
        position: relative;
        padding: 0 15px;
        width: 100%;
    }
    .highcharts-figure {
        padding-top: 30px;
        margin: 0 !important;
    }
    .stat-val {
        line-height: 1;
    }
    .stat-label {
        margin-top: 0;
        line-height: 1;
        padding-top: 0;
        margin: 1em auto;
    }
    .grpahs_descs {
        grid-template-columns: none;
        padding: 16px;
        ;
    }
    .cp {
        height: 400px;
    }
    #ips_desc,
    #ips {
        width: 100%;
        display: block;
        float: right;
    }
    .commitment .contains {
        display: block;
        min-height: auto;
    }
    .pricing-card {
        padding: 20px;
    }
    .pricing-points {
        grid-template-columns: none;
    }
}

@media(min-width:760px) and (max-width:1080px) {
    
    .charts-grid {
        display: grid;
        grid-template-columns: repeat(1, 3fr);
        gap: 20px
    }
}

.highcharts-subtitle,
.highcharts-title {
    right: 30px !important;
    font-family: 'Vazirmatn', sans-serif;
}

.user-stats .stat {
    width: 50%;
    float: right;
    font-family: 'Vazirmatn', sans-serif;
}

.texty_items .commit-title {
    line-height: 1;
    margin-bottom: 0px;
    margin-top: 10px
}

.texty_items .commit-desc {
    line-height: 1;
    padding: 10px
}

.highcharts-description {
    margin: 0.3rem 10px;
}

g * {
    font-family: 'Vazirmatn', sans-serif;
}

input[type="month"]::-webkit-calendar-picker-indicator {
    font-size: x-large;
    background-color: wheat;
}

#ea_table {
    width: 100%;
    direction: ltr;
    text-align: left;
    border-spacing: 2px;
    box-sizing: border-box;
    text-indent: 0;
    font-size: large;
}

#ea_table thead {
    border-block-end: 2px solid;
    background: rgb(51, 44, 2);
}

tbody tr:nth-child(even) {
    background: rgba(71, 61, 0, 0.288);
}

#ea_table td,
#ea_table th {
    padding-left: 10px
}

