* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #02030a;
  --bg-soft: #070914;
  --card: rgba(8, 10, 22, 0.76);
  --card-light: rgba(16, 21, 39, 0.78);
  --text: #f5f7ff;
  --muted: #8d93a8;
  --muted-light: #b8bed0;
  --cyan: #4de1e6;
  --blue: #58a6ff;
  --purple: #9b5cff;
  --pink: #ff4fa3;
  --orange: #ff8a1f;
  --green: #63f26d;
  --yellow: #ffc400;
  --border: rgba(255, 255, 255, 0.08);
  --border-cyan: rgba(77, 225, 230, 0.35);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--cyan);
  color: #02030a;
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 4px 4px;
}

.glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -3;
}

.glow-one {
  top: 10%;
  left: 8%;
  background: var(--cyan);
}

.glow-two {
  top: 55%;
  right: 5%;
  background: var(--purple);
}

.glow-three {
  bottom: 10%;
  left: 25%;
  background: var(--blue);
}

.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(77, 225, 230, 0.75);
  border-radius: 50%;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

.cursor.grow {
  width: 64px;
  height: 64px;
  border-color: rgba(77, 225, 230, 0.25);
}

.header {
  position: fixed;
  top: 22px;
  left: 50%;
  width: min(1120px, calc(100% - 36px));
  transform: translateX(-50%);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.logo {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -1px;
  color: #8d92ff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 9, 20, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(77, 225, 230, 0.14);
}

.socials {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.socials a,
.menu-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(7, 9, 20, 0.72);
  color: var(--muted-light);
  backdrop-filter: blur(16px);
  transition: 0.25s ease;
}

.socials a:hover,
.menu-button:hover {
  color: var(--cyan);
  border-color: var(--border-cyan);
  transform: translateY(-3px);
}

.socials svg,
.menu-button svg {
  width: 18px;
  height: 18px;
}

.menu-button {
  display: none;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 90px;
  left: 18px;
  right: 18px;
  z-index: 999;
  display: none;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(7, 9, 20, 0.96);
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--muted-light);
  background: rgba(255, 255, 255, 0.03);
}

.section {
  position: relative;
  padding: 80px 24px;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-content {
  width: min(850px, 100%);
}

.status,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  color: var(--cyan);
  font-weight: 800;
  font-size: 14px;
  border: 1px solid var(--border-cyan);
  border-radius: 999px;
  background: rgba(77, 225, 230, 0.12);
}

.status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #29ff55;
  box-shadow: 0 0 18px #29ff55;
}

.hero h1 {
  margin-top: 54px;
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.95;
  letter-spacing: -6px;
  font-weight: 900;
  color: rgba(245, 247, 255, 0.74);
}

.gradient-text {
  display: block;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  background-size: 250%;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientMove 5s linear infinite;
}

.typing-line {
  height: 38px;
  margin-top: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--muted-light);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
}

.typing-caret {
  width: 3px;
  height: 28px;
  margin-left: 6px;
  background: var(--cyan);
  animation: blink 0.8s infinite;
}

.hero p {
  width: min(680px, 100%);
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.button svg {
  width: 18px;
}

.button.primary {
  color: #02030a;
  background: var(--cyan);
  box-shadow: 0 0 32px rgba(77, 225, 230, 0.28);
}

.button.secondary {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.button:hover {
  transform: translateY(-5px);
}

.stats {
  width: min(760px, 100%);
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats strong {
  display: block;
  color: var(--cyan);
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.stats strong::after {
  content: "+";
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  gap: 8px;
  justify-items: center;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.scroll-down svg {
  animation: bounce 1.4s infinite;
}

.floating-icons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  color: rgba(77, 225, 230, 0.22);
  animation: float 6s ease-in-out infinite;
}

.float-icon svg {
  width: 72px;
  height: 72px;
}

.icon-code {
  top: 35%;
  left: 18%;
}

.icon-rocket {
  top: 34%;
  right: 18%;
  animation-delay: 1s;
}

.icon-sparkle {
  right: 10%;
  bottom: 20%;
  animation-delay: 2s;
}

.orbit {
  position: absolute;
  border: 3px solid rgba(77, 225, 230, 0.75);
  border-radius: 50%;
  opacity: 0.8;
  animation: pulseOrbit 3s ease-in-out infinite;
}

.orbit-one {
  top: 25%;
  left: 38%;
  width: 42px;
  height: 42px;
}

.orbit-two {
  bottom: 27%;
  right: 32%;
  width: 50px;
  height: 50px;
  animation-delay: 1.5s;
}

.section-heading {
  width: min(1100px, 100%);
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -4px;
  font-weight: 900;
}

.section-heading p {
  width: min(760px, 100%);
  margin: 24px auto 0;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.7;
}

.about-grid,
.contact-grid {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.about-left {
  display: grid;
  gap: 24px;
}

.glass-card,
.feature-card,
.timeline-card,
.project-card,
.mini-project,
.achievement-card,
.contact-form {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(8, 10, 22, 0.92), rgba(4, 5, 13, 0.86));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.glass-card {
  padding: 34px;
  border-radius: 24px;
}

.glass-card h3 {
  font-size: 26px;
  margin-bottom: 22px;
}

.glass-card p {
  color: var(--muted-light);
  line-height: 1.75;
  font-weight: 600;
}

.glass-card p + p {
  margin-top: 20px;
}

.skills-card {
  padding-bottom: 28px;
}

.skill {
  margin-top: 22px;
}

.skill > div:first-child {
  display: flex;
  justify-content: space-between;
  color: var(--muted-light);
  font-weight: 800;
  font-size: 14px;
}

.bar {
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  transform-origin: left;
  animation: loadBar 1.2s ease both;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card {
  padding: 28px;
  border-radius: 22px;
  transition: 0.25s ease;
}

.feature-card:hover,
.feature-card.active {
  border-color: var(--border-cyan);
  transform: translateY(-8px);
  background: linear-gradient(145deg, rgba(77, 225, 230, 0.12), rgba(8, 10, 22, 0.92));
}

.feature-card svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--cyan);
  border-radius: 14px;
  background: rgba(77, 225, 230, 0.1);
}

.feature-card h4 {
  margin-top: 28px;
  font-size: 19px;
}

.feature-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.timeline {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(var(--blue), var(--purple), var(--cyan));
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 44px 70px;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 0 26px currentColor;
}

.timeline-item.left .timeline-dot {
  right: -9px;
}

.timeline-item.right .timeline-dot {
  left: -9px;
}

.timeline-dot.blue {
  color: var(--blue);
  background: var(--blue);
}

.timeline-dot.purple {
  color: #d91fff;
  background: #d91fff;
}

.timeline-dot.orange {
  color: var(--orange);
  background: var(--orange);
}

.timeline-card {
  padding: 28px;
  border-radius: 22px;
  transition: 0.25s ease;
}

.timeline-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-cyan);
}

.timeline-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.timeline-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.timeline-meta svg {
  width: 14px;
}

.timeline-card h3 {
  margin-top: 22px;
  font-size: 23px;
}

.timeline-card h4 {
  margin-top: 6px;
  color: var(--cyan);
}

.timeline-card p {
  margin-top: 22px;
  color: var(--muted-light);
  line-height: 1.65;
}

.timeline-card ul {
  margin: 22px 0 0 18px;
  color: var(--muted-light);
}

.timeline-card li {
  margin-top: 8px;
}

.timeline-card li::marker {
  color: var(--cyan);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.tags span {
  padding: 7px 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(77, 225, 230, 0.12);
}

.featured-projects {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.project-preview {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 80%, rgba(77, 225, 230, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(77, 225, 230, 0.18), rgba(155, 92, 255, 0.18));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.project-preview span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.12);
  font-size: 96px;
  font-weight: 900;
}

.preview-actions {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  gap: 12px;
}

.preview-actions a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(2, 3, 10, 0.72);
  color: var(--text);
  transition: 0.25s ease;
}

.preview-actions a:hover {
  color: var(--cyan);
  transform: translateY(-4px);
}

.project-list {
  display: grid;
  gap: 16px;
}

.project-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border-radius: 18px;
  transition: 0.25s ease;
}

.project-card.active,
.project-card:hover {
  border-color: var(--border-cyan);
  background: linear-gradient(145deg, rgba(77, 225, 230, 0.12), rgba(8, 10, 22, 0.92));
  transform: translateX(8px);
}

.project-card h3 {
  font-size: 22px;
}

.project-card p {
  margin-top: 14px;
  color: var(--muted-light);
  line-height: 1.55;
}

.project-card > svg {
  color: var(--cyan);
  flex: 0 0 auto;
}

.small-title {
  margin: 90px auto 32px;
  width: min(1100px, 100%);
  text-align: center;
  font-size: 28px;
}

.project-grid,
.achievements-grid {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-project {
  padding: 28px;
  border-radius: 18px;
  transition: 0.25s ease;
}

.mini-project:hover {
  transform: translateY(-8px);
  border-color: var(--border-cyan);
}

.mini-project > svg {
  color: var(--cyan);
  width: 34px;
  height: 34px;
}

.mini-project h4 {
  margin-top: 26px;
  font-size: 20px;
}

.mini-project p {
  margin-top: 14px;
  color: var(--muted-light);
  line-height: 1.6;
}

.mini-project span {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.achievement-card {
  position: relative;
  padding: 30px;
  border-radius: 18px;
  transition: 0.25s ease;
}

.achievement-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-cyan);
}

.achievement-card > span {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 12px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.achievement-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
}

.achievement-icon.yellow {
  background: linear-gradient(135deg, #ffb800, #ffdd55);
}

.achievement-icon.blue {
  background: linear-gradient(135deg, #4db5ff, #6b7cff);
}

.achievement-icon.pink {
  background: linear-gradient(135deg, #ff4fd8, #9b5cff);
}

.achievement-icon.orange {
  background: linear-gradient(135deg, #ff8a1f, #ff3d3d);
}

.achievement-icon.green {
  background: linear-gradient(135deg, #63f26d, #38d48e);
}

.achievement-icon.purple {
  background: linear-gradient(135deg, #8b5cff, #5f67ff);
}

.achievement-card h3 {
  margin-top: 26px;
  font-size: 20px;
}

.achievement-card h4 {
  margin-top: 8px;
  color: var(--cyan);
  font-size: 15px;
}

.achievement-card p {
  margin-top: 20px;
  color: var(--muted-light);
  line-height: 1.65;
}

.coming-soon {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 44px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(8, 10, 22, 0.92), rgba(4, 5, 13, 0.86));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.coming-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border-radius: 24px;
  background: rgba(77, 225, 230, 0.12);
}

.coming-icon svg {
  width: 36px;
  height: 36px;
}

.coming-soon h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

.coming-soon p {
  width: min(620px, 100%);
  margin: 14px auto 0;
  color: var(--muted-light);
  line-height: 1.7;
  font-weight: 600;
}

.coming-tags {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.coming-tags span {
  padding: 8px 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(77, 225, 230, 0.12);
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 24px;
  padding: 30px;
  border-radius: 24px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  outline: none;
  background: rgba(2, 3, 10, 0.8);
  transition: 0.25s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--border-cyan);
  box-shadow: 0 0 0 4px rgba(77, 225, 230, 0.08);
}

.contact-form button {
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #02030a;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 900;
  background: var(--cyan);
  transition: 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(77, 225, 230, 0.25);
}

.contact-info {
  display: grid;
  gap: 24px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.contact-line > svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  color: var(--cyan);
  border-radius: 16px;
  background: rgba(77, 225, 230, 0.12);
}

.contact-line span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.contact-line strong {
  display: block;
  margin-top: 6px;
}

.connect-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.connect-links a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  transition: 0.25s ease;
}

.connect-links a:hover {
  color: var(--cyan);
  border-color: var(--border-cyan);
  transform: translateY(-5px);
}

.footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer span {
  color: #ff2c55;
}

.footer strong {
  color: var(--text);
}

.footer small {
  display: block;
  margin-top: 6px;
}

.back-to-top {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: 0.25s ease;
}

.back-to-top:hover {
  color: var(--cyan);
  border-color: var(--border-cyan);
  transform: translateY(-5px);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gradientMove {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 250%;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-26px) rotate(8deg);
  }
}

@keyframes pulseOrbit {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.25);
    opacity: 0.3;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes loadBar {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1000px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .socials {
    display: none;
  }

  .menu-button {
    display: grid;
    justify-self: end;
  }

  .about-grid,
  .featured-projects,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item,
  .timeline-item.right,
  .timeline-item.left {
    width: 100%;
    left: 0;
    padding-left: 44px;
    padding-right: 0;
  }

  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 1px;
    right: auto;
  }

  .project-grid,
  .achievements-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cursor,
  .cursor-dot {
    display: none;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 90px 18px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .features,
  .project-grid,
  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2 {
    letter-spacing: -2px;
  }

  .timeline-card,
  .glass-card,
  .contact-form,
  .coming-soon {
    padding: 24px;
  }

  .timeline-meta {
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}