/* Global */
:root {
  --bg: #f7f9fc;
  --panel: #ffffff;
  --muted: #5e6a86;
  --text: #0f172a;
  --brand: #4f73ff;
  --brand-2: #9ae6ff;
  --card: #ffffff;
  --border: #e6ebf5;
  --shadow: 0 8px 28px rgba(17, 24, 39, .08);
  --header-bg: #1c1f33;
  --header-text: #f5f6ff;
  --header-muted: rgba(245, 246, 255, .7);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(79,115,255,.18), transparent 45%),
    radial-gradient(700px 500px at -10% -10%, rgba(154,230,255,.20), transparent 40%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.small { font-size: .875rem; color: var(--muted); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(10px); background: var(--header-bg); border-bottom: 1px solid rgba(255,255,255,.08); box-shadow: 0 10px 30px rgba(12, 14, 25, .35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.logo { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 14px; background: #ffffff; box-shadow: var(--shadow); padding: 6px; }
.logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-text h1 { margin: 0; font-size: 1.05rem; font-weight: 700; letter-spacing: .2px; color: var(--header-text); }
.brand-text .tagline { margin: 2px 0 0; color: var(--header-muted); font-size: .92rem; }
.top-nav a { color: var(--header-muted); margin-left: 18px; font-weight: 600; }
.top-nav a:hover { color: var(--header-text); }

/* Hero */
.hero { padding: 96px 0 54px; }
.hero-inner { display: grid; grid-template-columns: minmax(320px, 420px) minmax(0, 1fr); gap: 72px; align-items: center; }
.hero-copy { max-width: 620px; text-align: left; justify-self: stretch; padding-left: 24px; }
.hero-copy h2 { margin: 0 0 14px; font-size: clamp(2rem, 3.8vw, 2.6rem); line-height: 1.2; }
.hero-copy p { margin: 0 0 28px; color: var(--muted); max-width: 65ch; }
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 18px; border-radius: 12px; border: 1px solid var(--border); transition: .2s ease; font-weight: 700; }
.btn.primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #0b1120; border-color: transparent; box-shadow: 0 8px 20px rgba(79, 115, 255, .25); }
.btn.primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn.outline { background: #ffffff; color: var(--text); box-shadow: var(--shadow); }
.btn.outline:hover { background: rgba(255,255,255,.04); transform: translateY(-1px); }

.hero-figure { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.profile-card { position: relative; padding: 26px; background: linear-gradient(180deg, #ffffff, #f8fbff); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow); width: 100%; max-width: 420px; text-align: center; }
.profile-photo { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; display: inline-block; box-shadow: 0 12px 28px rgba(17,24,39,.18); }
.profile-card figcaption { margin-top: 12px; display: grid; gap: 4px; }
.profile-card figcaption strong { font-size: 1.05rem; }
.profile-card figcaption span { color: var(--muted); font-size: .95rem; }
.profile-social { display: flex; justify-content: center; gap: 14px; margin-top: 20px; }
.profile-social-link { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; border: 1px solid var(--border); background: var(--panel); color: var(--text); transition: .2s ease; box-shadow: var(--shadow); padding: 8px; }
.profile-social-link:hover { transform: translateY(-2px); filter: brightness(1.04); }
.social-icon { width: 36px; height: 36px; display: block; object-fit: contain; }

/* Sections */
.section { padding: 72px 0; }
.section h3 { margin: 0 0 18px; font-size: 1.4rem; }

.services .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 22px; box-shadow: var(--shadow); }
.card h4 { margin: 0 0 8px; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); }

.connect .resource-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.resource-card { background: #ffffff; border-radius: 24px; padding: 32px; border: 1px solid rgba(15,23,42,.08); box-shadow: 0 20px 60px rgba(15,17,32,.12); position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.resource-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.resource-card:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(15,17,32,.18); }
.resource-banner { margin: -32px -32px 24px; padding: 12px 24px; background: repeating-linear-gradient(45deg, rgba(255, 173, 66, .85), rgba(255, 173, 66, .85) 18px, rgba(255, 225, 164, .95) 18px, rgba(255, 225, 164, .95) 36px); color: #7c2d12; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; text-align: center; }
.resource-card-link { display: flex; flex-direction: column; gap: 16px; color: inherit; text-decoration: none; cursor: default; height: 100%; }
.resource-card-header { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.resource-icon { width: 70px; height: 70px; border-radius: 18px; display: grid; place-items: center; font-size: 2.1rem; box-shadow: 0 14px 30px rgba(17,23,39,.16); }
.resource-icon img { width: 70%; height: 70%; object-fit: contain; display: block; }
.icon-blue { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #ffffff; }
.icon-gradient { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #ffffff; }
.icon-instagram { background: #ffffff; border: 1px solid var(--border); }
.resource-card-title h4 { margin: 0; font-size: 1.35rem; }
.subtitle { color: var(--muted); font-size: .92rem; margin: 6px 0 0; }
.resource-features { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.resource-feature { display: flex; gap: 14px; background: #f7fafc; border-radius: 14px; padding: 14px 16px; align-items: flex-start; }
.resource-feature p { margin: 4px 0 0; font-size: .92rem; color: var(--muted); line-height: 1.45; }
.feature-check { color: #2fbf71; font-size: 1.3rem; font-weight: 700; flex-shrink: 0; }
.resource-cta { margin-top: 10px; width: 100%; justify-content: center; cursor: pointer; }
.social-proof { text-align: center; font-size: .92rem; color: var(--muted); margin-top: 16px; border-top: 1px solid var(--border); padding-top: 16px; }
.resource-badge { display: inline-block; margin-top: 10px; padding: 8px 18px; border-radius: 999px; background: #fff4e5; color: #c05621; font-weight: 600; font-size: .9rem; text-align: center; }

.contact-card { background: linear-gradient(180deg, #ffffff, #f4f7ff); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: rgba(255,255,255,.85); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; gap: 12px; flex-wrap: wrap; }
.footer-brand { font-weight: 800; letter-spacing: .6px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.contact a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.contact p { margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 42px; text-align: center; }
  .hero-copy { text-align: center; justify-self: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .cta-group { justify-content: center; }
  .hero-figure { align-items: center; }
  .services .cards, .connect .resource-cards { grid-template-columns: 1fr; }
}
