nav { gap: 48px; }

.logo-icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
}
.logo-icon svg { width: 26px; height: 26px; }

.nav-links {
  display: flex; align-items: center; gap: 32px; flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .875rem; color: var(--muted);
  text-decoration: none; transition: color .15s;
  letter-spacing: .01em;
}
.nav-links a:hover { color: var(--text); }

.nav-ctas { display: flex; gap: 10px; flex-shrink: 0; }
.btn-nav-fill {
  padding: 9px 20px; background: var(--gold);
  color: #0d0b00; font-size: .85rem; font-weight: 700;
  border: none; border-radius: var(--radius); cursor: pointer;
  font-family: inherit; letter-spacing: .01em;
  transition: background .15s;
}
.btn-nav-fill:hover { background: var(--gold-h); }

.hero-section {
  display: flex; align-items: center;
  min-height: calc(100vh - 64px);
  max-width: 1200px; margin: 0 auto;
  padding: 80px 48px;
  gap: 80px;
}
.hero-left { flex: 1; max-width: 600px; }
.hero-right {
  flex-shrink: 0; width: 340px;
  display: flex; align-items: center; justify-content: center;
}

.hero-graphic {
  width: 300px; height: 300px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-graphic svg { width: 100%; height: 100%; }

h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
h1 .gold { color: var(--gold); }

.feature-list {
  list-style: none; margin-bottom: 40px;
  display: flex; flex-direction: column; gap: 13px;
}
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .88rem; color: rgba(255,255,255,.8);
}
.feat-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--gold); flex-shrink: 0;
  display: grid; place-items: center;
}
.feat-icon svg {
  width: 13px; height: 13px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.btn-primary {
  padding: 13px 28px; background: var(--gold);
  color: #0d0b00; font-size: .92rem; font-weight: 700;
  border: none; border-radius: var(--radius); cursor: pointer;
  font-family: inherit; letter-spacing: .01em;
  transition: background .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover    { background: var(--gold-h); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }

.btn-secondary {
  padding: 12px 24px; background: transparent;
  color: var(--text); font-size: .92rem; font-weight: 600;
  border: 1px solid var(--border2); border-radius: var(--radius); cursor: pointer;
  font-family: inherit;
  transition: border-color .15s, background .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.btn-secondary svg { width: 16px; height: 16px; fill: currentColor; }

.shorten-area {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 4px 4px 16px;
  display: flex; gap: 8px; align-items: center;
  max-width: 540px;
}
.url-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-size: .9rem; font-family: inherit;
  padding: 10px 0;
}
.url-input::placeholder { color: rgba(255,255,255,.25); }
.btn-shorten {
  padding: 11px 22px; background: var(--gold);
  color: #0d0b00; font-weight: 700; font-size: .88rem;
  border: none; border-radius: 5px; cursor: pointer;
  font-family: inherit; flex-shrink: 0;
  transition: background .15s;
}
.btn-shorten:hover    { background: var(--gold-h); }
.btn-shorten:disabled { opacity: .45; cursor: not-allowed; }

.result-wrap {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .3s ease, opacity .25s ease;
}
.result-wrap.show { max-height: 80px; opacity: 1; }

.result {
  margin-top: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px; max-width: 540px;
}
.result.err { border-color: rgba(239,68,68,.3); background: rgba(239,68,68,.06); }

.res-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.res-dot.ok  { background: var(--success); box-shadow: 0 0 6px var(--success); }
.res-dot.err { background: var(--error);   box-shadow: 0 0 6px var(--error);   }

.res-body { flex: 1; min-width: 0; }
.res-label { font-size: .68rem; color: var(--subtle); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1px; }
.res-link  { font-size: .9rem; font-weight: 600; color: var(--gold); text-decoration: none; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.res-link:hover { color: var(--gold-h); }
.err-txt   { font-size: .85rem; color: var(--error); }

.btn-copy {
  flex-shrink: 0; background: transparent;
  border: 1px solid var(--border); color: var(--muted);
  font-size: .75rem; font-weight: 600; padding: 6px 12px;
  border-radius: 5px; cursor: pointer; font-family: inherit;
  transition: border-color .2s, color .2s, background .2s, transform .1s;
}
.btn-copy:hover { border-color: var(--gold); color: var(--gold); }
.btn-copy:active { transform: scale(.94); }
.btn-copy.ok {
  border-color: rgba(34,197,94,.5);
  background: rgba(34,197,94,.12);
  color: var(--success);
  animation: pop .2s ease;
}
@keyframes pop {
  0%   { transform: scale(.92); }
  60%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.stats-section {
  border-top: 1px solid var(--border2);
  background: rgba(0,0,0,.2);
  padding: 48px;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px;
}
.stat { text-align: center; }
.stat-num {
  font-size: 2.2rem; font-weight: 800;
  color: var(--gold); letter-spacing: -.03em; line-height: 1;
}
.stat-label { font-size: .82rem; color: var(--muted); margin-top: 6px; }

.features-section {
  padding: 80px 48px;
  max-width: 1200px; margin: 0 auto;
}
.section-eyebrow {
  font-size: .8rem; color: var(--gold); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px; background: var(--border2);
  border: 1px solid var(--border2); border-radius: 8px; overflow: hidden;
}
.feat-card {
  background: var(--bg2); padding: 28px 24px;
  transition: background .2s;
}
.feat-card:hover { background: var(--surface); }
.feat-card-icon {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--gold-dim);
  display: grid; place-items: center; margin-bottom: 16px;
}
.feat-card-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.feat-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.feat-card p  { font-size: .82rem; color: var(--muted); line-height: 1.6; }

footer {
  padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
footer span { color: var(--subtle); }

@media (max-width: 900px) {
  .hero-section { flex-direction: column; padding: 48px 24px; min-height: auto; gap: 48px; }
  .hero-right { width: 200px; }
  .hero-graphic { width: 200px; height: 200px; }
  nav { padding: 0 20px; gap: 20px; }
  .nav-links { display: none; }
  .stats-section { padding: 40px 24px; }
  .features-section { padding: 60px 24px; }
  footer { padding: 20px 24px; }
}
