/* Honorbyte — Dark duotone landing styles */

:root {
  --bg-900: #0b0f17;
  --bg-800: #0f1724;
  --text-100: #e5e7eb;
  --text-200: #cbd5e1;
  --muted-400: #94a3b8;
  --brand-a-300: #7dd3fc;
  --brand-a-500: #0ea5e9;
  --brand-b-300: #c4b5fd;
  --brand-b-500: #8b5cf6;
  --accent-500: #10b981;
  --surface-800: #111827cc; /* translucent for cards */
  --ring: #60a5fa44;
  --container: 1120px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Sunflower", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 300;
  color: var(--text-100);
  background: radial-gradient(1200px 800px at 10% -10%, #1b2540 0%, transparent 60%),
              radial-gradient(1200px 800px at 110% 10%, #2b1b44 0%, transparent 60%),
              var(--bg-900);
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(15, 23, 36, 0.8), rgba(15, 23, 36, 0.3));
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; letter-spacing: 0.2px; }
.logo-dot { width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-a-300), var(--brand-b-500)); box-shadow: 0 0 16px rgba(139, 92, 246, 0.6); }
.brand-name { font-size: 16px; color: var(--text-100); }
.nav { display: flex; gap: 18px; align-items: center; }
.nav a { color: var(--text-200); text-decoration: none; font-size: 14px; }
.nav a:hover { color: white; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; border-radius: 10px; border: 1px solid transparent; text-decoration: none; cursor: pointer; transition: 180ms ease; font-weight: 500; }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--ring); }
.btn-primary { background: linear-gradient(135deg, var(--brand-a-500), var(--brand-b-500)); color: #081018; }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: rgba(148, 163, 184, 0.24); color: var(--text-100); }
.btn-ghost:hover { border-color: rgba(148, 163, 184, 0.5); }

/* Hero */
.hero { padding: 72px 0 32px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center; }
.hero-copy h1 { font-size: clamp(28px, 5vw, 48px); line-height: 1.1; margin: 0 0 14px; letter-spacing: -0.02em; font-weight: 500; }
.hero-copy p { color: var(--text-200); margin: 0 0 16px; font-size: clamp(16px, 2vw, 18px); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.hero-visual { position: relative; }
.orbs { width: 100%; height: auto; display: block; color: rgba(255, 255, 255, 0.08); border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02)); border: 1px solid rgba(148, 163, 184, 0.16); }

/* Orb animations */
.orb-a { animation: floatA 14s ease-in-out infinite; }
.orb-b { animation: floatB 18s ease-in-out infinite; }
.orb-c { animation: floatC 20s ease-in-out infinite; }
@keyframes floatA { 0% { transform: translate(0px, 0px); } 50% { transform: translate(12px, -14px) scale(1.03); } 100% { transform: translate(0px, 0px); } }
@keyframes floatB { 0% { transform: translate(0px, 0px); } 50% { transform: translate(-10px, 12px) scale(0.98); } 100% { transform: translate(0px, 0px); } }
@keyframes floatC { 0% { transform: translate(0px, 0px); } 50% { transform: translate(8px, 10px) scale(1.04); } 100% { transform: translate(0px, 0px); } }

@media (prefers-reduced-motion: reduce) {
  .orb-a, .orb-b, .orb-c { animation: none; }
}

/* Sections */
.section { padding: 60px 0; }
.section h2 { font-size: clamp(22px, 3.5vw, 32px); margin: 0 0 18px; font-weight: 500; }
.lead { color: var(--text-200); font-size: 18px; max-width: 70ch; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: linear-gradient(180deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.6)); border: 1px solid rgba(148, 163, 184, 0.16); border-radius: 14px; padding: 18px; }
.card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 500; }
.card p { margin: 0 0 10px; color: var(--text-200); }
.card ul { margin: 0; padding-left: 18px; color: var(--muted-400); }

/* Contact */
.contact-form { max-width: 720px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 10px; }
label { display: grid; gap: 6px; font-size: 14px; color: var(--text-200); }
input, textarea { width: 100%; padding: 12px 12px; border-radius: 10px; border: 1px solid rgba(148, 163, 184, 0.2); background: rgba(8, 16, 24, 0.6); color: var(--text-100); }
input::placeholder, textarea::placeholder { color: #8b9bb0; }
input:focus, textarea:focus { outline: none; border-color: rgba(148, 163, 184, 0.4); box-shadow: 0 0 0 4px var(--ring); }

/* Footer */
.site-footer { padding: 32px 0; border-top: 1px solid rgba(148, 163, 184, 0.12); background: linear-gradient(180deg, rgba(15, 23, 36, 0.3), rgba(15, 23, 36, 0.6)); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; color: var(--muted-400); font-size: 14px; }
.to-top { color: var(--muted-400); text-decoration: none; }
.to-top:hover { color: var(--text-100); }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
}
@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}


