:root{
  --bg:#050505;
  --bg-soft:#0b0d12;
  --panel:#101010;
  --panel-2:#141414;
  --panel-3:#181818;

  --line:rgba(255,255,255,.08);
  --line-2:rgba(255,255,255,.14);

  --text:#ffffff;
  --muted:#a8a8a8;
  --muted-2:#cfcfcf;

  --blue:#2f7cff;
  --blue-2:#5ca3ff;
  --blue-3:#193b78;

  --wolt:#12b5ff;
  --glovo:#ffd33d;
  --uber:#1ed760;
  --bolt:#2fd36b;
  --stuart:#4c80ff;

  --green:#2fe870;
  --red:#ff6666;
  --orange:#ffb25c;

  --radius-xl:32px;
  --radius-lg:26px;
  --radius-md:20px;
  --radius-sm:16px;

  --shadow:0 20px 60px rgba(0,0,0,.35);
  --shadow-soft:0 12px 28px rgba(0,0,0,.22);

  --safe-bottom:env(safe-area-inset-bottom, 0px);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  color:var(--text);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(24,63,128,.22), transparent 45%),
    radial-gradient(1000px 480px at 100% 0%, rgba(20,54,112,.16), transparent 48%),
    linear-gradient(180deg,#050505 0%, #06090f 100%);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input{
  font:inherit;
}

.hidden{
  display:none !important;
}

.edPage{
  width:100%;
}

.edWrap{
  width:100%;
  max-width:none;
  padding:26px 34px 110px;
}

/* menu buttons */

.edMenuBtn,
.edProfileBtn{
  position:fixed;
  top:14px;
  z-index:9998;
  height:48px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(20,20,20,.88);
  backdrop-filter:blur(12px);
  box-shadow:0 10px 25px rgba(0,0,0,.24);
}

.edMenuBtn{
  right:14px;
  width:48px;
  display:grid;
  place-items:center;
  color:#fff;
  cursor:pointer;
}

.edMenuIco{
  font-size:18px;
  line-height:1;
  font-weight:900;
}

.edProfileBtn{
  right:72px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0 16px;
  color:#fff;
}

.edProfileTxt{
  font-weight:800;
  font-size:13px;
}

/* menu */

.edMenuOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  backdrop-filter:blur(5px);
  z-index:9997;
}

.edMenu{
  position:fixed;
  top:14px;
  right:14px;
  width:min(360px, calc(100vw - 28px));
  max-height:calc(100vh - 28px);
  overflow:auto;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  background:#101010;
  box-shadow:0 24px 70px rgba(0,0,0,.45);
  z-index:9999;
}

.edMenuHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.edMenuBrand{
  display:flex;
  align-items:center;
  gap:10px;
}

.edMenuMark{
  width:38px;
  height:38px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  font-weight:1000;
  color:#fff;
}

.edMenuTitle{
  font-size:15px;
  font-weight:900;
}

.edMenuClose{
  width:38px;
  height:38px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:#181818;
  color:#fff;
  cursor:pointer;
}

.edMenuNav{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:14px;
}

.edMenuLink{
  border:1px solid rgba(255,255,255,.08);
  background:#171717;
  min-height:46px;
  padding:0 14px;
  border-radius:14px;
  display:flex;
  align-items:center;
  color:#fff;
  font-weight:800;
  font-size:14px;
}

.edMenuSep{
  height:1px;
  background:rgba(255,255,255,.08);
  margin:6px 0;
}

.edMenuFoot{
  padding:14px;
  border-top:1px solid rgba(255,255,255,.08);
}

.edMenuSmall{
  color:var(--muted);
  font-size:12px;
}

html.edMenuOpen{
  overflow:hidden;
}

/* top */

.edTopBar{
  width:100%;
  margin-bottom:22px;
}

.edTopBarInner{
  width:100%;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(90deg, rgba(19,46,93,.30) 0%, rgba(8,8,8,.0) 55%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  padding:32px;
  box-shadow:var(--shadow-soft);
  display:flex;
  justify-content:space-between;
  gap:26px;
  align-items:flex-start;
}

.edTopLeft{
  min-width:0;
}

.edEyebrow{
  color:#8ab8ff;
  font-size:12px;
  font-weight:1000;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.edTitle{
  margin-top:10px;
  font-size:58px;
  line-height:.95;
  font-weight:1000;
  letter-spacing:-.05em;
  max-width:820px;
}

.edLead{
  margin-top:16px;
  max-width:800px;
  font-size:19px;
  line-height:1.6;
  color:var(--muted);
}

.edTopActions{
  display:flex;
  gap:12px;
  flex-shrink:0;
  flex-wrap:wrap;
  justify-content:flex-end;
  margin-top:86px;
}

.edTopBtn{
  min-height:50px;
  padding:0 18px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:14px;
  border:1px solid rgba(255,255,255,.10);
  transition:.18s ease;
}

.edTopBtnGhost{
  background:#121212;
}

.edTopBtnGhost:hover,
.edTopBtnPrimary:hover{
  transform:translateY(-1px);
}

.edTopBtnPrimary{
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  color:#fff;
  box-shadow:0 12px 28px rgba(47,124,255,.22);
  border:0;
}

/* range bar */

.edRangeBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
  flex-wrap:wrap;
}

.edRangeTabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.edRangeTab{
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:#121212;
  color:#fff;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition:.18s ease;
}

.edRangeTab.isActive{
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  border-color:transparent;
}

.edCustomRange{
  display:flex;
  align-items:flex-end;
  gap:12px;
  flex-wrap:wrap;
}

.edField{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.edFieldWide{
  grid-column:1 / -1;
}

.edFieldLabel{
  font-size:12px;
  font-weight:800;
  color:var(--muted);
}

.edInput{
  min-height:46px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:#151515;
  color:#fff;
  outline:none;
}

.edInput:focus{
  border-color:rgba(92,163,255,.55);
  box-shadow:0 0 0 3px rgba(92,163,255,.16);
}

.edApplyBtn{
  min-height:46px;
  padding:0 16px;
  border-radius:14px;
  border:0;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

/* main layout */

.edMainGrid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:22px;
  align-items:start;
}

.edMainCol,
.edSideCol{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* hero */

.edHeroCard{
  border-radius:32px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(135deg, rgba(25,59,120,.26), rgba(16,16,16,.96) 42%),
    #101010;
  padding:24px;
  box-shadow:var(--shadow-soft);
}

.edHeroTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.edHeroOverline{
  color:#8ab8ff;
  font-size:12px;
  font-weight:1000;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.edHeroRange{
  margin-top:8px;
  font-size:28px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.03em;
}

.edHeroBadges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.edHeroBadge{
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-size:13px;
  font-weight:800;
}

.edHeroStats{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
  gap:18px;
  margin-top:22px;
}

.edHeroMainStat,
.edHeroMiniGrid{
  min-width:0;
}

.edHeroMainStat{
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.08);
  padding:22px;
}

.edStatLabel{
  color:var(--muted);
  font-size:14px;
  font-weight:800;
}

.edStatValue{
  margin-top:12px;
  font-size:60px;
  line-height:.95;
  font-weight:1000;
  letter-spacing:-.05em;
}

.edStatValueNet{
  color:var(--green);
}

.edStatSub{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.edHeroMiniGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.edMiniStat{
  min-height:128px;
  border-radius:24px;
  background:#141414;
  border:1px solid rgba(255,255,255,.08);
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.edMiniLabel{
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}

.edMiniValue{
  margin-top:10px;
  font-size:28px;
  line-height:1.02;
  font-weight:1000;
  letter-spacing:-.03em;
}

.edMiniValueCost{
  color:#ff8c8c;
}

/* info cards */

.edStatsGrid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}

.edInfoCard{
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:#111111;
  padding:18px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.edInfoCardIcon{
  width:48px;
  height:48px;
  border-radius:16px;
  background:linear-gradient(135deg,#1e3f7d,#275dc0);
  display:grid;
  place-items:center;
  font-size:18px;
  font-weight:1000;
  flex-shrink:0;
}

.edInfoCardIconKm{
  background:linear-gradient(135deg,#6a4313,#a56722);
  color:#ffe3be;
  font-size:16px;
  letter-spacing:.02em;
}

.edInfoCardLabel{
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}

.edInfoCardValue{
  margin-top:7px;
  font-size:24px;
  line-height:1.05;
  font-weight:1000;
  letter-spacing:-.03em;
}

.edInfoCardSub{
  margin-top:7px;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

/* blocks */

.edBlock{
  border-radius:30px;
  border:1px solid rgba(255,255,255,.08);
  background:#0f0f0f;
  padding:24px;
  box-shadow:var(--shadow-soft);
}

.edBlockHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}

.edBlockTitle{
  font-size:28px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.04em;
}

.edBlockSub{
  margin-top:7px;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.edGhostLink{
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#161616;
  border:1px solid rgba(255,255,255,.10);
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
  transition:.18s ease;
}

.edGhostLink:hover{
  transform:translateY(-1px);
  background:#1a1a1a;
}

/* apps */

.edAppsGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.edAppCard{
  min-width:0;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:#151515;
  padding:18px;
  position:relative;
  overflow:hidden;
}

.edAppCard::before{
  content:"";
  position:absolute;
  inset:auto auto 0 0;
  width:100%;
  height:4px;
  background:var(--app-color, var(--blue));
}

.edAppTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.edAppBrand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.edAppDot{
  width:16px;
  height:16px;
  border-radius:999px;
  background:var(--app-color, var(--blue));
  flex-shrink:0;
}

.edAppName{
  font-size:18px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.02em;
}

.edAppShare{
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

.edAppMoney{
  margin-top:16px;
  font-size:34px;
  line-height:.98;
  font-weight:1000;
  letter-spacing:-.04em;
}

.edAppMeta{
  margin-top:10px;
  display:grid;
  gap:6px;
}

.edAppMetaRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--muted-2);
  font-size:13px;
}

.edAppMetaRow span:first-child{
  color:var(--muted);
}

/* entries */

.edEntriesList{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.edEntryCard{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:#141414;
  padding:18px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
}

.edEntryLeft{
  min-width:0;
}

.edEntryDate{
  font-size:18px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.02em;
}

.edEntryMeta{
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.edEntryChip{
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:#101010;
  border:1px solid rgba(255,255,255,.08);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.edEntryRight{
  text-align:right;
}

.edEntryNet{
  font-size:28px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.03em;
  color:var(--green);
}

.edEntrySub{
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
}

/* side */

.edSideCard{
  position:relative;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:#101010;
  padding:22px;
  box-shadow:var(--shadow-soft);
}

.edSideHead{
  margin-bottom:16px;
}

.edSideTitle{
  font-size:24px;
  line-height:1.02;
  font-weight:1000;
  letter-spacing:-.03em;
}

.edQuickActions{
  display:grid;
  gap:12px;
}

.edQuickBtn{
  min-height:56px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:#141414;
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 16px;
  color:#fff;
  font-weight:900;
  font-size:14px;
  transition:.18s ease;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.edQuickBtn:hover{
  transform:translateY(-2px);
  border-color:rgba(92,163,255,.22);
  background:#181818;
}

.edQuickBtnPrimary{
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  border:0;
  box-shadow:0 12px 28px rgba(47,124,255,.18);
}

.edQuickBtnPrimary:hover{
  background:linear-gradient(135deg,var(--blue-2),var(--blue));
}

.edQuickBtnIcon{
  width:28px;
  height:28px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.07);
  flex-shrink:0;
}

.edQuickBtnPrimary .edQuickBtnIcon{
  background:rgba(255,255,255,.16);
}

.edCompareList,
.edCostsList,
.edInsightsList{
  display:grid;
  gap:12px;
}

.edCompareItem,
.edCostRow,
.edInsightItem{
  min-height:48px;
  padding:0 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:#141414;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-size:14px;
}

.edCompareItem span,
.edCostRow span,
.edInsightItem span{
  color:var(--muted);
}

.edCompareItem b,
.edCostRow b,
.edInsightItem b{
  color:#fff;
  font-weight:900;
  text-align:right;
}

.plus{
  color:var(--green) !important;
}

.minus{
  color:#ff8c8c !important;
}

/* weekday card */

.edWeekdaysBox{
  display:grid;
  gap:12px;
}

.edWeekdayCard{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:#141414;
  padding:16px;
}

.edWeekdayCardWorst{
  border-color:rgba(255,102,102,.14);
}

.edWeekdayLabel{
  color:var(--muted);
  font-size:12px;
  font-weight:800;
}

.edWeekdayValue{
  margin-top:10px;
  font-size:20px;
  line-height:1.15;
  font-weight:1000;
  letter-spacing:-.02em;
}

.edWeekdaySub{
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

/* community */

.edCommunityBox{
  display:grid;
  gap:12px;
}

.edCommunityStat{
  min-height:54px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:#141414;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.edCommunityStat span{
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}

.edCommunityStat b{
  text-align:right;
  font-size:14px;
  font-weight:1000;
}

.edCommunityHint{
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
}

/* target / projection */

.edTargetCalc,
.edProjectionCalc{
  display:grid;
  gap:14px;
}

.edTargetResultBox{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:#141414;
  padding:16px;
}

.edTargetResultLabel{
  color:var(--muted);
  font-size:12px;
  font-weight:800;
}

.edTargetResultValue{
  margin-top:10px;
  font-size:28px;
  line-height:1.05;
  font-weight:1000;
  letter-spacing:-.03em;
  color:var(--green);
}

.edTargetResultSub{
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

.edProjectionGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.edProjectionStat{
  min-height:96px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:#141414;
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.edProjectionStat span{
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  line-height:1.35;
}

.edProjectionStat b{
  margin-top:10px;
  font-size:22px;
  line-height:1.08;
  font-weight:1000;
  letter-spacing:-.02em;
}

/* pro card */

.edProCard{
  background:
    linear-gradient(180deg, rgba(47,124,255,.14), rgba(16,16,16,1) 40%),
    #101010;
}

.edProOverline{
  color:#8ab8ff;
  font-size:12px;
  font-weight:1000;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.edProTitle{
  margin-top:10px;
  font-size:28px;
  line-height:1.05;
  font-weight:1000;
  letter-spacing:-.04em;
}

.edProText{
  margin-top:14px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.edProList{
  margin-top:16px;
  display:grid;
  gap:10px;
  padding-left:18px;
  color:#fff;
  font-size:14px;
  line-height:1.5;
}

.edProBtn{
  margin-top:18px;
  min-height:52px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  color:#fff;
  font-weight:900;
  font-size:14px;
  box-shadow:0 12px 28px rgba(47,124,255,.22);
}

/* locked overlays */

.edLockedWrap{
  overflow:hidden;
}

.edLockOverlay{
  position:absolute;
  inset:0;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,.04) 0,
      rgba(255,255,255,.04) 12px,
      rgba(255,255,255,.01) 12px,
      rgba(255,255,255,.01) 24px
    );
  backdrop-filter:blur(2px);
}

.edLockBox{
  width:min(420px, 100%);
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(9,11,17,.94);
  backdrop-filter:blur(10px);
  padding:22px;
  text-align:center;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.edLockBadge{
  display:inline-flex;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  color:#fff;
  font-size:11px;
  font-weight:1000;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.edLockTitle{
  margin-top:14px;
  font-size:24px;
  line-height:1.05;
  font-weight:1000;
}

.edLockText{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.edLockBtn{
  margin-top:16px;
  min-height:48px;
  padding:0 16px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  color:#fff;
  font-size:14px;
  font-weight:900;
}

/* bottom nav */

.edBottomNav{
  display:none;
}

/* misc */

.edEmpty{
  min-height:120px;
  border-radius:22px;
  border:1px dashed rgba(255,255,255,.10);
  background:#141414;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  color:var(--muted);
  font-size:14px;
  font-weight:800;
  text-align:center;
}

/* responsive */

@media (max-width: 1380px){
  .edTitle{
    font-size:50px;
  }

  .edStatsGrid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 1180px){
  .edWrap{
    padding-left:22px;
    padding-right:22px;
  }

  .edMainGrid{
    grid-template-columns:1fr;
  }

  .edSideCol{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
  }

  .edProCard{
    grid-column:1 / -1;
  }

  .edHeroStats{
    grid-template-columns:1fr;
  }
}

@media (max-width: 860px){
  .edWrap{
    padding:14px 14px calc(104px + var(--safe-bottom));
  }

  .edMenuBtn,
  .edProfileBtn{
    top:calc(env(safe-area-inset-top, 0px) + 10px);
    background:rgba(20,20,20,.86) !important;
    border:1px solid rgba(255,255,255,.08) !important;
  }

  .edMenuBtn{
    right:12px;
  }

  .edProfileBtn{
    right:66px;
    padding:0 14px;
  }

  .edProfileTxt{
    display:none;
  }

  .edTopBarInner{
    padding:22px 18px;
    border-radius:28px;
    gap:18px;
    flex-direction:column;
  }

  .edTitle{
    font-size:36px;
    line-height:.98;
  }

  .edLead{
    font-size:15px;
    line-height:1.55;
  }

  .edTopActions{
    width:100%;
    justify-content:flex-start;
    margin-top:0;
  }

  .edRangeBar{
    margin-bottom:18px;
  }

  .edRangeTabs{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .edRangeTab{
    width:100%;
  }

  .edCustomRange{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .edApplyBtn{
    grid-column:1 / -1;
  }

  .edHeroCard{
    padding:18px;
    border-radius:26px;
  }

  .edHeroRange{
    font-size:24px;
  }

  .edStatValue{
    font-size:42px;
  }

  .edHeroMiniGrid{
    grid-template-columns:1fr 1fr;
  }

  .edMiniValue{
    font-size:22px;
  }

  .edStatsGrid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .edInfoCard{
    padding:16px;
    border-radius:20px;
    flex-direction:column;
    gap:12px;
  }

  .edInfoCardIcon{
    width:42px;
    height:42px;
    border-radius:14px;
  }

  .edInfoCardValue{
    font-size:20px;
  }

  .edBlock{
    padding:18px;
    border-radius:24px;
  }

  .edBlockHead{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:16px;
  }

  .edBlockTitle{
    font-size:24px;
  }

  .edAppsGrid{
    grid-template-columns:1fr;
  }

  .edEntryCard{
    grid-template-columns:1fr;
  }

  .edEntryRight{
    text-align:left;
  }

  .edSideCol{
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .edSideCard{
    padding:18px;
    border-radius:24px;
  }

  .edSideTitle{
    font-size:22px;
  }

  .edProjectionGrid{
    grid-template-columns:1fr;
  }

  .edBottomNav{
    position:fixed;
    left:12px;
    right:12px;
    bottom:calc(12px + var(--safe-bottom));
    z-index:9990;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:10px;
    padding:10px;
    border-radius:22px;
    background:rgba(12,15,22,.84);
    backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 14px 28px rgba(0,0,0,.24);
  }

  .edBottomNavItem{
    min-height:58px;
    border-radius:16px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    color:#d7d7d7;
    font-size:11px;
    font-weight:800;
  }

  .edBottomNavItem.isActive{
    background:linear-gradient(135deg,var(--blue),var(--blue-2));
    color:#fff;
  }

  .edBottomNavIco{
    font-size:16px;
    line-height:1;
  }

  .edBottomNavTxt{
    line-height:1;
  }
}

@media (max-width: 560px){
  .edHeroMiniGrid{
    grid-template-columns:1fr;
  }

  .edStatsGrid{
    grid-template-columns:1fr;
  }

  .edCustomRange{
    grid-template-columns:1fr;
  }

  .edRangeTabs{
    grid-template-columns:1fr;
  }
}

/* tap highlight off */

*{
  -webkit-tap-highlight-color: transparent;
}

a,
button,
div,
span,
img{
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout:none;
}