/* getitsorted.tech — shared styles */

:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #18181f;
  --accent: #f97316;
  --accent-dim: rgba(249,115,22,0.15);
  --accent2: #818cf8;
  --accent2-dim: rgba(129,140,248,0.12);
  --teal: #22d3ee;
  --teal-dim: rgba(34,211,238,0.10);
  --green: #34d399;
  --text: #f1f5f9;
  --text2: #94a3b8;
  --text3: #64748b;
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 24px; }
.section--alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.divider { height: 1px; background: var(--border); max-width: var(--max-w); margin: 0 auto; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; background: rgba(10,10,15,0.88); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
nav .inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; }
.logo span { color: var(--accent); }
.logo--light .logo span { color: var(--text); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--text2); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; padding: 4px 0; border-bottom: 1px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--text); border-bottom-color: var(--accent); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 8px 18px; border-radius: 8px; font-weight: 600; font-size: 0.88rem; border-bottom: none !important; transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.85; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger { display: block; width: 22px; height: 2px; background: var(--text2); position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 22px; height: 2px; background: var(--text2); }
.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* ── HERO ── */
.hero { padding: 100px 24px 80px; text-align: center; }
.hero--home { padding: 110px 24px 80px; }
.hero-badge { display: inline-block; background: var(--accent-dim); border: 1px solid rgba(249,115,22,0.3); color: var(--accent); font-size: 0.78rem; font-weight: 600; padding: 5px 14px; border-radius: 100px; margin-bottom: 28px; letter-spacing: 0.06em; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { font-size: 1.08rem; color: var(--text2); max-width: 520px; margin: 0 auto 48px; line-height: 1.75; }

/* ── TRACKS (3-col) ── */
.tracks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1060px; margin: 0 auto; }
@media (max-width: 800px) { .tracks { grid-template-columns: 1fr; max-width: 460px; } }
.track-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: left; position: relative; overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
.track-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.12); }
.track-card.personal { --c: var(--accent2); --d: var(--accent2-dim); }
.track-card.business  { --c: var(--accent);  --d: var(--accent-dim); }
.track-card.tech      { --c: var(--teal);     --d: var(--teal-dim); }
.track-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--c); opacity: 0.65; }
.track-icon { width: 44px; height: 44px; background: var(--d); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; }
.track-card h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 7px; color: var(--c); }
.track-card > p { font-size: 0.86rem; color: var(--text2); margin-bottom: 16px; line-height: 1.65; }
.track-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.track-list li { font-size: 0.82rem; color: var(--text2); padding-left: 15px; position: relative; }
.track-list li::before { content: '→'; position: absolute; left: 0; color: var(--c); font-weight: 600; font-size: 0.78rem; top: 1px; }
.track-cta { display: inline-block; background: var(--d); border: 1px solid var(--c); color: var(--c); padding: 7px 16px; border-radius: 8px; font-size: 0.83rem; font-weight: 600; transition: background 0.2s; }
.track-cta:hover { background: rgba(255,255,255,0.05); }

/* ── SECTION HEADINGS ── */
.section-label { text-transform: uppercase; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text3); margin-bottom: 10px; }
.section-title { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; line-height: 1.2; }
.section-sub { color: var(--text2); font-size: 0.97rem; max-width: 520px; line-height: 1.75; margin-bottom: 44px; }
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto 44px; }

/* ── EXAMPLE PILLS ── */
.pills-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 860px) { .pills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pills-grid { grid-template-columns: 1fr; } }
.pill { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 13px 15px; font-size: 0.84rem; color: var(--text2); display: flex; align-items: center; gap: 10px; }
.pill span { font-size: 0.95rem; flex-shrink: 0; }

/* ── OSCAR ── */
.oscar-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
@media (max-width: 760px) { .oscar-grid { grid-template-columns: 1fr; gap: 32px; } }
.oscar-orb { width: 145px; height: 145px; background: radial-gradient(circle at 38% 38%, var(--accent), #1a1a24 70%); border-radius: 50%; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; font-size: 3rem; box-shadow: 0 0 55px rgba(249,115,22,0.22); position: relative; }
.oscar-orb::after { content: ''; position: absolute; inset: -1px; border-radius: 50%; border: 1px solid rgba(249,115,22,0.28); }
.oscar-name { font-size: 1.25rem; font-weight: 800; text-align: center; margin-bottom: 3px; }
.oscar-title { color: var(--accent); font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; text-align: center; margin-bottom: 16px; }
.oscar-quote { background: var(--bg); border-left: 3px solid var(--accent); padding: 11px 15px; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--text2); font-size: 0.86rem; margin-bottom: 16px; line-height: 1.65; }
.oscar-langs { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
.lang-pill { background: var(--bg3); border: 1px solid var(--border); padding: 3px 9px; border-radius: 4px; font-size: 0.71rem; color: var(--text3); font-family: 'JetBrains Mono', monospace; }
.oscar-text h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.oscar-text p { color: var(--text2); font-size: 0.88rem; line-height: 1.8; margin-bottom: 11px; }
.oscar-text p:last-of-type { margin-bottom: 22px; }

/* ── JAMES ── */
.james-strip { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 26px; display: flex; align-items: center; gap: 18px; max-width: 760px; margin: 0 auto; }
@media (max-width: 560px) { .james-strip { flex-direction: column; text-align: center; } }
.james-avatar { width: 52px; height: 52px; background: var(--accent-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.james-name { font-weight: 700; font-size: 0.93rem; margin-bottom: 2px; }
.james-role { color: var(--accent); font-size: 0.73rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 7px; }
.james-desc { color: var(--text2); font-size: 0.84rem; line-height: 1.65; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 20px; }
.step-num { font-size: 2rem; font-weight: 800; color: var(--accent); opacity: 0.25; font-family: 'JetBrains Mono', monospace; margin-bottom: 12px; }
.step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 9px; }
.step-card p { color: var(--text2); font-size: 0.84rem; line-height: 1.65; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }
.pricing-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 20px 55px rgba(249,115,22,0.1); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 3px 13px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-price { font-size: 1.95rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 3px; }
.pricing-price span { font-size: 0.9rem; font-weight: 500; color: var(--text2); }
.pricing-name { font-size: 0.93rem; font-weight: 700; margin-bottom: 7px; }
.pricing-desc { font-size: 0.81rem; color: var(--text2); margin-bottom: 20px; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.pricing-features li { font-size: 0.81rem; color: var(--text2); padding-left: 19px; position: relative; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pricing-cta { display: block; text-align: center; background: var(--bg3); border: 1px solid var(--border); color: var(--text); padding: 10px; border-radius: 8px; font-weight: 600; font-size: 0.86rem; transition: border-color 0.2s; }
.pricing-card.featured .pricing-cta { background: var(--accent); border-color: var(--accent); color: #fff; }
.pricing-cta:hover { border-color: rgba(255,255,255,0.2); }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.testimonial-card .big { font-size: 1.55rem; font-weight: 800; color: var(--accent); margin-bottom: 10px; }
.testimonial-card blockquote { font-size: 0.84rem; color: var(--text2); line-height: 1.7; margin-bottom: 11px; font-style: italic; }
.testimonial-card cite { font-size: 0.74rem; color: var(--text3); font-style: normal; font-weight: 600; }

/* ── SERVICE LIST ── */
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .service-list { grid-template-columns: 1fr; } }
.service-item { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
.service-item .icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.service-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.service-item p { font-size: 0.82rem; color: var(--text2); line-height: 1.6; }

/* ── PROCESS LIST ── */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .process-grid { grid-template-columns: 1fr; } }
.process-item { display: flex; gap: 14px; align-items: flex-start; }
.process-item .num { width: 32px; height: 32px; background: var(--accent-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; color: var(--accent); flex-shrink: 0; }
.process-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.process-item p { font-size: 0.82rem; color: var(--text2); line-height: 1.65; }

/* ── CONTACT ── */
.contact-section { background: var(--bg2); border-top: 1px solid var(--border); text-align: center; }
.contact-box { max-width: 520px; margin: 0 auto; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 42px 36px; }
.contact-box h2 { font-size: 1.65rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 11px; }
.contact-box > p { color: var(--text2); font-size: 0.91rem; margin-bottom: 28px; line-height: 1.65; }
.btn-primary { display: inline-block; background: var(--accent); color: #fff; padding: 12px 28px; border-radius: 10px; font-weight: 700; font-size: 0.93rem; transition: opacity 0.2s; margin-bottom: 10px; }
.btn-primary:hover { opacity: 0.85; }
.contact-note { font-size: 0.76rem; color: var(--text3); margin-top: 10px; }
.email-link { color: var(--accent2); font-family: 'JetBrains Mono', monospace; font-size: 0.86rem; }

/* ── PAGE HEADER ── */
.page-header { padding: 70px 24px 50px; text-align: center; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; line-height: 1.1; }
.page-header p { font-size: 1rem; color: var(--text2); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 28px 24px; text-align: center; }
footer p { color: var(--text3); font-size: 0.79rem; }
footer a { color: var(--text3); transition: color 0.2s; }
footer a:hover { color: var(--text2); }

/* ── ANIMATIONS ── */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float { animation: float 4s ease-in-out infinite; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease-out forwards; }
