:root {
  --bg: #060d18;
  --bg-soft: #0a1423;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --panel-solid: #0e1a2b;
  --text: #f7f9fc;
  --muted: #9aaabd;
  --line: rgba(255, 255, 255, 0.11);
  --primary: #72e4d5;
  --secondary: #8c80ff;
  --accent: #d8ff79;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(114, 228, 213, 0.085),
      transparent 26%
    ),
    radial-gradient(
      circle at 87% 9%,
      rgba(140, 128, 255, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 50% 72%,
      rgba(216, 255, 121, 0.035),
      transparent 28%
    ),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
}

.page-noise {
  position: fixed;
  inset: 0;
  opacity: 0.027;
  pointer-events: none;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.5'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(114, 228, 213, 0.1),
    transparent 66%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  z-index: 99;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.section-block {
  padding-block: 118px;
}

.site-header {
  width: min(1240px, calc(100% - 28px));
  height: var(--header-height);
  margin: 14px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 50;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(6, 13, 24, 0.74);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}
.site-header.scrolled {
  border-color: rgba(114, 228, 213, 0.22);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 14px;
  color: #06101c;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 28px rgba(114, 228, 213, 0.2);
}
.brand-text {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.brand-text span {
  color: var(--primary);
}
.desktop-nav {
  display: flex;
  gap: 29px;
}
.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}
.menu-toggle {
  display: none;
  padding: 11px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.2s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 45;
  top: 102px;
  left: 14px;
  right: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}
.mobile-menu.open {
  display: grid;
  gap: 6px;
}
.mobile-menu a {
  padding: 12px 10px;
  color: var(--muted);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 15px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.button:hover {
  transform: translateY(-3px);
}
.button-small {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 13px;
}
.button-primary {
  background: linear-gradient(135deg, var(--primary), #9cecff);
  color: #06101c;
  box-shadow: 0 14px 34px rgba(114, 228, 213, 0.17);
}
.button-primary:hover {
  box-shadow: 0 18px 44px rgba(114, 228, 213, 0.25);
}
.button-ghost {
  border-color: var(--line);
  background: var(--panel);
}
.button-ghost:hover,
.button-outline:hover {
  border-color: rgba(114, 228, 213, 0.35);
}
.button-outline {
  border-color: var(--line);
  background: transparent;
}
.button-light {
  background: #f7f9fc;
  color: #0a1423;
}

.hero {
  min-height: calc(100vh - 92px);
  padding-block: 100px 82px;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 72px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(216, 255, 121, 0.075);
}
.hero h1 {
  margin: 24px 0 24px;
  max-width: 800px;
  font-family: "Space Grotesk";
  font-size: clamp(52px, 6.35vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.062em;
}
.gradient-text {
  display: block;
  background: linear-gradient(
    95deg,
    var(--primary),
    var(--secondary) 53%,
    var(--accent)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-summary {
  max-width: 710px;
  color: var(--muted);
  font-size: 18px;
}
.hero-summary strong {
  color: var(--text);
  font-weight: 800;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-metrics {
  display: flex;
  gap: 0;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 650px;
}
.hero-metrics article {
  min-width: 150px;
  padding-right: 30px;
  margin-right: 30px;
  display: grid;
  border-right: 1px solid var(--line);
}
.hero-metrics article:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.hero-metrics strong {
  font-family: "Space Grotesk";
  font-size: 30px;
  letter-spacing: -0.03em;
}
.hero-metrics span {
  color: var(--muted);
  font-size: 12px;
}
.hero-visual {
  position: relative;
  min-height: 585px;
  display: grid;
  place-items: center;
}
.glass-panel {
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.025)
  );
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.photo-card {
  width: min(390px, 88%);
  padding: 13px;
  border-radius: 30px;
  position: relative;
  z-index: 3;
  transform: rotate(1.2deg);
}
.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 0.82;
  background: var(--bg-soft);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px;
  border-radius: 13px;
  background: rgba(6, 13, 24, 0.72);
  backdrop-filter: blur(10px);
  color: #dbe6f1;
  text-align: center;
  font-size: 11px;
}
.photo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 8px 5px;
}
.photo-meta p,
.photo-meta strong {
  margin: 0;
}
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 10px;
  color: var(--muted);
  font-weight: 800;
}
.availability-pill {
  padding: 8px 11px;
  background: rgba(216, 255, 121, 0.1);
  color: var(--accent);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.visual-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.orbit-one {
  width: 525px;
  height: 525px;
  animation: spin 24s linear infinite;
}
.orbit-two {
  width: 410px;
  height: 410px;
  border-style: dashed;
  animation: spinReverse 19s linear infinite;
}
.orbit-one::after,
.orbit-two::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary);
  top: 46px;
  right: 70px;
  box-shadow: 0 0 22px var(--primary);
}
.orbit-two::after {
  background: var(--secondary);
  bottom: 28px;
  left: 74px;
  top: auto;
  right: auto;
}
.floating-card {
  position: absolute;
  z-index: 5;
  min-width: 205px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 17px;
  animation: float 5s ease-in-out infinite;
}
.floating-card-one {
  left: -65px;
  top: 75px;
}
.floating-card-two {
  right: -14px;
  bottom: 105px;
  animation-delay: -2.3s;
}
.floating-card small,
.floating-card strong {
  display: block;
}
.floating-card small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.floating-card strong {
  font-size: 12px;
}
.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: rgba(114, 228, 213, 0.13);
  color: var(--primary);
}

.logo-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}
.logo-track {
  min-width: max-content;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  color: var(--muted);
  font-family: "Space Grotesk";
  font-size: 12px;
  letter-spacing: 0.11em;
}
.logo-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--secondary);
}
.section-heading {
  margin-bottom: 54px;
}
.section-heading h2 {
  margin: 12px 0 0;
  max-width: 870px;
  font-family: "Space Grotesk";
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.045em;
}
.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 54px;
  align-items: end;
}
.split-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 82px;
}
.about-copy {
  color: var(--muted);
  font-size: 17px;
}
.about-copy p:first-child {
  color: var(--text);
  font-size: 22px;
  line-height: 1.55;
}
.about-panels {
  display: grid;
  gap: 14px;
}
.info-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 19px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.info-card:hover {
  transform: translateX(8px);
  border-color: rgba(114, 228, 213, 0.34);
  background: var(--panel-strong);
}
.info-card h3,
.info-card p {
  margin: 0;
}
.info-card p {
  color: var(--muted);
  margin-top: 5px;
}
.info-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(140, 128, 255, 0.12);
  color: #bcb4ff;
  font-weight: 800;
}

.skill-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
.skill-card {
  min-height: 385px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.skill-card:hover {
  transform: translateY(-6px);
  border-color: rgba(114, 228, 213, 0.26);
}
.skill-card.featured {
  background: linear-gradient(
    145deg,
    rgba(114, 228, 213, 0.12),
    rgba(140, 128, 255, 0.07)
  );
}
.skill-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.skill-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--panel-strong);
  color: var(--primary);
  font-size: 21px;
}
.skill-level {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.skill-card h3 {
  font-family: "Space Grotesk";
  font-size: 28px;
  margin: 62px 0 10px;
}
.skill-card p {
  color: var(--muted);
  margin: 0 0 24px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.tag-list span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.projects-section {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(140, 128, 255, 0.038),
    transparent
  );
}
.project-filter {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.filter-button {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: all 0.2s ease;
}
.filter-button:hover {
  color: var(--text);
  border-color: rgba(114, 228, 213, 0.28);
}
.filter-button.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-7px);
  border-color: rgba(114, 228, 213, 0.3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.15);
}
.project-card-large {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}
.project-preview {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--bg-soft);
}
.project-card-large .project-preview {
  min-height: 470px;
}
.project-preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(6, 13, 24, 0.25));
  pointer-events: none;
}
.project-preview > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.4s ease;
}
.project-card:hover .project-preview > img {
  transform: scale(1.035);
  filter: saturate(1.06);
}
.project-badge {
  position: absolute;
  z-index: 2;
  top: 3px;
  right: 15px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(6, 13, 24, 0.79);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
}
.project-content {
  padding: 29px;
  display: flex;
  flex-direction: column;
}
.project-card-large .project-content {
  justify-content: center;
  padding: 44px;
}
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.project-meta span + span::before {
  content: "•";
  margin-right: 10px;
  color: var(--muted);
}
.project-content h3 {
  margin: 15px 0 10px;
  font-family: "Space Grotesk";
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.project-card-large .project-content h3 {
  font-size: 39px;
}
.project-content p {
  color: var(--muted);
  margin: 0;
}
.project-tags {
  margin-top: 23px;
}
.project-links {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}
.project-links a,
.certificate-copy a {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}
.project-links a:hover,
.certificate-copy a:hover {
  color: var(--primary);
}
.project-card-web {
  border-color: rgba(140, 128, 255, 0.18);
}
.project-card.hidden {
  display: none;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.certificate-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.certificate-card:hover {
  transform: translateY(-5px);
  border-color: rgba(114, 228, 213, 0.26);
}
.certificate-visual {
  min-height: 210px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.certificate-visual::before,
.certificate-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
}
.certificate-visual::before {
  width: 150px;
  height: 150px;
}
.certificate-visual::after {
  width: 95px;
  height: 95px;
}
.certificate-visual span {
  position: relative;
  z-index: 2;
  font-family: "Space Grotesk";
  font-size: 31px;
  font-weight: 800;
  color: #08121f;
}
.certificate-data {
  background: linear-gradient(145deg, var(--primary), #d8ffef);
}
.certificate-web {
  background: linear-gradient(145deg, var(--secondary), #d9d4ff);
}
.certificate-copy {
  padding: 14px 12px 12px 0;
}
.certificate-copy h3 {
  font-family: "Space Grotesk";
  font-size: 25px;
  margin: 12px 0 8px;
}
.certificate-copy p:not(.mini-label) {
  color: var(--muted);
}

.journey-section {
  padding-top: 62px;
}
.timeline {
  border-top: 1px solid var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-year {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.timeline-item h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk";
  font-size: 23px;
}
.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  padding-top: 70px;
}
.contact-shell {
  padding: 64px;
  border-radius: 36px;
  background: linear-gradient(120deg, #72e4d5 0%, #8c80ff 54%, #d8ff79 120%);
  color: #06101c;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: end;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
}
.contact-shell .section-kicker {
  color: rgba(6, 16, 28, 0.64);
}
.contact-shell h2 {
  margin: 12px 0;
  font-family: "Space Grotesk";
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.contact-shell p {
  max-width: 700px;
  margin-bottom: 0;
}
.contact-actions {
  display: grid;
  gap: 18px;
  justify-items: start;
}
.social-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
  font-size: 12px;
  flex-wrap: wrap;
}
.social-links a:hover {
  text-decoration: underline;
}
.contact-note {
  max-width: 340px;
  color: rgba(6, 16, 28, 0.68);
  line-height: 1.5;
}
.site-footer {
  min-height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinReverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions .button {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }
  .hero-copy {
    text-align: center;
  }
  .eyebrow {
    justify-content: center;
  }
  .hero-summary {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-metrics {
    justify-content: center;
    margin-inline: auto;
  }
  .hero-visual {
    min-height: 540px;
  }
  .about-grid,
  .skill-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .about-grid {
    gap: 38px;
  }
  .skill-card {
    min-height: 330px;
  }
  .project-card-large {
    grid-template-columns: 1fr;
  }
  .project-card-large .project-preview {
    min-height: 370px;
  }
  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .project-filter {
    justify-content: flex-start;
  }
  .certificate-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .section-shell {
    width: min(100% - 24px, 1180px);
  }
  .section-block {
    padding-block: 82px;
  }
  .site-header {
    width: calc(100% - 16px);
    top: 8px;
    margin-top: 8px;
    height: 70px;
    padding-inline: 14px;
    border-radius: 19px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .brand-text {
    font-size: 18px;
  }
  .hero {
    padding-block: 72px 45px;
    gap: 30px;
  }
  .eyebrow {
    max-width: 100%;
    font-size: 9px;
    line-height: 1.4;
    text-align: left;
  }
  .hero h1 {
    font-size: clamp(43px, 14vw, 64px);
  }
  .hero-summary {
    font-size: 16px;
  }
  .hero-metrics {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }
  .hero-metrics article {
    min-width: 0;
    flex: 1;
    padding-right: 12px;
    margin-right: 12px;
  }
  .hero-metrics strong {
    font-size: 24px;
  }
  .hero-metrics span {
    font-size: 10px;
  }
  .hero-visual {
    min-height: 430px;
  }
  .photo-card {
    width: 78%;
  }
  .visual-orbit {
    display: none;
  }
  .floating-card {
    min-width: 155px;
    max-width: 190px;
    padding: 11px;
  }
  .floating-card-one {
    left: 0;
    top: 50px;
  }
  .floating-card-two {
    right: 0;
    bottom: 42px;
  }
  .floating-card strong {
    font-size: 10px;
  }
  .section-heading h2 {
    font-size: 38px;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-card-large {
    grid-column: auto;
  }
  .project-card-large .project-content {
    padding: 28px;
  }
  .project-card-large .project-content h3 {
    font-size: 30px;
  }
  .project-card-large .project-preview {
    min-height: 280px;
  }
  .certificate-card {
    grid-template-columns: 1fr;
  }
  .certificate-visual {
    min-height: 180px;
  }
  .certificate-copy {
    padding: 4px 8px 12px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .contact-shell {
    padding: 34px 24px;
    border-radius: 28px;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 34px;
  }
  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === Portfolio v2 refinements === */
.floating-card.focus-card {
  min-width: 250px;
  max-width: 300px;
  align-items: flex-start;
}
.floating-copy {
  min-width: 0;
}
.floating-copy strong {
  font-size: 13px;
  margin-top: 1px;
}
.floating-skills {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* Modern auto-changing project gallery */
.modern-carousel {
  isolation: isolate;
}
.project-slides {
  position: absolute;
  inset: 0;
}
/* Each carousel slide uses the same screenshot twice:
   one soft blurred background + one fully visible main image. */
.project-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateX(16px) scale(0.995);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1.05s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.project-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 1;
}

/* Soft fill behind the dashboard so there are no empty bars. */
.project-slide .slide-background {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  max-width: none;

  object-fit: cover;

  /* Softer premium glass effect */
  filter: blur(7px) brightness(0.72) saturate(1.05);
  opacity: 0.68;
  transform: scale(1.025);

  pointer-events: none;
}

.project-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.015) 45%,
    rgba(114, 228, 213, 0.035) 72%,
    rgba(140, 128, 255, 0.055)
  );

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* The real dashboard remains completely visible and never zooms/crops. */
.project-slide .slide-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: none;
  z-index: 2;
}

.project-card:hover .project-slide .slide-main {
  transform: none;
  filter: none;
}

.carousel-ui {
  position: absolute;
  z-index: 4;
  left: 16px;
  right: 16px;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 13, 24, 0.64);
  backdrop-filter: blur(14px);
}
.carousel-counter {
  color: #fff;
  font-family: "Space Grotesk";
  font-size: 9px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.carousel-track {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
}
.carousel-track i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 999px;
}
.modern-carousel.carousel-running .carousel-track i {
  animation: carouselProgress var(--carousel-duration, 3.6s) linear forwards;
}
@keyframes carouselProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.project-links {
  align-items: center;
  flex-wrap: wrap;
}
.project-detail-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.project-detail-button:hover {
  color: var(--primary);
}

/* Certificates: designed for horizontal images with zero decorative backdrop */
.certificate-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.certificate-card {
  grid-template-columns: minmax(210px, 42%) 1fr;
  align-items: center;
}
.certificate-visual {
  min-height: 0;
  aspect-ratio: 16 / 10;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--line);
}
.certificate-visual::before,
.certificate-visual::after {
  display: none;
}
.certificate-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  border-radius: inherit;
  transition: transform 0.35s ease;
}
.certificate-card:hover .certificate-visual img {
  transform: scale(1.015);
}
.certificate-copy {
  padding: 8px 8px 8px 0;
}

/* Premium project modal */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.project-modal.open {
  opacity: 1;
  visibility: visible;
}
.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 14, 0.78);
  backdrop-filter: blur(14px);
}
.project-modal-panel {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(19, 32, 52, 0.98),
    rgba(8, 17, 30, 0.98)
  );
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.project-modal.open .project-modal-panel {
  transform: translateY(0) scale(1);
}
.project-modal-panel::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  top: -140px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(140, 128, 255, 0.22),
    transparent 68%
  );
  pointer-events: none;
}
.project-modal-panel h2 {
  margin: 10px 48px 20px 0;
  font-family: "Space Grotesk";
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: var(--text);
  font-size: 25px;
  cursor: pointer;
}
.project-modal-body {
  color: var(--muted);
}
.modal-detail-placeholder {
  min-height: 210px;
  padding: 22px;
  border: 1px dashed rgba(114, 228, 213, 0.28);
  border-radius: 18px;
  background: rgba(114, 228, 213, 0.035);
}
body.modal-open {
  overflow: hidden;
}

/* Contact area */
.contact-shell {
  padding: 54px;
  color: var(--text);
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(114, 228, 213, 0.12),
      transparent 34%
    ),
    radial-gradient(
      circle at 95% 85%,
      rgba(140, 128, 255, 0.16),
      transparent 38%
    ),
    linear-gradient(145deg, #0b1626, #08111f);
  border: 1px solid var(--line);
}
.contact-shell .section-kicker {
  color: var(--primary);
}
.contact-shell p {
  color: var(--muted);
}
.contact-cards {
  display: grid;
  gap: 12px;
}
.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 18px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.contact-card span {
  grid-column: 1;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-card strong {
  grid-column: 1;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.contact-card i {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--primary);
  font-style: normal;
}
.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(114, 228, 213, 0.3);
  background: rgba(255, 255, 255, 0.055);
}

@media (max-width: 980px) {
  .floating-card.focus-card {
    min-width: 220px;
  }
  .contact-shell {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .floating-card.focus-card {
    min-width: 165px;
    max-width: 190px;
  }
  .floating-skills {
    display: none;
  }
  .certificate-card {
    grid-template-columns: 1fr;
  }
  .certificate-visual {
    width: 100%;
    aspect-ratio: 16 / 10;
  }
  .project-modal {
    padding: 12px;
  }
  .project-modal-panel {
    padding: 30px 22px;
    border-radius: 24px;
  }
  .contact-shell {
    padding: 34px 24px;
  }
}


/* =========================================
   SINGLE-PAGE PROJECTS
   Sales + Excel
========================================= */

/* Keep the last two cards together on desktop */
@media (min-width: 901px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card-large {
    grid-column: 1 / -1;
  }
}


/* Make both cards equal height */
.project-card:not(.project-card-large) {
  height: 100%;
}


/* Same preview height for Sales + Excel */
.single-project-preview {
  position: relative;
  height: 325px;
  min-height: 325px;
  overflow: hidden;
  background: #09111c;
}


/* Blurred / glass background */
.single-preview-bg {
  position: absolute;
  inset: -10px;

  width: calc(100% + 20px) !important;
  height: calc(100% + 20px) !important;

  max-width: none;

  object-fit: cover !important;

  filter:
    blur(7px)
    brightness(.68)
    saturate(1.05);

  opacity: .68;

  transform: scale(1.025) !important;

  pointer-events: none;
}


/* Subtle premium glass overlay */
.single-project-preview::after {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .07),
      rgba(255, 255, 255, .015) 45%,
      rgba(114, 228, 213, .025) 72%,
      rgba(140, 128, 255, .045)
    );

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}


/* Complete dashboard image */
.single-preview-main {
  position: absolute;
  inset: 0;

  width: 100% !important;
  height: 100% !important;

  object-fit: contain !important;

  z-index: 2;

  filter: none !important;
  transform: none !important;
}


/* Keep badge above everything */
.single-project-preview .project-badge {
  z-index: 4;
}


/* Prevent old project hover CSS from zooming these images */
.project-card:hover .single-preview-main {
  transform: none !important;
  filter: none !important;
}

.project-card:hover .single-preview-bg {
  transform: scale(1.025) !important;
}


/* Make the text area of both cards align consistently */
.project-card:not(.project-card-large) .project-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}


/* Push links to same bottom position */
.project-card:not(.project-card-large) .project-links {
  margin-top: auto;
}


/* Mobile: stack normally */
@media (max-width: 900px) {
  .single-project-preview {
    height: 300px;
    min-height: 300px;
  }
}

/* =========================================================
   FINAL FIX — Sales + Excel cards only
   Keeps both cards side-by-side on large screens, aligned,
   preserves the full dashboard image, adds a subtle glassy
   background frame, and keeps action buttons visible.
========================================================= */

@media (min-width: 901px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .project-card-large {
    grid-column: 1 / -1;
  }

  /* Only the two normal-size cards (Sales + Excel) */
  .project-card:not(.project-card-large) {
    display: grid;
    grid-template-rows: 325px minmax(0, 1fr);
    height: 100%;
    min-height: 650px;
  }

  .project-card:not(.project-card-large) .project-content {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .project-card:not(.project-card-large) .project-links {
    margin-top: auto;
    padding-top: 28px;
  }
}

/* Preview frame for the Sales and Excel single-page projects */
.single-project-preview {
  position: relative;
  width: 100%;
  height: 325px;
  min-height: 325px;
  overflow: hidden;
  isolation: isolate;
  background: #09131f;
}

/* Same image fills the background softly */
.single-project-preview .single-preview-bg {
  position: absolute;
  inset: -14px;
  width: calc(100% + 28px) !important;
  height: calc(100% + 28px) !important;
  max-width: none !important;
  object-fit: cover !important;

  filter:
    blur(8px)
    brightness(.64)
    saturate(1.10);

  opacity: .72;
  transform: scale(1.035) !important;
  pointer-events: none;
  z-index: 0;
}

/* Premium glass veil — intentionally subtle */
.single-project-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.075) 0%,
      rgba(255,255,255,.018) 38%,
      rgba(114,228,213,.025) 68%,
      rgba(140,128,255,.045) 100%
    );

  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}

/* Full dashboard remains visible.
   Small inset exposes the premium blurred/glass frame around it. */
.single-project-preview .single-preview-main {
  position: absolute;
  inset: 10px;

  width: calc(100% - 20px) !important;
  height: calc(100% - 20px) !important;

  object-fit: contain !important;
  object-position: center !important;

  z-index: 2;
  border-radius: 12px;

  filter: none !important;
  transform: none !important;

  box-shadow:
    0 14px 34px rgba(0,0,0,.20),
    0 0 0 1px rgba(255,255,255,.055);
}

/* Badge always stays above the image/glass layers */
.single-project-preview .project-badge {
  z-index: 5;
  top: 3px;
}

/* Override the generic project-image hover zoom for these two cards */
.project-card:hover .single-project-preview .single-preview-main {
  transform: none !important;
  filter: none !important;
}

.project-card:hover .single-project-preview .single-preview-bg {
  transform: scale(1.035) !important;
  filter:
    blur(8px)
    brightness(.64)
    saturate(1.10) !important;
}

/* Keep links/buttons visible and aligned */
.project-card:not(.project-card-large) .project-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.project-card:not(.project-card-large) .project-detail-button {
  flex: 0 0 auto;
}

/* Tablet / mobile: return to one column */
@media (max-width: 900px) {
  .project-card:not(.project-card-large) {
    display: block;
    min-height: 0;
    height: auto;
  }

  .single-project-preview {
    height: 300px;
    min-height: 300px;
  }

  .project-card:not(.project-card-large) .project-content {
    height: auto;
  }

  .project-card:not(.project-card-large) .project-links {
    margin-top: 28px;
    padding-top: 0;
  }
}


/* =========================================================
   PROJECT CASE STUDIES — premium modal content
   Appended to preserve all previous portfolio styling.
========================================================= */
.project-modal-panel {
  width: min(1040px, 100%);
  max-height: min(88vh, 900px);
  padding: 46px;
  background:
    radial-gradient(circle at 92% 6%, rgba(140,128,255,.15), transparent 27%),
    radial-gradient(circle at 8% 92%, rgba(114,228,213,.08), transparent 30%),
    linear-gradient(145deg, rgba(17,31,50,.985), rgba(6,14,25,.99));
}
.project-modal-body { color: var(--muted); }
.project-case-study { display:grid; gap:24px; }
.case-study-intro { padding:22px 24px; border:1px solid var(--line); border-radius:22px; background:linear-gradient(135deg,rgba(255,255,255,.055),rgba(255,255,255,.018)); }
.case-study-lead { margin:0; max-width:850px; color:#dfe8f2; font-size:16px; line-height:1.75; }
.case-study-pills { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.case-study-pills span { padding:7px 10px; border:1px solid rgba(114,228,213,.18); border-radius:999px; background:rgba(114,228,213,.055); color:#c9f8f1; font-size:10px; font-weight:800; }
.case-study-stats { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; }
.case-study-stats article { min-height:108px; padding:18px; display:flex; flex-direction:column; justify-content:center; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.032); }
.case-study-stats strong { font-family:"Space Grotesk"; color:var(--text); font-size:25px; letter-spacing:-.04em; }
.case-study-stats span { margin-top:3px; color:var(--muted); font-size:10px; line-height:1.45; text-transform:uppercase; letter-spacing:.09em; font-weight:800; }
.case-study-section { padding:26px; border:1px solid var(--line); border-radius:22px; background:rgba(255,255,255,.024); }
.case-study-label { margin:0 0 8px; color:var(--primary); font-size:9px; font-weight:800; text-transform:uppercase; letter-spacing:.15em; }
.case-study-section h3,.case-study-outcome h3 { margin:0 0 10px; color:var(--text); font-family:"Space Grotesk"; font-size:23px; line-height:1.25; letter-spacing:-.025em; }
.case-study-section > p:last-child,.case-study-outcome > p:last-child { margin-bottom:0; }
.case-study-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.case-study-card { padding:23px; border:1px solid var(--line); border-radius:20px; background:linear-gradient(145deg,rgba(114,228,213,.045),rgba(140,128,255,.028)); }
.case-study-card h4 { margin:0 0 9px; color:var(--text); font-family:"Space Grotesk"; font-size:18px; }
.case-study-card p:last-child { margin-bottom:0; }
.case-study-page-list { display:grid; gap:10px; margin-top:15px; }
.case-study-page-list article { display:grid; grid-template-columns:42px 1fr; gap:14px; align-items:start; padding:14px 15px; border:1px solid rgba(255,255,255,.075); border-radius:15px; background:rgba(255,255,255,.025); }
.case-study-page-list article > span { width:38px; height:38px; display:grid; place-items:center; border-radius:12px; background:rgba(140,128,255,.11); color:#c8c1ff; font-size:10px; font-weight:800; }
.case-study-page-list strong { color:var(--text); font-size:13px; }
.case-study-page-list p { margin:3px 0 0; font-size:12px; line-height:1.55; }
.case-study-page-list.compact { grid-template-columns:1fr; }
.case-study-timeline { position:relative; display:grid; gap:0; margin-top:16px; }
.case-study-timeline::before { content:""; position:absolute; top:6px; bottom:8px; left:70px; width:1px; background:linear-gradient(var(--primary),rgba(140,128,255,.45)); }
.case-study-timeline article { position:relative; display:grid; grid-template-columns:58px 1fr; gap:28px; padding:0 0 21px; }
.case-study-timeline article:last-child { padding-bottom:0; }
.case-study-timeline article::before { content:""; position:absolute; left:66px; top:7px; width:9px; height:9px; border-radius:50%; background:var(--primary); box-shadow:0 0 0 5px rgba(114,228,213,.08); }
.case-study-timeline article > span { color:var(--primary); font-size:9px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.case-study-timeline strong { color:var(--text); font-size:13px; }
.case-study-timeline p { margin:3px 0 0; font-size:12px; line-height:1.55; }
.case-study-insights { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:15px; }
.case-study-insights article { padding:18px; border:1px solid rgba(255,255,255,.075); border-radius:16px; background:rgba(255,255,255,.025); }
.case-study-insights span { display:block; color:var(--primary); font-size:9px; text-transform:uppercase; letter-spacing:.1em; font-weight:800; }
.case-study-insights strong { display:block; margin-top:5px; color:var(--text); font-family:"Space Grotesk"; font-size:17px; }
.case-study-insights p { margin:5px 0 0; font-size:11px; line-height:1.5; }
.case-study-outcome { padding:27px; border:1px solid rgba(114,228,213,.18); border-radius:22px; background:linear-gradient(135deg,rgba(114,228,213,.07),rgba(140,128,255,.06)); }

@media (max-width:760px) {
  .project-modal-panel { padding:32px 20px; }
  .case-study-stats { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .case-study-grid,.case-study-insights { grid-template-columns:1fr; }
  .case-study-section,.case-study-outcome { padding:21px; }
}
