:root {
  --bg: #060606;
  --bg-soft: #0f1116;
  --panel: #11141b;
  --panel-2: #171b24;
  --panel-border: #292f3d;
  --text: #f5f7fb;
  --muted: #a8b0bf;
  --line: #1d222d;
  --accent: #f4f6fb;
  --folder: #d8c25f;
  --folder-top: #ead989;
  --folder-tag: #6f98d9;
  --folder-glass: rgba(255, 255, 255, 0.035);
  --folder-outline: rgba(255, 255, 255, 0.34);
  --strip: #3a412f;
  --window-bar: #171b22;
  --window-border: #232833;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 15px;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #08090d 0%, #050506 100%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.05), transparent 20%),
    radial-gradient(circle at 82% 10%, rgba(116, 154, 255, 0.08), transparent 18%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 1.1rem;
  background: rgba(8, 10, 13, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 18px 18px;
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-cta {
  padding: 0.55rem 0.9rem;
  background: #f4f4f4;
  color: #111;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.section-shell {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  align-items: center;
}

.hero-shell {
  max-width: 1180px;
}

.desktop-grid {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.folder-rail {
  position: absolute;
  left: -5.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 1.35rem;
  justify-items: center;
}

.folder-shortcut {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  transition: transform 180ms ease, color 180ms ease, filter 180ms ease;
}

.folder-shortcut:hover {
  transform: translateX(2px);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.22));
  color: rgba(255, 255, 255, 0.88);
}

.folder-art {
  position: relative;
  width: 60px;
  height: 40px;
}

.folder-cap {
  position: absolute;
  top: 0;
  left: 8px;
  width: 16px;
  height: 8px;
  border: 1px solid var(--folder-outline);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background: rgba(255, 255, 255, 0.02);
}

.folder-base,
.folder-body {
  position: absolute;
  inset: 7px 0 0;
  border: 1px solid var(--folder-outline);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(6px);
}


.hero-content {
  width: min(760px, 100%);
  text-align: center;
  margin: 0 auto;
  padding: 3.6rem 1rem 2.5rem;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  transform: translate3d(calc(var(--mx, 0) * 10px), calc(var(--my, 0) * 10px), 0);
}

.hero-copy {
  max-width: 700px;
  margin: 0.85rem auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  font-weight: 800;
  font-size: 0.76rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: #f5f5f5;
  color: #0e0e0e;
}

.button-secondary {
  background: var(--panel);
  color: var(--text);
}

.button.wide {
  width: 100%;
}

.tech-strip {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  min-height: 92px;
  margin-top: 1.4rem;
  background: rgba(58, 65, 47, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 0;
  border-right: 0;
}

.social-strip {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-tile {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  border: 2px solid var(--window-border);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-tile:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12), 0 12px 24px rgba(0, 0, 0, 0.28);
}

.linkedin { background: #3f93d1; }
.github { background: #434a5b; }
.behance { background: #216eda; }
.web { background: #db70af; }
.resume { background: #2ca58d; }

.social-tile svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.section {
  padding: 4.25rem 0;
}

.window-panel {
  border: 2px solid var(--window-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.window-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.4);
}

.window-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, #1d222b, #14181f);
  color: #f0f4e8;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-close {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(116, 154, 255, 0.55);
  background:
    linear-gradient(180deg, rgba(116, 154, 255, 0.26), rgba(40, 58, 96, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 14px rgba(116, 154, 255, 0.18);
  position: relative;
}

.window-close::before,
.window-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(241, 247, 255, 0.92);
  transform-origin: center;
}

.window-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.window-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.window-content {
  padding: 1.2rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 19, 25, 0.98), rgba(12, 14, 18, 0.98));
  background-size: 18px 18px, 18px 18px, auto;
}

.section-head {
  margin-bottom: 1.3rem;
}

.section-head h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.7rem, 4.3vw, 2.9rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.split-grid,
.works-grid,
.recognition-grid,
.contact-layout,
.stack-grid,
.narrative-layout,
.narrative-stats,
.narrative-stack {
  display: grid;
  gap: 1rem;
}

.split-grid,
.contact-layout {
  grid-template-columns: 1.15fr 0.85fr;
}

.split-grid.narrow-top {
  margin-top: 1rem;
}

.narrative-layout {
  grid-template-columns: 0.84fr 1.56fr;
  align-items: start;
}

.narrative-stack {
  gap: 0.8rem;
}

.stack-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#skills {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 2.4rem 0;
}

#skills .window-bar {
  min-height: 46px;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
}

#skills .window-content {
  padding: 0.95rem;
}

#skills .section-head {
  margin-bottom: 0.9rem;
}

#skills .section-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

#skills .eyebrow {
  font-size: 0.56rem;
}

#skills .stack-grid {
  gap: 0.85rem;
}

.works-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

#works {
  padding: 1.8rem 0;
}

#works .window-bar {
  min-height: 40px;
  padding: 0.48rem 0.75rem;
  font-size: 0.82rem;
}

#works .window-content {
  padding: 0.72rem;
}

#works .section-head {
  margin-bottom: 0.65rem;
}

#works .section-head h2 {
  font-size: clamp(1.12rem, 2.8vw, 1.72rem);
}

#works .eyebrow {
  font-size: 0.56rem;
}

#works .works-grid {
  gap: 0.7rem;
}

.recognition-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.stack-card,
.work-card,
.contact-panel {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.card,
.stack-card,
.contact-panel {
  padding: 1rem;
}

.card,
.stack-card,
.work-card,
.contact-panel,
.field {
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.card:hover,
.stack-card:hover,
.work-card:hover,
.contact-panel:hover,
.field:hover {
  transform: translateY(-3px);
  border-color: #3c4659;
  background: linear-gradient(180deg, #1b2029, #141923);
}

.card h3,
.stack-card h3,
.work-copy h3,
.contact-panel .field strong {
  margin: 0;
}

.card p,
.work-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.narrative-about {
  min-height: 100%;
}

.narrative-about .eyebrow {
  margin: 0 0 0.5rem;
}

.narrative-about h3 {
  font-size: 2rem;
  margin-bottom: 0.9rem;
}

.narrative-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.narrative-stats .metric-block {
  margin-top: 0;
}

.narrative-stats .metric-block span {
  display: block;
  margin-bottom: 0.45rem;
}

.narrative-stats .metric-block strong {
  font-size: 1.25rem;
}

.narrative-stats .metric-cgpa {
  color: #48e68c;
}

.narrative-stats .metric-semester {
  color: #62a8ff;
}

.narrative-stats .metric-projects {
  color: #b890ff;
}

.narrative-stats .metric-open-source {
  color: #ff68b6;
}

.narrative-panel {
  position: relative;
  overflow: hidden;
}

.narrative-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.accent-mint::before {
  background: #59f0b3;
}

.accent-blue::before {
  background: #5ba6ff;
}

.accent-violet::before {
  background: #a988ff;
}

.metric-block {
  margin-top: 1rem;
}

.metric-block strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.metric-block span,
.card small {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pill-row span {
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  color: #dce2ed;
  font-size: 0.68rem;
}

.pill-row .pill-genai,
.pill-row .pill-realtime {
  background: rgba(44, 121, 78, 0.22);
  border-color: rgba(66, 201, 123, 0.24);
  color: #53ef8f;
}

.pill-row .pill-webapps,
.pill-row .pill-mlops {
  background: rgba(37, 62, 104, 0.28);
  border-color: rgba(92, 145, 255, 0.2);
  color: #62a8ff;
}

.stack-card ul {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}

.stack-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.88rem;
}

.stack-card li:last-child {
  border-bottom: 0;
}

.stack-card li span {
  color: var(--text);
}

.stack-card li small {
  color: #7a8498;
  text-transform: uppercase;
}

#skills .stack-card {
  padding: 0.9rem;
}

#skills .stack-card h3 {
  font-size: 0.92rem;
}

#skills .stack-card ul {
  margin-top: 0.72rem;
}

#skills .stack-card li {
  padding: 0.48rem 0;
  font-size: 0.78rem;
}

#skills .stack-card li small {
  font-size: 0.64rem;
}

.work-card {
  overflow: hidden;
  max-width: 460px;
  justify-self: center;
}

.work-link {
  display: block;
  color: inherit;
}

.work-visual {
  aspect-ratio: 16 / 5.2;
  border-bottom: 1px solid var(--panel-border);
  background-size: cover;
  background-position: center;
}

.gradient-a {
  background-image: url("./Screenshot 2026-04-29 195142.png");
  background-size: cover;
  background-position: center top;
}

.gradient-b {
  background-image: url("./Screenshot 2026-05-05 212904.png");
  background-size: cover;
  background-position: 0% top;
}

.gradient-c {
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.04), rgba(7, 10, 16, 0.22)),
    url("./odoo-hr-preview.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.gradient-d {
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.04), rgba(7, 10, 16, 0.24)),
    url("./portfolio-preview.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.gradient-e {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 6%, transparent 6% 12%),
    #141414;
}

.gradient-f {
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.04), rgba(7, 10, 16, 0.26)),
    url("./github-repositories-preview.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.work-copy {
  padding: 0.8rem 0.9rem 0.9rem;
}

#works .work-copy {
  padding: 0.52rem 0.62rem 0.62rem;
}

#works .work-copy h3 {
  font-size: 0.86rem;
}

#works .work-copy p {
  font-size: 0.72rem;
  line-height: 1.34;
}

.work-copy small {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.7rem;
}

#works .work-copy small {
  margin-top: 0.28rem;
  font-size: 0.54rem;
}

.works-footer {
  display: flex;
  justify-content: center;
  margin-top: 0.7rem;
}

#works .works-footer .button {
  min-height: 34px;
  padding: 0.55rem 0.95rem;
  font-size: 0.68rem;
}

.more-project-card {
  min-height: 100%;
}

.mini-card {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(91, 166, 255, 0.06), transparent 30%),
    linear-gradient(180deg, #181d27, #11141b);
}

.mini-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #45ddff;
}

.mini-card h3 {
  margin-bottom: 0.7rem;
  color: #45ddff;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 700;
}

.mini-card small {
  display: block;
  margin-top: 0.55rem;
}

.recognition-grid .mini-card:nth-child(4n + 1)::before {
  background: #5ba6ff;
}

.recognition-grid .mini-card:nth-child(4n + 2)::before {
  background: #59f0b3;
}

.recognition-grid .mini-card:nth-child(4n + 3)::before {
  background: #a988ff;
}

.recognition-grid .mini-card:nth-child(4n + 4)::before {
  background: #ffb35b;
}

.contact-shell {
  padding-bottom: 2rem;
}

#contact {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.contact-copy {
  padding-right: 1rem;
}

.contact-connect {
  max-width: 980px;
}

.contact-layout-connect {
  align-items: start;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.connect-copy {
  max-width: 980px;
  margin: 0;
  color: #a9b2c4;
  font-size: clamp(0.86rem, 1.7vw, 1.12rem);
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.connect-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  margin-top: 1.2rem;
}

.connect-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(32, 39, 52, 0.95), rgba(24, 29, 39, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 30px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.connect-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(120, 165, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 34px rgba(0, 0, 0, 0.26);
}

.connect-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.connect-side-panel {
  gap: 0.9rem;
  max-width: 620px;
  justify-self: end;
  padding: 1rem;
  margin-top: -4rem;
}

.connect-side-panel .field strong {
  font-size: 0.92rem;
  line-height: 1.45;
}

#contact .field span {
  font-size: 0.68rem;
}

#contact .field {
  padding: 0.95rem;
}

#contact .button.wide {
  min-height: 44px;
  font-size: 0.84rem;
  margin-top: -0.2rem;
}

.connect-icon[aria-label="GitHub"] {
  color: #f5f7fb;
}

.connect-icon[aria-label="LinkedIn"] {
  color: #78a8ff;
}

.connect-icon[aria-label="Kaggle"] {
  color: #59c2ff;
}

.connect-icon[aria-label="Codolio"] {
  color: #f5f7fb;
}

.connect-icon[aria-label="Stack Overflow"] {
  color: #ff9f43;
}

.connect-icon[aria-label="Unstop"] {
  color: #77a4ff;
}

.connect-icon[aria-label="Gmail"] {
  color: #55dc88;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.contact-list li {
  padding: 0.58rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #d6deec;
  font-size: 0.9rem;
}

.contact-panel {
  display: grid;
  gap: 0.85rem;
}

.field {
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  background: var(--bg-soft);
}

.field span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-slide.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-grid {
    min-height: auto;
    display: grid;
    gap: 2rem;
  }

  .folder-rail {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    gap: 1rem;
  }

  .stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid,
  .contact-layout,
  .works-grid,
  .recognition-grid,
  .narrative-layout {
    grid-template-columns: 1fr;
  }

  .narrative-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 1rem, 1280px);
    padding: 0.9rem;
    border-radius: 0 0 14px 14px;
  }

  .site-nav {
    display: none;
  }

  .stack-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0 2rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .social-strip {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .connect-copy {
    font-size: 1.08rem;
  }

  .connect-icons {
    gap: 0.75rem;
    margin-top: 1.4rem;
  }

  .connect-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
  }

  .connect-icon svg {
    width: 23px;
    height: 23px;
  }

  .social-tile {
    width: 52px;
    height: 52px;
  }

  .window-content {
    padding: 1rem;
  }
}
