*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #080c10;
  --bg2: #0d1117;
  --bg3: #111820;
  --bg4: #161e28;
  --border: #1e2d3d;
  --border2: #243648;
  --accent: #00d4ff;
  --accent2: #0ea5e9;
  --accent-dim: rgba(0, 212, 255, 0.08);
  --accent-glow: rgba(0, 212, 255, 0.15);
  --gold: #f59e0b;
  --gold-dim: rgba(245, 158, 11, 0.08);
  --text: dimgrey;
  --text2: #8899aa;
  --text3: #ffffff;
  --success: #22c55e;
  --font-head:'Inter',sans-serif;
--font-body:'Inter',sans-serif;
--font-mono:'Inter',sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* noise texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* grid lines */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
nav.scrolled{
  background:rgba(8,12,16,.96);
  backdrop-filter:blur(14px);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--text3);
  letter-spacing: -0.02em;
}
.nav-logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: #a5b4c3;
  text-decoration: none;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: #080c10;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-mono);
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.nav-cta:hover {
  background: #33ddff;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  color: var(--text3);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text3);
  border-radius: 2px;
  transition: all 0.3s;
  
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 16, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
}

/* HERO */
/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 70px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 26px;
  letter-spacing: 0.05em;
}

.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5.2vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--text3);
  max-width: 1200px;
}

h1 .line2 {
  color: var(--accent);
}

h1 .line3 {
  color: #93a4b6;
}

.hero-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 700px;
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-status {
  padding: 7px 14px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.06);
  border-radius: 100px;
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #080c10;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: #33ddff;
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--border2);
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 640px;
}
.stat {
  background: var(--bg2);
  padding: 24px 28px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text2);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* SECTION COMMON */
section {
  padding: 100px 40px;
  position: relative;
  z-index: 1;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-desc{
  color:var(--text2);
  font-size:15px;
  max-width:620px;
  line-height:1.75;
  margin-bottom:54px;
  font-weight:300;
}
h2{
  font-family:var(--font-head);
  font-size:clamp(28px,4vw,42px);
  font-weight:800;
  letter-spacing:-.025em;
  line-height:1.15;
  margin-bottom:14px;
  color:var(--text3);

}
/* SKILLS */
.skills-bg {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
}
.skill-col {
  background: linear-gradient(180deg, var(--bg2), #101821);
  padding: 34px;
}
.skill-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  padding: 6px 12px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--text2);
  font-family: var(--font-mono);
  transition: all 0.2s;
}
.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.tag.highlight {
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--accent);
  background: var(--accent-dim);
}

/* EXPERIENCE TIMELINE */
.exp-bg {
  background: var(--bg);
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-item:last-child {
  border-bottom: none;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 180px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item::after {
  content: "";
  position: absolute;
  left: 174px;
  top: 48px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--accent);
}
.tl-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text3);
  padding-top: 4px;
  letter-spacing: 0.04em;
}
.tl-content {
  padding-left: 40px;
}
.tl-role {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.tl-company {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.tl-desc {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}
.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* PROJECTS */
.projects-bg {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
  background: var(--border);
}
.project-card {
   background:linear-gradient(180deg,var(--bg2),#101821);
  padding:34px;
  min-height:430px;
  transition: background 0.2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.project-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:2px;
  background:linear-gradient(90deg,var(--accent),transparent);
  opacity:.45;
}
.project-card:hover {
  background: var(--bg3);
}
.project-card:hover::before {
  transform: scaleX(1);
}
.project-type {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.project-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--border2);
  margin-bottom: 12px;
  line-height: 1;
}
.project-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.project-sector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.sector-bank {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.sector-tech {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.sector-startup {
  background: rgba(34, 197, 94, 0.08);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.project-problem {
  font-size: 13px;
  color: var(--text2);  
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}
.project-result {
  background: var(--bg4);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.project-result-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.project-result-text {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.65;
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tech-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text3);
  padding: 3px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* SERVICES */
.services-bg {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.service-card{
  background:linear-gradient(180deg,var(--bg2),#101821);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px;
  transition:all .2s;
  position:relative;
  overflow:hidden;
  min-height:255px;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover{
  border-color:rgba(0,212,255,0.18);
  transform:translateY(-6px);
}
.service-card:hover::after {
  opacity: 1;
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
  z-index: 1;
}
.service-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.service-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.service-price{
  font-family:var(--font-mono);
  font-size:11px;
  color:#7C90A3;
  position:relative;
  z-index:1;
  letter-spacing:.03em;
}

/* ABOUT */
.about-bg {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}
.about-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 16, 0.7), transparent 60%);
}
.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(13, 17, 23, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 16px;
  z-index: 2;
}
.about-badge-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.about-badge-text {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.about-corner {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  opacity: 0.2;
}
.about-list {
  list-style: none;
  margin: 24px 0 32px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text2);
  font-weight: 300;
}
.about-list li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testi-bg {
  background: var(--bg);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-head);
  font-size: 80px;
  color: var(--border2);
  line-height: 1;
  pointer-events: none;
}
.testi-text{
  font-size:14px;
  color:var(--text2);
  line-height:1.8;
  margin-bottom:20px;
  font-weight:300;
  font-style:normal;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.testi-role {
  font-size: 11px;
  color: var(--text3);
  font-family: var(--font-mono);
}

/* CONTACT */
.contact-bg {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.contact-item:hover {
  border-color: var(--border2);
}
.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-value {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.contact-value a {
  color: var(--text);
  text-decoration: none;
}
.contact-value a:hover {
  color: var(--accent);
}
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 6px;
}
input,
textarea,
select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
}
input::placeholder,
textarea::placeholder {
  color: var(--text);
}
textarea {
  min-height: 120px;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A5C6A' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
select option {
  background: var(--bg3);
}
.submit-btn {
  background: var(--accent);
  color: #080c10;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover {
  background: #33ddff;
  transform: translateY(-1px);
}
.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: center;
}

/* FOOTER */
footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.footer-left {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text3);
}
.footer-right {
  display: flex;
  gap: 20px;
}
.footer-right a {
  color: var(--text3);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  transition: color 0.2s;
}
.footer-right a:hover {
  color: var(--accent);
}

/* AVAILABILITY BANNER */
.avail-banner {
  background: rgba(0, 212, 255, 0.05);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-right {
    display: none;
  }
  nav {
    padding: 0 20px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 90px 20px 60px;
  }
  h1 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.1;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-note{
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--text3);
  letter-spacing:.04em;
  margin-bottom:34px;
}
  section {
    padding: 70px 20px;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrap {
    max-width: 340px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .timeline-item::before,
  .timeline-item::after {
    display: none;
  }
  .tl-content {
    padding-left: 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 24px 20px;
  }
  .avail-banner {
    padding: 10px 20px;
    font-size: 11px;
  }
}
@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 18px 20px;
  }
  .stat-num {
    font-size: 28px;
  }
}
