/* ── Auctera Capital Partners — Stylesheet ── */
:root {
  --black: #080c10;
  --dark: #0f1318;
  --slate: #1a2030;
  --blue: #1a6cf0;
  --blue-light: #4d8ff5;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --text: #0f1318;
  --muted: #6b7585;
  --border: rgba(26,108,240,0.15);
  --border-dark: rgba(255,255,255,0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,12,16,0.96);
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
}

.logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 44px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26,108,240,0.35);
}

.btn-outline {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.btn-outline:hover { color: var(--white); }

.btn-large { padding: 18px 48px; font-size: 13px; }
.btn-full { width: 100%; text-align: center; justify-content: center; }

/* ── HERO ── */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,108,240,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,108,240,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 40%, rgba(26,108,240,0.08) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--blue);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--blue-light);
}

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  padding: 36px;
  backdrop-filter: blur(10px);
}

.hero-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-dark);
}

.hero-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}

.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list li:hover { color: var(--white); }

.hc-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--blue);
  letter-spacing: 0.05em;
  width: 24px;
  flex-shrink: 0;
}

/* ── TICKER ── */
.hero-ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-dark);
  overflow: hidden;
  padding: 14px 0;
  background: rgba(26,108,240,0.06);
}

.ticker-inner {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.ticker-inner .sep { color: var(--blue); font-size: 8px; }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ── SECTION HEADS ── */
.section-head { margin-bottom: 64px; }
.section-head.centered { text-align: center; }

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-head.centered .section-tag { justify-content: center; }

.section-tag::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--blue);
}

.section-head.centered .section-tag::before { display: none; }

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ── SERVICES ── */
.services {
  padding: 110px 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover { background: var(--dark); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.5); }
.service-card:hover .service-num { color: var(--blue); }

.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 20px;
  transition: color 0.3s;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 14px;
  transition: color 0.3s;
  font-weight: 400;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  transition: color 0.3s;
}

/* ── WHY ── */
.why {
  padding: 110px 0;
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-left .section-tag { margin-bottom: 20px; }

.why-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.why-left p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.why-left .btn-primary { margin-top: 16px; }

.why-points { display: flex; flex-direction: column; gap: 0; }

.why-point {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.why-point:first-child { border-top: 1px solid rgba(0,0,0,0.06); }

.wp-icon {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.wp-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.why-point p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA ── */
.cta {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 20% 50%, rgba(26,108,240,0.08) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  line-height: 1.7;
}

/* ── PAGE BANNER ── */
.page-banner {
  background: var(--black);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,108,240,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,108,240,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-banner .container { position: relative; z-index: 2; }
.page-banner .section-tag { margin-bottom: 16px; }

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── ABOUT ── */
.about-story {
  padding: 100px 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-text h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.story-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.story-aside {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  align-self: flex-start;
  margin-top: 8px;
}

.aside-block {
  background: var(--white);
  padding: 32px 28px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
}

.aside-block:hover { border-color: var(--blue); }

.aside-num {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 6px;
}

.aside-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── PROCESS ── */
.about-process {
  padding: 100px 0;
  background: var(--off-white);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
}

.process-step {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.25s;
}

.process-step:hover { background: var(--dark); }
.process-step:hover .ps-num { color: var(--blue); }
.process-step:hover h3 { color: var(--white); }
.process-step:hover p { color: rgba(255,255,255,0.45); }

.ps-num {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.05em;
  color: rgba(26,108,240,0.2);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.25s;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.25s;
}

.process-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  transition: color 0.25s;
}

/* ── PRINCIPLES ── */
.about-values {
  padding: 100px 0;
  background: var(--white);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.principle { border-top: 3px solid var(--blue); padding-top: 24px; }

.p-icon {
  color: var(--blue);
  font-size: 9px;
  margin-bottom: 16px;
}

.principle h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.principle p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── CONTACT ── */
.contact-section {
  padding: 80px 0 100px;
  background: var(--off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-left > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.cd-item { display: flex; flex-direction: column; gap: 4px; }

.cd-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.cd-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.contact-right { background: var(--white); border: 1px solid rgba(0,0,0,0.06); padding: 48px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
  appearance: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 60px 20px;
}

.success-check {
  width: 56px; height: 56px;
  background: var(--blue);
  color: var(--white);
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 400;
}

.form-success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 44px 0;
}

.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--white);
}

.footer-tagline {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 3px;
}

.footer-nav { display: flex; gap: 36px; }

.footer-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--blue-light); }

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 56px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--black);
    padding: 20px 48px;
    gap: 16px;
    border-bottom: 1px solid var(--border-dark);
  }
  .hamburger { display: block; }
  .nav-inner { position: relative; }
  .services-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-right { padding: 28px 24px; }
  .container { padding: 0 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
