@charset "UTF-8";
/*
 * app.scss — Plan Then Code (v3)
 * Compiled to public/css/app.css via: npm run build:scss
 *
 * Structure:
 *   colors.css   — design tokens (light/dark via [data-theme])
 *   _mixins.scss — card-base, num-badge, grid-2col, hover-lift, mono-label
 *   _base.scss   — reset, body, global a, utility classes
 *   _layout.scss — wrap, header, nav, hero, sections, footer
 *   _components.scss — about, svc, prod, reco, cards, cat-pills, article-image
 *   _pages.scss  — article, offer, contact, talks
 */
:root {
  --bg: var(--color-background);
  --bg-elev: var(--color-surface);
  --fg: var(--color-text-primary);
  --fg-muted: var(--color-text-muted);
  --border: var(--color-border);
  --code-bg: var(--color-code-bg);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
}

.c1 {
  color: var(--accent);
  font-weight: 700;
}

.c2 {
  color: var(--secondary);
  font-weight: 700;
}

.wrap {
  max-width: var(--width-reading);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 18px;
  }
}

.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(10px);
  z-index: 9;
}

.hrow {
  max-width: var(--width-reading);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 640px) {
  .hrow {
    padding: 14px 18px;
  }
}

.brand {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--fg);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.brand .mark {
  vertical-align: middle;
  margin: 0 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-nav a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--fg);
}
.site-nav a.active::before {
  content: "» ";
  color: var(--accent);
}
.site-nav a.nav-cta {
  color: var(--accent-fg);
  font-size: 14px;
  padding: 8px 16px;
}
.site-nav a.nav-cta:hover {
  color: var(--accent-fg);
}
.site-nav a.nav-cta::before {
  content: none;
}
.site-nav a.nav-cta.active::before {
  content: "» ";
  color: var(--accent-fg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0 9px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle .nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded=true] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded=true] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 720px) {
  .hrow {
    flex-wrap: wrap;
  }
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease, margin 0.25s ease;
    margin-top: 0;
  }
  .site-nav.open {
    max-height: 420px;
    opacity: 1;
    margin-top: 12px;
  }
  .site-nav a {
    padding: 12px 8px;
    font-size: 16px;
    border-radius: 8px;
  }
  .site-nav a:hover {
    background: var(--bg-elev);
  }
  .site-nav a.nav-cta {
    justify-content: center;
    margin-top: 4px;
  }
  .site-nav .theme-toggle {
    align-self: flex-start;
    margin-top: 4px;
  }
}
.theme-toggle {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--fg-muted);
  border-radius: 7px;
  padding: 5px 9px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-mono);
}
.theme-toggle:hover {
  color: var(--fg);
  border-color: var(--color-border-hover);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hrow-sub {
  padding-top: 0;
  padding-bottom: 12px;
  justify-content: flex-end;
}

.nav-newsletter {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-newsletter-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  margin-right: 2px;
}
.nav-newsletter input {
  font: inherit;
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--bg-elev);
  color: var(--fg);
  width: 200px;
}
.nav-newsletter input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.nav-newsletter button {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--accent-fg);
  border-radius: 7px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-newsletter button:hover {
  background: var(--accent-hover);
}
@media (max-width: 640px) {
  .nav-newsletter {
    width: 100%;
  }
  .nav-newsletter .nav-newsletter-label {
    display: none;
  }
  .nav-newsletter input {
    flex: 1;
    width: auto;
  }
}

@media (max-width: 640px) {
  .hrow-sub {
    justify-content: stretch;
  }
}
.hero {
  padding: 76px 0 52px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1.14;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin-bottom: 22px;
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 34px;
  }
}

.lede {
  font-size: 18.5px;
  color: var(--fg-muted);
  max-width: 580px;
  text-align: justify;
}
.lede em {
  color: var(--fg);
  font-style: italic;
}

.who {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.who span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 13px;
  pointer-events: none;
  user-select: none;
}

.cta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn .a {
  opacity: 0.7;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
}
.btn-primary:hover {
  background: var(--accent-hover);
}
.btn-ghost {
  color: var(--secondary);
  border: 1px solid color-mix(in srgb, var(--secondary) 40%, var(--border));
  background: var(--secondary-subtle);
  transition: border-color 0.15s, background 0.15s;
}
.btn-ghost:hover {
  border-color: var(--secondary);
  background: color-mix(in srgb, var(--secondary) 14%, var(--secondary-subtle));
}

.section {
  padding: 44px 0;
  border-top: 1px solid var(--border);
}

.kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.kicker::before {
  content: ">> ";
  color: var(--secondary);
}

.site-footer {
  padding: 38px 24px;
  border-top: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 13px;
  text-align: center;
}
.site-footer .social-icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 14px;
}
.site-footer a {
  color: var(--fg-muted);
}
.site-footer a:hover {
  color: var(--accent);
}

.band {
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 34px 34px 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .band {
    flex-direction: column;
    padding: 100px 24px 34px;
  }
}

.band-avatar {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--border);
}
@media (max-width: 560px) {
  .band-avatar {
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
  }
}

.band-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.band-body h2 {
  font-family: var(--font-serif);
  font-size: 25px;
  margin-bottom: 12px;
}
.band-body p {
  color: var(--fg-muted);
  margin-bottom: 22px;
}

.lang {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 14px;
}

.about {
  display: flex;
  align-items: center;
  gap: 24px;
}
.about p {
  color: var(--fg-muted);
  margin-bottom: 12px;
  text-align: justify;
}
.about p strong {
  color: var(--fg);
}
@media (max-width: 480px) {
  .about {
    flex-direction: column;
  }
}

.about-photo {
  width: 220px;
  height: auto;
  border-radius: 14px;
  display: block;
  flex: none;
  order: 2;
}
@media (max-width: 480px) {
  .about-photo {
    width: 100%;
    order: -1;
  }
}

.svcgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) {
  .svcgrid {
    grid-template-columns: 1fr;
  }
}
.svcgrid {
  max-width: var(--width-wide);
  margin: 0 auto;
}

.svc {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -16px color-mix(in srgb, var(--accent) 45%, transparent);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}
.svc .num {
  font-family: var(--font-mono);
  font-weight: 700;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 14px;
  color: var(--accent);
  background: var(--accent-subtle);
  margin-bottom: 14px;
}
.svc.alt .num {
  color: var(--secondary);
  background: var(--secondary-subtle);
}
.svc.guarantee {
  background: var(--code-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc.guarantee .num {
  background: var(--accent);
  color: var(--accent-fg);
}
.svc h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 6px;
}
.svc p {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.55;
}

.svc--bg {
  position: relative;
  overflow: hidden;
  background-image: var(--svc-bg);
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 200px;
  isolation: isolate;
}
.svc--bg.guarantee {
  background-image: var(--svc-bg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.svc--bg.guarantee .num {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}
.svc--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.6);
}
.svc--bg h3 {
  color: #fff;
}
.svc--bg p {
  color: rgba(255, 255, 255, 0.88);
}
.svc--bg .num {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  backdrop-filter: blur(2px);
}
.svc--bg.alt .num {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.prod {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}
.prod .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--code-bg);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex: none;
}
.prod h3 {
  font-size: 15px;
  margin-bottom: 2px;
}
.prod p {
  font-size: 13px;
  color: var(--fg-muted);
}
.prod a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.reco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) {
  .reco-grid {
    grid-template-columns: 1fr;
  }
}

.reco {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  margin: 0;
}
.reco blockquote {
  margin: 0 0 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--fg);
}
.reco blockquote::before {
  content: "“";
  display: block;
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 0.1;
  color: var(--secondary);
  opacity: 0.5;
  margin-bottom: 10px;
}
.reco figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reco-name {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--fg);
}

.reco-role {
  font-size: 12.5px;
  color: var(--fg-muted);
}

.reco-date {
  font-size: 11.5px;
  color: var(--fg-muted);
  opacity: 0.6;
  margin-top: 2px;
}

.reco-more {
  margin-top: 18px;
  text-align: center;
}
.reco-more a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.reco-more a:hover {
  color: var(--accent-hover);
}

.cat-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 32px;
}

.cat-pill {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--fg-muted);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.cat-pill:hover {
  color: var(--fg);
  border-color: var(--color-border-hover);
}
.cat-pill.active {
  color: var(--accent-fg);
  background: var(--accent);
  border-color: var(--accent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-bottom: 40px;
}
@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -16px color-mix(in srgb, var(--accent) 45%, transparent);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}
.card {
  overflow: hidden;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-cover {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}
.card-body {
  padding: 18px 20px 20px;
}
.card-cat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}
.card-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-muted);
  display: flex;
  gap: 6px;
}

.scroll-sentinel {
  height: 1px;
  width: 100%;
}

.pager-empty {
  text-align: center;
  color: var(--fg-muted);
  padding: 20px 0 48px;
  font-size: 15px;
}

.article-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px 0;
}
.article-image-container a {
  display: block;
  max-width: 100%;
}

.article-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.image-description {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.7em;
  font-style: italic;
  color: var(--fg-muted);
  margin-top: 8px;
  line-height: 1.4;
}

.article-image-spinner {
  font-size: 1.5rem;
  --indicator-color: var(--accent);
  margin: 20px auto;
}

.article-thumbnail-container {
  position: relative;
}

.article {
  padding-top: 48px;
}
.article > article {
  max-width: var(--width-prose);
  margin: 0 auto;
}
.article .cover-image {
  max-height: 300px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 2em;
}

.article-body > pre,
.article-body > table,
.article-body > article-image,
.article-body > figure,
.article-body > p:has(> article-image) {
  width: 100%;
  max-width: 100%;
}

.article-category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary);
  text-decoration: none;
  margin-bottom: 14px;
}
.article-category::before {
  content: ">> ";
}
.article-category:hover {
  color: var(--secondary-hover);
}

.article-title {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.14;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin-bottom: 18px;
}

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.article-tags .tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-muted);
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 9px;
}

.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: 27px;
  margin: 40px 0 14px;
  line-height: 1.2;
}
.article-body h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  margin: 30px 0 12px;
}
.article-body p {
  margin-bottom: 18px;
  text-align: justify;
}
.article-body ul,
.article-body ol {
  margin: 0 0 18px 1.4em;
}
.article-body li {
  margin-bottom: 8px;
}
.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-body a:hover {
  color: var(--accent-hover);
}
.article-body h1 a, .article-body h2 a, .article-body h3 a, .article-body h4 a {
  text-decoration: none;
}
.article-body blockquote {
  border-left: 3px solid var(--secondary);
  padding-left: 18px;
  margin: 0 0 18px;
  color: var(--fg-muted);
  font-style: italic;
}
.article-body code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 6px;
}
.article-body pre {
  background: #272822;
  border-radius: var(--radius-lg);
  padding: 18px;
  overflow-x: auto;
  margin: 0 0 22px;
}
.article-body pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 13.5px;
}
.article-body img,
.article-body article-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 22px;
  font-size: 15px;
}
.article-body th,
.article-body td {
  border: 1px solid var(--border);
  padding: 8px 12px;
  text-align: left;
}
.article-body th {
  background: var(--code-bg);
}

.article like-container {
  display: block;
  margin-bottom: 20px;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

.offer-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
}
.offer-card .num {
  font-family: var(--font-mono);
  font-weight: 700;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 15px;
  color: var(--accent);
  background: var(--accent-subtle);
  margin-bottom: 16px;
}
.offer-card.alt .num {
  color: var(--secondary);
  background: var(--secondary-subtle);
}
.offer-card h2 {
  font-family: var(--font-serif);
  font-size: 21px;
  margin-bottom: 4px;
}
.offer-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offer-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.offer-card li::before {
  content: "»";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.offer-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.guarantee-band {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--accent-subtle);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--border));
  border-radius: 16px;
  padding: 26px 28px;
}
.guarantee-band .num {
  font-family: var(--font-mono);
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 22px;
  color: var(--accent-fg);
  background: var(--accent);
}
.guarantee-band h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  margin-bottom: 4px;
}
.guarantee-band p {
  color: var(--fg-muted);
  font-size: 14.5px;
}

.page-contact {
  position: relative;
}
[data-theme=dark] .page-contact {
  background-image: url("/public/artur/hero.webp");
  background-size: cover;
  background-position-x: -150px;
  background-position-y: -300px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1600px) {
  [data-theme=dark] .page-contact {
    background-position-y: -690px;
  }
}
[data-theme=dark] .page-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}
[data-theme=dark] .page-contact .eyebrow,
[data-theme=dark] .page-contact h1,
[data-theme=dark] .page-contact .lede {
  color: #fff;
}
[data-theme=dark] .page-contact .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
[data-theme=dark] .page-contact .lede {
  color: rgba(255, 255, 255, 0.85);
}
[data-theme=light] .page-contact {
  background-image: url("/public/artur/conf4.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
[data-theme=light] .page-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.85) 100%);
  pointer-events: none;
}
.page-contact .wrap {
  position: relative;
  z-index: 1;
}
.page-contact .contact-links {
  position: relative;
  z-index: 1;
}

.contact-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cal-wrap {
  position: relative;
}

.cal-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 620px;
  z-index: 2;
}

.cal-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: cal-spin 0.7s linear infinite;
}

@keyframes cal-spin {
  to {
    transform: rotate(360deg);
  }
}
.cal-embed {
  min-height: 620px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-elev);
}

.talks-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 48px;
}

.talk-item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.talk-title {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.talk-title .c1 {
  font-size: 0.7em;
  flex: none;
}

.talk-emoji {
  flex: none;
}

.talk-event {
  margin-bottom: 14px;
}

.talk-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.talk-date-icon {
  color: var(--secondary);
}

.talk-date-info {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.talk-conference {
  color: var(--fg);
  font-weight: 600;
  text-decoration: none;
}
.talk-conference:hover {
  color: var(--accent);
}

.talk-separator {
  opacity: 0.4;
}

.talk-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}

.talk-description {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin-top: 12px;
  white-space: pre-line;
}

.talk-event-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 4px;
}
.talk-event-link:hover {
  color: var(--accent-hover);
}

.talk-video {
  margin: 12px 0;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.talk-video .video-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev);
  z-index: 1;
}
.talk-video .video-loader::after {
  content: "";
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: cal-spin 0.7s linear infinite;
}
.talk-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
