:root {
  --red:        #F63049;
  --crimson:    #D02752;
  --wine:       #8A244B;
  --navy:       #111F35;
  --red-lt:     #fff1f3;
  --red-md:     #ffe0e4;
  --crimson-lt: #fde8ee;
  --wine-lt:    #f5e6ec;
  --navy-lt:    #e8ecf2;
  --bg:         #fafafa;
  --bg2:        #f4f5f8;
  --bg3:        #ffffff;
  --bg4:        #f9f0f2;
  --text:       #111F35;
  --text2:      #2d3a52;
  --muted:      #7a8399;
  --border:     rgba(17,31,53,.1);
  --border-r:   rgba(246,48,73,.15);
  --shadow:     rgba(17,31,53,.07);
  --shadow-r:   rgba(246,48,73,.2);
  --white:      #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg); color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 16px;
  line-height: 1.6; overflow-x: hidden;
}

.blob { position: absolute; border-radius: 50%; filter: blur(130px); pointer-events: none; z-index: 0; }
.b1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(246,48,73,.13) 0%, transparent 70%); top: -200px; left: -180px; animation: drift 18s ease-in-out infinite alternate; }
.b2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(138,36,75,.1) 0%, transparent 70%); top: 100px; right: -140px; animation: drift 22s ease-in-out infinite alternate-reverse; }
.b3 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(208,39,82,.08) 0%, transparent 70%); bottom: -80px; left: 38%; animation: drift 16s ease-in-out infinite alternate; }
@keyframes drift { from { transform: translate(0,0); } to { transform: translate(26px,34px); } }

.grid-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(17,31,53,.08) 1.2px, transparent 1.2px);
  background-size: 26px 26px; pointer-events: none; z-index: 0;
}

nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  width: 90%; max-width: 1200px; height: 60px; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 30px; background: rgba(255,255,255,0.7);
  backdrop-filter: blur(15px); border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.nav-logo {
  font-family: 'system-ui', sans-serif; font-weight: 800; font-size: 1.5rem;
  letter-spacing: -.05em; text-decoration: none; color: var(--text);
  display: flex; align-items: center; gap: 9px;
}

.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--red), var(--wine));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: white;
}

.logo-cv { color: var(--red); }

.nav-right { display: flex; gap: 10px; align-items: center; }

.btn-ghost {
  color: var(--text2); background: transparent; border: 1.5px solid var(--border);
  padding: 8px 20px; border-radius: 9px; font-size: .875rem; font-weight: 500;
  text-decoration: none; transition: all .2s; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); background: var(--red-lt); }

.btn-fill {
  background: linear-gradient(135deg, var(--red), var(--wine));
  color: white; border: none; padding: 9px 22px; border-radius: 9px;
  font-size: .875rem; font-weight: 700; font-family: 'system-ui', sans-serif;
  text-decoration: none; cursor: pointer; transition: all .2s;
  box-shadow: 0 4px 16px var(--shadow-r);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-fill:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(208,39,82,.3); }

.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 140px 6% 100px;
  position: relative; overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red-lt); border: 1.5px solid rgba(246,48,73,.2);
  border-radius: 100px; padding: 7px 18px 7px 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--crimson); margin-bottom: 36px;
  opacity: 0; animation: up .6s ease forwards .1s;
}

.eyebrow-pill { background: var(--red); color: white; padding: 2px 10px; border-radius: 100px; font-size: .7rem; font-weight: 700; }

.hero h1 {
  font-family: 'system-ui', sans-serif; font-weight: 800;
  font-size: clamp(3.2rem, 7vw, 4.8rem); letter-spacing: -.05em;
  line-height: .97; margin-bottom: 32px; position: relative; z-index: 1;
  opacity: 0; animation: up .7s ease forwards .25s;
}

.h1-plain { display: block; color: var(--text); }
.h1-grad  { display: block; background: linear-gradient(100deg, var(--red) 0%, var(--crimson) 50%, var(--wine) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.h1-muted { display: block; color: var(--muted); font-weight: 700; }

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--muted);
  font-weight: 400; max-width: 560px; margin: 0 auto 52px; line-height: 1.75;
  opacity: 0; animation: up .7s ease forwards .4s;
}
.hero-sub strong { color: var(--text2); font-weight: 600; }

.hero-actions {
  display: flex; gap: 14px; align-items: center; justify-content: center;
  flex-wrap: wrap; margin-bottom: 48px;
  opacity: 0; animation: up .7s ease forwards .55s;
}

.btn-hero {
  background: linear-gradient(135deg, var(--red), var(--wine));
  color: white; padding: 16px 38px; border-radius: 12px;
  font-family: 'system-ui', sans-serif; font-weight: 700; font-size: 1rem;
  letter-spacing: .01em; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(246,48,73,.28);
  transition: all .25s; position: relative; overflow: hidden;
}
.btn-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.18), transparent); opacity: 0; transition: opacity .25s; }
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(246,48,73,.38); }
.btn-hero:hover::before { opacity: 1; }

.hero-url-demo {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--border-r);
  border-radius: 12px; padding: 12px 22px;
  font-family: 'DM Mono', monospace; font-size: .88rem;
  box-shadow: 0 4px 20px var(--shadow);
  opacity: 0; animation: up .7s ease forwards .68s;
}
.url-base { color: var(--muted); }
.url-username { color: var(--crimson); font-weight: 600; }
.url-cursor { display: inline-block; width: 2px; height: 1em; background: var(--red); vertical-align: middle; animation: blink 1.1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 0 6%; }

.section { position: relative; padding: 110px 6%; overflow: hidden; }
.section-center { text-align: center; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--crimson); margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; display: block; width: 22px; height: 1.5px; background: var(--crimson); }
.section-center .section-eyebrow { justify-content: center; }
.section-center .section-eyebrow::before { display: none; }
.section-center .section-eyebrow::after { content: ''; display: block; width: 22px; height: 1.5px; background: var(--crimson); }

.section-h { font-family: 'system-ui', sans-serif; font-weight: 800; font-size: clamp(2rem, 3.6vw, 2.9rem); letter-spacing: -.04em; line-height: 1.08; color: var(--text); margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 1rem; font-weight: 400; line-height: 1.75; max-width: 500px; }
.section-center .section-sub { margin: 0 auto; }

.how-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1.5px solid var(--border); border-radius: 20px;
  overflow: hidden; margin-top: 64px; box-shadow: 0 8px 48px var(--shadow);
}

.step-item { background: var(--white); padding: 36px 28px; border-right: 1px solid var(--border); position: relative; transition: background .3s; }
.step-item:last-child { border-right: none; }
.step-item:hover { background: var(--red-lt); }

.step-num-big { font-family: 'DM Mono', monospace; font-size: 3rem; font-weight: 500; color: rgba(246,48,73,.1); line-height: 1; margin-bottom: 20px; display: block; }
.step-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--red-lt); border: 1.5px solid rgba(246,48,73,.18); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; }
.step-title { font-family: 'system-ui', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.step-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; }

.stats-section { background: var(--bg); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); background: var(--white); border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 8px 48px var(--shadow); }

.stat-item { padding: 36px 28px; border-right: 1px solid var(--border); position: relative; overflow: hidden; transition: background .3s; cursor: default; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--red-lt); }
.stat-item::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--wine)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.stat-item:hover::after { transform: scaleX(1); }

.stat-number { font-family: 'system-ui', sans-serif; font-weight: 800; font-size: 2.6rem; letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; background: linear-gradient(135deg, var(--red), var(--wine)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: .82rem; color: var(--muted); font-weight: 400; }

.preview-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.preview-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; margin-top: 64px; }
.preview-features { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }

.pf-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; transition: all .25s; cursor: default; box-shadow: 0 2px 10px var(--shadow); }
.pf-item:hover { border-color: var(--red); transform: translateX(4px); box-shadow: 0 4px 20px rgba(246,48,73,.12); }

.pf-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--red-lt); border: 1.5px solid rgba(246,48,73,.15); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.pf-name { font-weight: 600; font-size: .9rem; color: var(--text); margin-bottom: 3px; }
.pf-desc { font-size: .8rem; color: var(--muted); line-height: 1.5; }

.portfolio-mockup { background: var(--white); border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 24px 80px rgba(17,31,53,.12); }

.pm-browser { background: var(--bg2); padding: 12px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.pm-dots { display: flex; gap: 5px; }
.pm-dot { width: 9px; height: 9px; border-radius: 50%; }
.pm-bar { flex: 1; background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 4px 12px; font-family: 'DM Mono', monospace; font-size: .68rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }

.pm-hero-area { background: linear-gradient(135deg, #fff0f2 0%, #fde8ee 100%); padding: 28px 24px 22px; position: relative; overflow: hidden; border-bottom: 1px solid rgba(246,48,73,.1); }
.pm-hero-area::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 50%, rgba(138,36,75,.07) 0%, transparent 65%); }

.pm-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--wine)); display: flex; align-items: center; justify-content: center; font-family: 'system-ui', sans-serif; font-weight: 800; font-size: 1rem; color: white; margin-bottom: 12px; position: relative; z-index: 1; border: 3px solid white; box-shadow: 0 4px 14px rgba(246,48,73,.25); }
.pm-name { font-family: 'system-ui', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--text); position: relative; z-index: 1; margin-bottom: 3px; }
.pm-title-text { font-size: .78rem; color: var(--crimson); font-weight: 600; position: relative; z-index: 1; margin-bottom: 10px; }
.pm-url-badge { display: inline-flex; align-items: center; gap: 5px; background: white; border: 1px solid rgba(246,48,73,.2); border-radius: 100px; padding: 3px 10px; font-family: 'DM Mono', monospace; font-size: .65rem; color: var(--crimson); position: relative; z-index: 1; box-shadow: 0 2px 8px rgba(246,48,73,.1); }

.pm-sections { display: flex; gap: 6px; padding: 14px 24px; border-bottom: 1px solid var(--border); overflow-x: auto; }
.pm-sec { white-space: nowrap; padding: 5px 14px; border-radius: 100px; font-size: .7rem; font-weight: 500; border: 1px solid var(--border); color: var(--muted); background: var(--bg2); cursor: default; }
.pm-sec.active { background: var(--red-lt); border-color: rgba(246,48,73,.25); color: var(--crimson); font-weight: 600; }

.pm-projects { padding: 16px 24px; display: flex; flex-direction: column; gap: 10px; }
.pm-project { background: var(--bg4); border: 1px solid rgba(246,48,73,.08); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 12px; }
.pm-proj-thumb { width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0; }
.pm-proj-t1 { background: linear-gradient(135deg, var(--red), var(--crimson)); }
.pm-proj-t2 { background: linear-gradient(135deg, var(--crimson), var(--wine)); }
.pm-proj-t3 { background: linear-gradient(135deg, var(--wine), var(--navy)); }
.pm-proj-name { font-size: .78rem; font-weight: 600; color: var(--text); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pm-proj-tech { font-family: 'DM Mono', monospace; font-size: .62rem; color: var(--muted); }
.pm-proj-link { color: var(--red); font-size: .68rem; text-decoration: none; white-space: nowrap; font-weight: 600; }

.sections-showcase { background: var(--bg); }
.sections-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 60px; }
.sec-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 24px 20px; display: flex; align-items: flex-start; gap: 16px; transition: all .3s; cursor: default; box-shadow: 0 2px 12px var(--shadow); }
.sec-card:hover { transform: translateY(-3px); border-color: var(--border-r); background: var(--red-lt); box-shadow: 0 8px 28px rgba(246,48,73,.1); }
.sec-emoji { font-size: 1.6rem; }
.sec-title { font-family: 'system-ui', sans-serif; font-weight: 700; font-size: .95rem; color: var(--text); margin-bottom: 5px; }
.sec-desc { font-size: .82rem; color: var(--muted); line-height: 1.55; }

.features-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 60px; }

.feat-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: 18px; padding: 30px 26px; position: relative; overflow: hidden; cursor: default; transition: all .3s; }
.feat-top-line { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--wine)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.feat-card.v2 .feat-top-line { background: linear-gradient(90deg, var(--crimson), var(--wine)); }
.feat-card.v3 .feat-top-line { background: linear-gradient(90deg, var(--wine), var(--navy)); }
.feat-card:hover .feat-top-line { transform: scaleX(1); }
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(246,48,73,.1); border-color: var(--border-r); }
.feat-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--red-lt); border: 1.5px solid rgba(246,48,73,.18); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; }
.feat-icon.v2 { background: var(--crimson-lt); border-color: rgba(208,39,82,.18); }
.feat-icon.v3 { background: var(--wine-lt); border-color: rgba(138,36,75,.18); }
.feat-name { font-family: 'system-ui', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 10px; }
.feat-desc { font-size: .87rem; color: var(--muted); line-height: 1.7; }

.testi-section { background: var(--bg); border-top: 1px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 60px; }
.testi-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: all .3s; box-shadow: 0 2px 12px var(--shadow); }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(246,48,73,.1); border-color: var(--border-r); }
.testi-quote { font-size: 2rem; color: rgba(246,48,73,.15); font-family: Georgia, serif; line-height: 1; }
.testi-text { font-size: .9rem; color: var(--text2); font-weight: 400; line-height: 1.75; flex: 1; font-style: italic; }
.testi-stars { color: var(--red); font-size: .9rem; letter-spacing: 2px; }
.testi-foot { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'system-ui', sans-serif; font-weight: 700; font-size: .9rem; color: white; flex-shrink: 0; }
.t-av1 { background: linear-gradient(135deg, var(--red), var(--crimson)); }
.t-av2 { background: linear-gradient(135deg, var(--crimson), var(--wine)); }
.t-av3 { background: linear-gradient(135deg, var(--wine), var(--navy)); }
.t-name { font-family: 'system-ui', sans-serif; font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: 2px; }
.t-role { font-size: .75rem; color: var(--muted); }

.cta-section {
  position: relative; overflow: hidden; text-align: center; padding: 130px 6%;
  background: linear-gradient(160deg, #fff0f2 0%, #fde8ee 45%, #f5e6ec 100%);
  border-top: 1px solid rgba(246,48,73,.1);
}
.cta-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(246,48,73,.08); left: 50%; top: 50%; transform: translate(-50%,-50%); pointer-events: none; }

.cta-h { font-family: 'system-ui', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.05em; line-height: 1.04; color: var(--text); margin-bottom: 18px; position: relative; z-index: 1; }
.cta-sub { color: var(--muted); font-size: 1rem; font-weight: 400; margin-bottom: 48px; position: relative; z-index: 1; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-note { font-size: .8rem; color: var(--muted); margin-top: 20px; position: relative; z-index: 1; }
.cta-note span { color: var(--crimson); font-weight: 600; }

footer { background: var(--navy); padding: 56px 6% 40px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-logo { font-family: 'system-ui', sans-serif; font-weight: 800; font-size: 1.4rem; letter-spacing: -.04em; color: white; display: flex; align-items: center; gap: 8px; margin-bottom: 14px; text-decoration: none; }
.footer-brand-logo span { color: var(--red); }
.footer-tagline { font-size: .87rem; color: rgba(255,255,255,.4); line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-family: 'system-ui', sans-serif; font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .87rem; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: white; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) { .preview-wrap { grid-template-columns: 1fr; gap: 48px; } .features-grid { grid-template-columns: 1fr 1fr; } .footer-top { grid-template-columns: 1fr 1fr; } .stats-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .nav-mid { display: none; } .steps-grid { grid-template-columns: 1fr 1fr; } .features-grid { grid-template-columns: 1fr; } .testi-grid { grid-template-columns: 1fr; } .sections-grid { grid-template-columns: 1fr 1fr; } .footer-top { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .steps-grid { grid-template-columns: 1fr; } .sections-grid { grid-template-columns: 1fr; } .hero h1 { font-size: 2.8rem; } .hero-cards { flex-direction: column; align-items: center; } }