/* =========================================
   TOKENS
========================================= */

:root {
  --bg: #0b1020;
  --bg-soft: #121933;
  --bg-elevated: rgba(18, 25, 51, 0.72);
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --surface-muted: #eef2ff;

  --text: #0f172a;
  --text-soft: #475569;
  --text-inverse: #f8fafc;
  --text-inverse-soft: #cbd5e1;

  --border: #dbe3f0;
  --border-strong: #c7d2fe;

  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-soft: #dbeafe;
  --accent: #7c3aed;
  --accent-soft: #ede9fe;

  --success-soft: #dcfce7;

  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 50px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 30px 80px rgba(2, 6, 23, 0.18);
  --shadow-primary: 0 16px 32px rgba(37, 99, 235, 0.24);
  --shadow-primary-hover: 0 20px 40px rgba(37, 99, 235, 0.28);

  --radius-sm: 12px;
  --radius-btn: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --border-subtle: 1px solid rgba(219, 227, 240, 0.96);
  --border-accent: 1px solid rgba(199, 210, 254, 0.9);

  --space-section-y: 88px;
  --space-section-y-md: 74px;
  --space-section-y-sm: 62px;
  --space-hero-top: 64px;
  --space-hero-bottom: 72px;
  --space-hero-top-sm: 34px;
  --space-hero-bottom-sm: 48px;
  --space-card-gap: 22px;
  --space-card-grid-gap: 24px;
  --space-card-padding: 24px;
  --space-card-padding-lg: 26px;
  --space-block-padding: 30px;
  --space-cta-row-gap: 12px;
  --space-button-row-gap: 14px;

  /* Reglas de spacing por bloque: hero, section, card grid y CTA/button row */

  --container: 1120px;
  --max-width-section-heading: 800px;
  --max-width-content-heading: 900px;
  --max-width-content-narrow: 760px;
  --max-width-project-summary: 880px;
  --header-height: 74px;
}

/* =========================================
   RESET
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 28%),
    linear-gradient(180deg, #eef4ff 0%, #f8fbff 28%, #ffffff 56%, #f8fbff 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================================
   GLOBAL LAYOUT
========================================= */

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

.section {
  padding: var(--space-section-y) 0;
}

.section-heading {
  max-width: var(--max-width-section-heading);
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 1.6rem + 1.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-heading p {
  font-size: 1.08rem;
  color: var(--text-soft);
}

.content-card,
.proof-card,
.experience-card,
.project-story-card,
.hero-edge-card,
.contact-card {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.content-card,
.proof-card,
.experience-card,
.project-story-card {
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(219, 227, 240, 0.7);
  background: rgba(248, 251, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  gap: 20px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #0f172a;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: var(--space-button-row-gap);
}

.main-nav a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 500;
  color: #334155;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #0f172a;
}

.main-nav a.active {
  color: var(--primary);
  font-weight: 700;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.nav-divider {
  color: #94a3b8;
  user-select: none;
}

.lang-switch {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: var(--border-accent);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
}

.lang-link {
  min-width: 42px;
  text-align: center;
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  transition: all 0.2s ease;
}

.lang-link:hover {
  color: #0f172a;
}

.lang-link.active {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: white;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}

/* =========================================
   HERO
========================================= */

.hero {
  padding-top: var(--space-hero-top);
  padding-bottom: var(--space-hero-bottom);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}

.hero-copy {
  position: relative;
}

.hero-kicker,
.project-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: var(--border-accent);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  color: #334155;
  box-shadow: var(--shadow-sm);
}

.hero-kicker {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-name {
  max-width: var(--max-width-content-heading);
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 2rem + 2.6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  color: #020617;
}

.hero-subtitle {
  max-width: 830px;
  font-size: clamp(1.12rem, 1rem + 0.45vw, 1.45rem);
  line-height: 1.68;
  color: #475569;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-cta-row-gap);
  margin: 28px 0 34px;
}

.metric-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(191, 219, 254, 0.95);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(239,246,255,0.95));
  color: #1e3a8a;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-cta-row-gap);
}

/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
  box-shadow: var(--shadow-primary-hover);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: #0f172a;
  border-color: rgba(203, 213, 225, 0.95);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: rgba(147, 197, 253, 0.95);
}

.btn-ghost {
  color: var(--primary);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(37, 99, 235, 0.06);
}

/* =========================================
   HERO EDGE CARD
========================================= */

.hero-edge-card {
  position: relative;
  overflow: hidden;
  padding: var(--space-card-padding-lg) var(--space-card-padding);
  border: var(--border-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-edge-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.eyebrow {
  margin-bottom: 14px;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.edge-text {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #1e293b;
}

/* =========================================
   TAGS
========================================= */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-cta-row-gap);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* =========================================
   STRENGTHS
========================================= */

.strengths {
  padding-top: 18px;
}

/* =========================================
   PROOFS
========================================= */

.proofs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-card-gap);
}

.proofs {
  padding-bottom: 36px;
}

.proof-card {
  position: relative;
  overflow: hidden;
  padding: var(--space-card-padding);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.proof-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(191, 219, 254, 0.98);
}

.proof-card::before {
  content: "";
  width: 52px;
  height: 4px;
  border-radius: var(--radius-pill);
  display: block;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.proof-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.proof-card p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* =========================================
   EXPERIENCE / PROJECTS CARDS
========================================= */

.cards-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-card-gap);
}

.experience {
  padding-top: 36px;
}

.section-actions {
  margin-top: 28px;
}

.achievements .section-heading {
  margin-bottom: 28px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-card-grid-gap);
}

.achievement-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-button-row-gap);
}

.achievement-title,
.achievement-description {
  margin: 0;
}

.achievement-tags {
  margin-top: 2px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-card-gap);
}

.content-card {
  position: relative;
  overflow: hidden;
  padding: var(--space-card-padding-lg);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.content-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(191, 219, 254, 0.98);
}

.content-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #020617;
}

.card-meta {
  margin-bottom: 14px;
  color: #6366f1;
  font-size: 0.92rem;
  font-weight: 700;
}

.content-card p {
  color: var(--text-soft);
  line-height: 1.7;
}

.card-list {
  margin: 18px 0;
  padding-left: 18px;
  color: #334155;
}

.card-list li + li {
  margin-top: 10px;
}

.card-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: var(--radius-btn);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.95), rgba(224, 231, 255, 0.75));
  color: #1e3a8a !important;
  font-size: 0.92rem;
  font-weight: 600;
}

/* =========================================
   PROJECT ACTIONS / LINKS
========================================= */

.project-actions,
.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-button-row-gap);
  margin-top: 18px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(191, 219, 254, 0.98);
  border-radius: var(--radius-pill);
  background: rgba(239, 246, 255, 0.95);
  color: #1d4ed8;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.text-link:hover {
  background: rgba(219, 234, 254, 1);
  border-color: rgba(147, 197, 253, 1);
  transform: translateY(-1px);
}

.project-link {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.project-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* =========================================
   CONTACT
========================================= */

.contact-card {
  position: relative;
  overflow: hidden;
  padding: var(--space-block-padding);
  border: var(--border-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.contact-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 1.6rem + 0.9vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-role {
  margin-bottom: 16px;
  color: #6366f1;
  font-weight: 700;
}

.contact-links {
  margin-bottom: 14px;
  color: #0f172a;
  font-weight: 600;
}

.contact-links a {
  color: var(--primary);
}

.contact-links a:hover {
  text-decoration: underline;
}

.contact-separator {
  margin: 0 8px;
  color: #94a3b8;
}

.contact-note {
  color: var(--text-soft);
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  margin-top: 12px;
  border-top: 1px solid rgba(219, 227, 240, 0.9);
  background: rgba(255, 255, 255, 0.55);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  color: #64748b;
  font-size: 0.95rem;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-edge-card {
    max-width: 540px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 12px 0;
  }

  .site-header {
    height: auto;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section {
    padding: var(--space-section-y-md) 0;
  }

  .proofs-grid,
  .achievements-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 18px 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding-top: var(--space-hero-top-sm);
    padding-bottom: var(--space-hero-bottom-sm);
  }

  .section {
    padding: var(--space-section-y-sm) 0;
  }

  .hero-name {
    font-size: clamp(2.2rem, 1.6rem + 3vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1.04rem;
  }

  .hero-actions,
  .project-actions,
  .project-links {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .tags,
  .hero-metrics {
    gap: 10px;
  }

  .tag,
  .metric-chip,
  .text-link {
    width: fit-content;
    max-width: 100%;
  }

  .project-link {
    width: 100%;
    text-align: left;
  }

  .content-card,
  .proof-card,
  .hero-edge-card,
  .contact-card {
    padding: calc(var(--space-card-padding) - 2px);
  }
}



/* =========================================
   EXPERIENCE PAGE LAYOUT
========================================= */

.experience-page .experience-hero {
  padding-top: 52px;
  padding-bottom: 28px;
}

.experience-hero-grid {
  gap: 28px;
  align-items: stretch;
}

.experience-hero-copy {
  padding: 8px 0 4px;
}

.experience-page .hero-subtitle {
  max-width: var(--max-width-content-narrow);
}

.experience-top-back {
  margin-bottom: 16px;
}

.experience-edge-card {
  align-self: start;
  border-color: rgba(199, 210, 254, 0.95);
  background: rgba(255, 255, 255, 0.9);
}

.experience-bridge {
  padding: 2px 0 6px;
}

.experience-bridge-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0), rgba(59, 130, 246, 0.42) 20%, rgba(124, 58, 237, 0.42) 80%, rgba(124, 58, 237, 0));
}

.experience-timeline-section {
  padding-top: 48px;
}

.experience-heading {
  margin-bottom: 24px;
}

.experience-heading p {
  max-width: var(--max-width-content-narrow);
}

.experience-page .cards-stack {
  gap: 18px;
}

.experience-card {
  padding: var(--space-card-padding);
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.experience-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(191, 219, 254, 0.98);
}

.experience-card + .experience-card {
  margin-top: 2px;
}

.experience-card-header {
  margin-bottom: 14px;
}

.experience-role {
  margin-bottom: 8px;
  font-size: clamp(1.16rem, 1.06rem + 0.32vw, 1.34rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #020617;
}

.experience-meta {
  margin: 0;
  color: #6366f1;
  font-size: 0.9rem;
  font-weight: 700;
}

.experience-bullets {
  margin: 0;
  padding-left: 20px;
  color: #334155;
}

.experience-bullets li + li {
  margin-top: 10px;
}

.experience-tags {
  margin-top: 16px;
}

.experience-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius-btn);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.95), rgba(224, 231, 255, 0.78));
  color: #1e3a8a;
  font-size: 0.92rem;
  font-weight: 600;
}

/* =========================================
   PROJECT CASE STUDY — CAFETERIAS
========================================= */

.project-page-hero {
  padding-top: 28px;
  padding-bottom: 46px;
}

.project-page-kicker {
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.project-page-title {
  max-width: 980px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 1.7rem + 2vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #020617;
}

.project-page-summary {
  max-width: var(--max-width-project-summary);
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.project-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-card-gap);
  margin-top: 30px;
}

.project-story-card {
  padding: var(--space-card-padding);
}

.project-story-card h2,
.project-story-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #020617;
}

.project-story-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.project-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-cta-row-gap);
  margin-top: 14px;
}

.project-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-cta-row-gap);
  margin-top: 18px;
}

.project-dashboard-section {
  padding-top: 28px;
}

.project-dashboard-header {
  max-width: var(--max-width-content-heading);
  margin: 0 auto 18px;
  padding: 0 24px;
}

.project-dashboard-header h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 1.4rem + 1vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #020617;
}

.project-dashboard-header p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.project-dashboard-shell {
  width: min(100vw - 32px, 1480px);
  margin: 0 auto;
  border: var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
}

.project-dashboard-frame {
  display: block;
  width: 100%;
  height: 92vh;
  min-height: 980px;
  border: 0;
  background: #fff;
}

.project-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 700;
}

.project-back-link:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .project-story-grid {
    grid-template-columns: 1fr;
  }

  .project-dashboard-shell {
    width: min(100vw - 24px, 100%);
  }

  .project-dashboard-frame {
    height: 86vh;
    min-height: 860px;
  }

  .experience-page .experience-hero {
    padding-top: 42px;
  }
}

@media (max-width: 640px) {
  .project-page-hero {
    padding-top: 28px;
    padding-bottom: 12px;
  }

  .project-dashboard-header {
    padding: 0 18px;
  }

  .project-dashboard-shell {
    width: min(100vw - 16px, 100%);
    border-radius: 18px;
  }

  .project-dashboard-frame {
    height: 78vh;
    min-height: 720px;
  }

  .project-story-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
