:root {
  --bg: #f7f8fb;
  --panel: #ffffff;
  --card: #ffffff;
  --text: #1a1d2b;
  --muted: #58607a;
  --border: #e6e8f0;
  /* --accent: #ffd041; brand accent original */
  --accent: #F5B800;
  --accent-dark: #F5B800;
  --accent-contrast: #7a5a00;
  --success: #2aa87b;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 26, 40, 0.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }
.section h2 { font-size: 32px; margin: 0 0 24px; letter-spacing: -0.01em; }
.section h3 { font-size: 22px; margin: 0 0 8px; }
.section h4 { font-size: 16px; margin: 16px 0 8px; color: var(--muted); font-weight: 600; }

/* Section transitions (soft gradient bands) */
.section {
  position: relative;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw; /* bleed to viewport edges without causing overflow */
  transform: translateX(-50%);
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(247,248,251,1) 40%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(1.2) blur(10px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.site-title { margin: 0; font-size: 20px; line-height: 1; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img {
  display: block;
  height: 44px;
  width: auto;
}
.site-nav { display: none; gap: 20px; }
.site-nav a { color: var(--muted); text-decoration: none; font-weight: 500; }
.site-nav a:hover { color: var(--text); }
.nav-cta { display: none; }

@media (min-width: 880px) {
  .site-nav { display: flex; }
  .nav-cta { display: block; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { filter: brightness(1.05); }
.btn-secondary { background: var(--panel); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: #2f3144; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: #cfd4e4; }
.btn-link { background: transparent; color: var(--muted); height: auto; padding: 0; border: 0; text-decoration: underline; }

.lead { font-size: 20px; color: var(--muted); max-width: 760px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 10px; }
.trust { color: var(--muted); font-size: 13px; margin-top: 12px; }

.hero {
  padding-top: 96px;
  padding-bottom: 40px;
}
.hero h1 { font-size: 48px; letter-spacing: -0.02em; margin: 0 0 12px; }
.hero h2 { font-size: 48px; letter-spacing: -0.02em; margin: 0 0 12px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }
.hero-visual { position: relative; min-height: 280px; display: grid; place-items: center; }
.hero-image { max-width: 520px; width: 100%; height: auto; filter: drop-shadow(0 18px 30px rgba(20,26,40,.12)); }

@media (max-width: 720px) {
  .hero { padding-top: 48px; }
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 80px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.logo-strip .logo { max-height: 32px; max-width: 100%; height: auto; width: auto; justify-self: center; align-self: center; display: block; border: 0; border-radius: 0; }
@media (min-width: 720px) { .logo-strip { grid-template-columns: repeat(5, 1fr); } }

.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

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

/* Pillars redesign (no cards) */
.pillars {
  --ring: rgba(255, 208, 65, .25);
  background:
    radial-gradient(600px 140px at 0% 10%, rgba(255,244,214,.5), transparent 60%),
    radial-gradient(800px 160px at 100% 90%, rgba(255,244,214,.35), transparent 60%);
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 720px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.pillar {
  position: relative;
  padding: 12px 8px 12px 14px;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: -6px -8px -6px -8px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,208,65,0) 30%, rgba(255,208,65,.22) 50%, rgba(255,208,65,0) 70%);
  z-index: 0;
  border-radius: 8px;
}
.pillar-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.pillar-icon {
  width: 36px; height: 36px; border-radius: 10px; flex: 0 0 36px;
  display: grid; place-items: center; font-weight: 800; color: #7a5a00;
  background: radial-gradient(60% 60% at 30% 20%, #fff1b8, #ffd041);
  box-shadow: 0 0 0 6px var(--ring);
}
.pillar h3 { margin: 0; position: relative; z-index: 1; }
.pillar p { margin: 0; color: var(--muted); position: relative; z-index: 1; }

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 980px) {
  .packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.package header .tag { color: var(--muted); margin: 6px 0 4px; }
.package header .outcomes { color: var(--muted); margin: 0 0 8px; }
.package footer { margin-top: 12px; }

/* Packages comparison table */
.packages-table-wrap { padding: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; position: relative; }
.packages-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.packages-table thead th {
  position: sticky; top: 0;
  background: #fbfcff;
  font-size: 15px; text-align: left; color: #3d4460; font-weight: 700; letter-spacing: -0.01em;
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
}
.packages-table thead th.col-plan { text-align: center; }
.packages-table thead th:first-child { position: sticky; left: 0; z-index: 3; box-shadow: 6px 0 8px -6px rgba(26,29,43,.08); }
.packages-table thead th:first-child { border-top-left-radius: 12px; }
.packages-table thead th:last-child { border-top-right-radius: 12px; }
.packages-table tbody th,
.packages-table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--border); background: #fff; }
.packages-table tbody tr:nth-child(odd) th,
.packages-table tbody tr:nth-child(odd) td { background: #fcfdff; }
.packages-table tbody td { text-align: center; font-weight: 700; }
.packages-table .feature-name { text-align: left; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 8px; }
.packages-table .check { color: #1da96f; }
.packages-table .optional { color: #9a7a00; }
.packages-table .tip {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: #eef2ff; color: #4a58a3; border: 1px solid #dfe6ff;
  font-size: 12px; line-height: 1; cursor: help; border: 0; padding: 0; position: relative;
}
.packages-table .tip::after {
  content: attr(data-tip);
  position: absolute; left: calc(100% + 8px); top: 50%; transform: translateY(-50%);
  max-width: 280px; width: max-content; white-space: normal;
  background: #1a1d2b; color: #fff; border-radius: 8px; padding: 8px 10px; box-shadow: 0 8px 24px rgba(20,26,40,.18);
  opacity: 0; visibility: hidden; transition: opacity .15s ease; z-index: 20;
}
.packages-table .tip::before {
  content: ""; position: absolute; left: 100%; top: 50%; transform: translate(0,-50%);
  border-width: 6px; border-style: solid; border-color: transparent transparent transparent #1a1d2b; opacity: 0; visibility: hidden; transition: opacity .15s ease; z-index: 21;
}
.packages-table .tip:hover::after,
.packages-table .tip:focus-visible::after,
.packages-table .tip:hover::before,
.packages-table .tip:focus-visible::before { opacity: 1; visibility: visible; }
.legend { font-size: 12px; color: var(--muted); padding: 10px 14px; }
.legend .legend-mark.optional { color: #9a7a00; font-weight: 700; font-size: 0; line-height: 0; display: inline-block; width: 16px; height: 16px; vertical-align: -2px; }
.legend .legend-mark.optional::before {
  content: "";
  display: inline-block; width: 16px; height: 16px;
  background-repeat: no-repeat; background-size: 16px 16px; background-position: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239a7a00'><path d='M12 2.8l2.7 5.5 6.1.9-4.4 4.3 1 6.1L12 17.8 6.6 19.6l1-6.1L3.2 9.2l6.1-.9L12 2.8z'/></svg>");
}

/* Make first column sticky for readability on horizontal scroll */
.packages-table tbody th.feature-name { position: sticky; left: 0; z-index: 2; box-shadow: 6px 0 8px -6px rgba(26,29,43,.08); }
.packages-table tbody tr:nth-child(even) th.feature-name { background: #ffffff; }
.packages-table tbody tr:nth-child(odd) th.feature-name { background: #fcfdff; }

/* Subtle vertical separators (skip the first column) */
.packages-table thead th:not(:first-child),
.packages-table tbody td:not(:first-child) { border-left: 1px dashed var(--border); }

/* Row hover highlight */
.packages-table tbody tr:hover th,
.packages-table tbody tr:hover td { background: #fffaf0; }
.packages-table tbody tr:hover th.feature-name { background: #fffaf0; }

/* Plan column sizing for readability */
.packages-table thead th.col-plan { min-width: 128px; }

/* Improve visibility of checks and optionals */
/* Keep emoji cells simple on all screens */
.packages-table tbody td.check { color: #1da96f; font-size: 0; line-height: 0; }
.packages-table tbody td.check::before {
  content: "";
  display: inline-block; width: 18px; height: 18px;
  background-repeat: no-repeat; background-size: 18px 18px; background-position: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231da96f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17L4 12'/></svg>");
}
.packages-table tbody td.optional { color: #9a7a00; font-size: 0; line-height: 0; }
.packages-table tbody td.optional::before {
  content: "";
  display: inline-block; width: 18px; height: 18px;
  background-repeat: no-repeat; background-size: 18px 18px; background-position: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239a7a00'><path d='M12 2.8l2.7 5.5 6.1.9-4.4 4.3 1 6.1L12 17.8 6.6 19.6l1-6.1L3.2 9.2l6.1-.9L12 2.8z'/></svg>");
}

/* Small-screen adjustments */
@media (max-width: 720px) {
  .packages-table thead th:first-child { position: static; left: auto; box-shadow: none; }
  .packages-table tbody th.feature-name { position: static; left: auto; box-shadow: none; }
  .packages-table thead th,
  .packages-table tbody th,
  .packages-table tbody td { padding: 12px 12px; }
  .packages-table thead th.col-plan { min-width: 112px; }
  .packages-table thead th:not(:first-child),
  .packages-table tbody td:not(:first-child) { border-left: 0; }
  .packages-table tbody tr:hover th,
  .packages-table tbody tr:hover td { background: inherit; }
  .packages-table-wrap::after {
    content: 'Scroll →';
    position: absolute; top: 6px; right: 10px;
    font-size: 12px; color: #9aa3ba; background: rgba(255,255,255,.95);
    border: 1px solid var(--border); padding: 2px 8px; border-radius: 999px;
    box-shadow: var(--shadow);
  }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,1px,1px); white-space: nowrap; border: 0; }

.checklist { padding-left: 0; margin: 0; list-style: none; }
.checklist li { position: relative; padding-left: 26px; margin: 10px 0; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--success), #1bb480);
  box-shadow: 0 0 0 3px rgba(39,211,153,.15);
}
.checklist-tight li { margin: 6px 0; }

/* Add-ons redesign */
.add-ons {
  --g1: #f5f3ff;
  --g2: #ecfeff;
  --g3: #fff7ed;
  background:
    radial-gradient(1200px 200px at 0% 0%, var(--g1), transparent 60%),
    radial-gradient(900px 180px at 100% 100%, var(--g2), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0), #ffffff 30%, rgba(255,255,255,0) 100%);
}
.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 860px) {
  .addons-grid { grid-template-columns: repeat(4, 1fr); }
}
.addon {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.addon::after {
  content: "";
  position: absolute; inset: -1px -1px auto -1px; height: 6px;
  background: linear-gradient(90deg, #6b8cff, #ff9a6b, #ffd041);
}
.addon h3 { margin: 0 0 6px; font-size: 18px; }
.addon p { margin: 0; color: var(--muted); }

/* Process as compact Gantt-like staggered bars */
.process {
  --accentA: #485696;
  --accentB: #E85D75;
  background:
    radial-gradient(1000px 200px at 50% 0%, rgba(107,140,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0), #ffffff 30%, rgba(255,255,255,0) 100%);
  padding: 92px 0;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.step {
  display: grid;
  grid-template-columns: 40px 160px 1fr;
  gap: 10px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
}
.step-index {
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 8px;
  color: #fff; font-weight: 700;
  background: linear-gradient(180deg, var(--accentA), var(--accentB));
  box-shadow: 0 8px 18px rgba(107,140,255,.25);
}
.process .step-title { margin: 0; font-size: 16px; letter-spacing: -0.01em; }
.step-right { display: grid; grid-template-columns: 1fr; gap: 6px; align-items: center; }
.step-desc { margin: 0; color: var(--muted); font-size: 14px; }
.step-track {
  position: relative;
  height: 12px;
  background: #f4f6fb;
  border: 1px dashed var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.step-bar {
  position: absolute;
  top: 2px; bottom: 2px; right: auto;
  left: calc(var(--indent, 0) * 10%);
  width: 60%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accentA), var(--accentB));
  box-shadow: 0 4px 10px rgba(107,140,255,.18);
}
@media (max-width: 720px) {
  .step { grid-template-columns: 32px 120px 1fr; padding: 8px; }
  .process .step-title { font-size: 13px; }
  .step-desc { font-size: 13px; }
  .step-bar { left: calc(var(--indent, 0) * 7%); width: 68%; }
}

/* Social proof aside (toned down) */
.social-proof {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.social-proof p { margin: 0 0 12px; color: var(--muted); }
.proof-media { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 720px) { .proof-media { grid-template-columns: 1fr; } }
.proof-figure { margin: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: #fff; }
.proof-figure img { display: block; width: 100%; height: auto; }
.proof-figure figcaption { padding: 8px 10px; }

/* Dedicated social proof section */
/*.proof-section {
  background:
    radial-gradient(1000px 220px at 0% 0%, rgba(255,244,214,.45), transparent 60%),
    radial-gradient(1000px 220px at 100% 100%, rgba(107,140,255,.12), transparent 60%
});*/
.proof-header { margin: 0 0 12px; }
@media (min-width: 880px) { .proof-header { margin: 0 0 18px; } }
.proof-top {
  display: grid;
  grid-template-columns: 1.2fr .6fr .6fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
}
@media (max-width: 880px) { .proof-top { grid-template-columns: 1fr; } }
.proof-copy { margin: 0; color: var(--muted); max-width: 720px; }
.metric {
  background: var(--panel);
  border: 1px dashed var(--border);
  border-radius: 14px;
  padding: 18px;
  text-align: left;
}
.metric-value { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--accent); }
.metric-label { color: var(--muted); font-weight: 600; }
.proof-card {
  position: relative;
  background: #f5f5f5;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
  overflow: visible;
}
@media (min-width: 980px) {
  .proof-top { gap: 60px; margin-bottom: 70px; }
  .metric { padding: 20px; }
  .proof-card { padding: 90px; }
}
.proof-card::before { content: none; }

/* Subtle lifted shadow similar to the YouTube video card */
.proof-card::after {
  content: "";
  position: absolute; inset: auto 24px -16px 24px; height: 40px;
  background: radial-gradient(50% 20px at 50% 0%, rgba(0,0,0,.15), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}
.proof-card-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 0;
}

.proof-slider { position: relative; }
.proof-slider .slide { display: none; }
.proof-slider .slide.is-active { display: block; }
.slider-indicators {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.indicator {
  width: 45px;
  height: 4px;
  border-radius: 2px;
  background: #c8cede;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.indicator.is-active { background: #111318; }
.indicator:focus { outline: 2px solid var(--accent); outline-offset: 2px; }

.logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 8px 0 24px; }
.logo {
  height: 56px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
@media (min-width: 720px) {
  .logos { grid-template-columns: repeat(5, 1fr); }
}

.testimonial { margin: 0; }
.testimonial blockquote { margin: 0 0 8px; font-size: 18px; }
.testimonial figcaption { color: var(--muted); font-size: 14px; }
.testimonial.highlight { background: #ffefe8; border: 1px solid #ffd5c6; border-radius: 14px; padding: 18px; color: #7a2d18; }

.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--panel); }
.faq-list summary { cursor: pointer; padding: 14px 16px; }
.faq-list .answer { padding: 0 16px 16px; color: var(--muted); }

.final-cta { text-align: left; }
.final-cta .cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: var(--accent-dark);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 30px 60px rgba(20,26,40,.12);
  overflow: hidden;
}
@media (min-width: 900px) {
  .final-cta .cta-banner {
    padding: 40px 44px;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
  }
}
.final-cta .cta-content { max-width: 760px; color: #fff; }
.final-cta h2 { font-size: 34px; line-height: 1.15; margin: 0 0 10px; color: #fff; letter-spacing: -0.02em; }
.final-cta .cta-text { margin: 0 0 18px; color: rgba(255,255,255,.95); }
.final-cta .cta-text a.cta-mail { color: #fff; font-weight: 700; text-decoration: underline; }
.btn-on-accent {
  background: #ffffff;
  color: #1a1d2b;
  border: 1px solid rgba(255,255,255,.15);
}
.btn-on-accent:hover { filter: brightness(0.98); }
.btn-ghost-on-accent {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
}
.btn-ghost-on-accent:hover { border-color: #fff; }

/* CTA visual */
.cta-visual { position: relative; display: block; }
@media (min-width: 900px) { .cta-visual { display: block; } }
.cta-photo {
  width: 300px; height: auto; display: block;
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(20,26,40,.25));
  transform: translateY(4px);
}
@media (max-width: 899px) {
  .cta-photo { max-width: 200px; }
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  background: var(--accent);
  min-height: 96px;
  display: flex;
  align-items: center;
}
.footer-inner { display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; row-gap: 8px; }
.small { color: var(--muted); font-size: 12px; }
.site-footer .small { color: #1a1d2b; font-size: 13px; }
.site-footer a.small { color: #1a1d2b; }
.site-footer a.small { text-decoration: none; }
.site-footer a.small:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.site-footer .icon-link { display: inline-flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 8px; }
.site-footer .icon-link:hover { background: rgba(255,255,255,.3); text-decoration: none; }
.footer-icon { display: inline-block; vertical-align: middle; color: #1a1d2b; }

/* Accessibility focus outlines */
a:focus, button:focus, summary:focus { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}


/* YouTube section */
.youtube {
  background:
    radial-gradient(900px 180px at 0% 10%, rgba(255,244,214,.35), transparent 60%),
    radial-gradient(1000px 220px at 100% 90%, rgba(107,140,255,.10), transparent 60%);
  padding-bottom: 28px;
}
.youtube .eyebrow { color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.youtube h2 { font-size: 32px; margin: 0 0 24px; letter-spacing: -0.01em; }
.youtube .channel-name { font-size: 22px; margin: 0 0 8px; letter-spacing: -0.01em; }
.youtube-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}
@media (min-width: 980px) {
  .youtube-grid { grid-template-columns: 1.05fr .95fr; }
}
.youtube-copy p { color: var(--muted); margin: 0 0 12px; }
.youtube .video-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
}
.youtube .video-label {
  display: inline-block;
  align-self: start;
  margin: 0 0 10px;
  padding: 6px 14px;
  background: #273553;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(20,26,40,.12);
}
.youtube .video-card::after {
  content: "";
  position: absolute; inset: auto 24px -16px 24px; height: 40px;
  background: radial-gradient(50% 20px at 50% 0%, rgba(0,0,0,.15), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}
.youtube .video-embed {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
}

/* Tools section */
.tools {
  background:
    radial-gradient(900px 180px at 0% 10%, rgba(255,244,214,.25), transparent 60%),
    radial-gradient(1000px 220px at 100% 90%, rgba(107,140,255,.08), transparent 60%);
  padding-top: 20px;
  padding-bottom: 28px;
}
.tools h2 { font-size: 32px; margin: 0 0 20px; letter-spacing: -0.01em; }
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.tool-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.tool-card:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(20,26,40,.12); }
.tool-logo {
  width: 64px; height: 64px; border-radius: 12px; display: block; border: 0;
  background: #fff; object-fit: contain; aspect-ratio: 1 / 1; padding: 6px;
}
.tool-title { margin: 0 0 6px; font-size: 18px; letter-spacing: -0.01em; }
.tool-desc { margin: 0; color: var(--muted); }

/* Plugins section */
.plugins {
  background:
    radial-gradient(900px 180px at 0% 10%, rgba(255,244,214,.15), transparent 60%),
    radial-gradient(1000px 220px at 100% 90%, rgba(107,140,255,.06), transparent 60%);
  padding-top: 20px;
}
.plugins h2 { font-size: 32px; margin: 0 0 20px; letter-spacing: -0.01em; }
.plugins-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .plugins-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.plugin-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.plugin-card:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(20,26,40,.12); }
.plugin-icon { width: 28px; height: 28px; display: block; border-radius: 8px; background: #fff; object-fit: contain; padding: 3px; margin: 0 0 6px 0; }
.plugins .plugin-title { margin: 0 0 4px; font-size: 13px; letter-spacing: -0.005em; }
.plugins .plugin-desc { margin: 0; color: var(--muted); font-size: 13px; }

/* Small button variant for compact cards */
.btn-sm { height: 30px; padding: 0 12px; font-size: 12px; border-radius: 8px; }

/* Top Content (compact link groups) */
.top-content h2 { font-size: 32px; margin: 0 0 24px; letter-spacing: -0.01em; }
.top-content .link-groups {
  column-count: 1;
  column-gap: 12px;
}
@media (min-width: 720px) { .top-content .link-groups { column-count: 2; } }
@media (min-width: 980px) { .top-content .link-groups { column-count: 3; } }
.top-content .link-group {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  margin: 0 0 12px;
  display: block;
}
.top-content .link-group h4 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
}
.top-content .link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.top-content .link-list li { margin: 6px 0; }
.top-content .link-list-tight li { margin: 4px 0; }
.top-content .link-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
}
.top-content .link-list a:hover { text-decoration: underline; }
.top-content em { color: var(--muted); }
