@charset "UTF-8";
/* CSS Document */

/* =========================================================
   TOKENS (base + themes)
   ========================================================= */
:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --soft: #f8fafc;

  --brand: #2563eb;
  --brand-700: #1d4ed8;
  --ring: rgba(37, 99, 235, .18);

  --shadow: 0 12px 30px rgba(2, 6, 23, .08);
  --radius: 16px;
  --max: 1120px;

  /* Heading + subhead accents */
  --heading-solid: var(--text);
  --heading-grad-1: var(--brand);
  --heading-grad-2: #06b6d4;
  --subhead: color-mix(in srgb, var(--text) 78%, var(--brand));
  --eyebrow: var(--brand);
}

/* Theme: Luxury Graphite + Gold */
html[data-theme="gold"]{
  --bg: #fff7ea;
  --text: #141316;
  --muted: #5a5660;
  --border: #eadcc7;
  --soft: #fff1da;

  --brand: #b8892b;
  --brand-700: #8f6a1f;
  --ring: rgba(184, 137, 43, .22);

  --shadow: 0 12px 30px rgba(20, 19, 22, .10);

  --heading-solid: #141316;
  --heading-grad-1: #b8892b;
  --heading-grad-2: #e6c16a;
  --subhead: #6b5630;
  --eyebrow: #8f6a1f;
}

/* Theme: Modern Forest + Sand */
html[data-theme="forest"]{
  --bg: #fbf3e7;
  --text: #12211b;
  --muted: #55645d;
  --border: #e6d6c3;
  --soft: #f6e8d7;

  --brand: #0f8a6a;
  --brand-700: #0b6a52;
  --ring: rgba(15, 138, 106, .20);

  --shadow: 0 12px 30px rgba(18, 33, 27, .10);

  --heading-solid: #12211b;
  --heading-grad-1: #0f8a6a;
  --heading-grad-2: #f3b95f;
  --subhead: #4c5e56;
  --eyebrow: #0b6a52;
}

/* Theme: Creative Plum + Peach */
html[data-theme="plum"]{
  --bg: #fff3f1;
  --text: #1f1422;
  --muted: #5d5161;
  --border: #ead0d8;
  --soft: #ffe7e2;

  --brand: #7c3aed;
  --brand-700: #5b21b6;
  --ring: rgba(124, 58, 237, .20);

  --shadow: 0 12px 30px rgba(31, 20, 34, .10);

  --heading-solid: #1f1422;
  --heading-grad-1: #7c3aed;
  --heading-grad-2: #fb7185;
  --subhead: #5a4c60;
  --eyebrow: #5b21b6;
}

/* =========================================================
   BASE
   ========================================================= */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
  border-color: var(--brand);
}

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-mark{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--brand);
  display:grid;
  place-items:center;
  color:#fff;
  font-weight: 900;
  box-shadow: 0 10px 20px color-mix(in srgb, var(--brand) 28%, transparent);
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a{
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-links a:hover{
  background: var(--soft);
  color: var(--text);
}

.nav-cta{
  display:flex;
  align-items:center;
  gap: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); background: var(--soft); }

.btn.primary{
  background: var(--brand);
  border-color: var(--brand);
  color:#fff;
}
.btn.primary:hover{
  background: var(--brand-700);
  border-color: var(--brand-700);
}

/* Mobile nav */
.menu-toggle{ display:none; }
.mobile-panel{ display:none; border-top: 1px solid var(--border); }
.mobile-panel a{ display:block; padding: 12px 2px; color: var(--muted); font-weight: 700; }
.mobile-panel a:hover{ color: var(--text); }

/* Theme switch (icon + select, aligned perfectly) */
.theme-switch{
  display:flex;
  align-items:center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  height: 40px;
}

.theme-pill{
  height: 40px;
  width: 42px;
  border: 0;
  background: var(--soft);
  color: var(--muted);
  display:grid;
  place-items:center;
  cursor: default;
}
.theme-pill svg{ opacity: .92; }

.theme-select{
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0 36px 0 12px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.theme-switch:hover{ background: var(--soft); }

/* Hide theme switch on very small screens if desired */
@media (max-width: 720px){
  .theme-switch{ display:none; }
}

/* =========================================================
   SECTIONS / TYPOGRAPHY
   ========================================================= */
section{ padding: 32px 0; }

.section-head{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-bottom: 22px;
  max-width: 720px;
}

.eyebrow{
  font-size: 13px;
  font-weight: 900;
  color: var(--eyebrow);
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2{
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1{ font-size: clamp(34px, 4vw, 54px); }
h2{ font-size: clamp(26px, 3vw, 34px); }

p{ margin: 0; color: var(--muted); font-size: 16px; }
.lead{ font-size: 18px; color: var(--subhead); }
.section-head p{ color: var(--subhead); }

/* Gradient headings */
.grad{
  background: linear-gradient(90deg, var(--heading-grad-1), var(--heading-grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Optional underline flourish */
.h-underline{
  position: relative;
  display: inline-block;
}
.h-underline::after{
  content:"";
  display:block;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--heading-grad-1), transparent);
  opacity: .95;
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  padding: 72px 0 48px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}

.hero-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card .mini{
  display:grid;
  gap: 12px;
}

.stat{
  border: 1px solid var(--border);
  border-radius: 14px;
  background:#fff;
  padding: 14px;
}
.stat b{ display:block; color: var(--text); font-size: 14px; }
.stat span{ color: var(--muted); font-size: 13px; }

.hero-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hint{ font-size: 13px; color: var(--muted); }

/* =========================================================
   CARDS / GRIDS
   ========================================================= */
.grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  padding: 18px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(2, 6, 23, .07);
}

.card h3{
  margin: 10px 0 6px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.card p{
  font-size: 14px;
  color: var(--muted);
}

.icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  color: var(--brand);
  font-weight: 900;
}

/* =========================================================
   STEPS
   ========================================================= */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background:#fff;
}
.step .num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--soft);
  border: 1px solid var(--border);
  display:grid;
  place-items:center;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
}
.step h3{ margin: 0 0 6px; font-size: 16px; }
.step p{ font-size: 14px; }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio-card{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.thumb{
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 14px;
  border: 1px solid var(--border);
  background:
    linear-gradient(0deg, color-mix(in srgb, var(--soft) 100%, transparent), color-mix(in srgb, var(--soft) 100%, transparent)),
    repeating-linear-gradient(45deg, rgba(226,232,240,.65) 0 10px, rgba(248,250,252,.65) 10px 20px);
  overflow:hidden;
  position: relative;
}
.thumb::after{
  content:"Preview";
  position:absolute;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  background:#fff;
  border: 1px solid var(--border);
}

/* =========================================================
   FUTURE CALLOUT
   ========================================================= */
.callout{
  border: 1px solid color-mix(in srgb, var(--brand) 26%, transparent);
  background: color-mix(in srgb, var(--brand) 8%, transparent);
  border-radius: var(--radius);
  padding: 22px;
}
.callout h3{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

/* =========================================================
   FORMS
   ========================================================= */
form{
  display:grid;
  gap: 12px;
  max-width: 620px;
}
label{
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  display:block;
  margin-bottom: 6px;
}
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  color: var(--text);
}
textarea{ min-height: 120px; resize: vertical; }

/* =========================================================
   FOOTER
   ========================================================= */
footer{
  border-top: 1px solid var(--border);
  padding: 22px 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-row{
  display:flex;
  gap: 16px;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}
.footer-links a:hover{ color: var(--text); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .nav-links{ display:none; }
  .menu-toggle{ display:inline-flex; }
  .mobile-panel{ display:block; padding: 8px 0 14px; }
  .grid-4, .grid-3{ grid-template-columns: 1fr; }
  section{ padding: 52px 0; }
  .hero{ padding: 60px 0 40px; }
}

/* Premium hero side card */
.hero-card--premium {
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--soft) 92%, transparent),
      #fff
    );
}

/* List reset */
.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hero-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .12s ease, box-shadow .12s ease;
}

.hero-point:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Icon bubble */
.hero-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  color: var(--brand);
  border: 1px solid color-mix(in srgb, var(--brand) 28%, transparent);
}

/* Text hierarchy */
.hero-point strong {
  display: block;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.hero-point p {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--muted);
}
