:root {
  --page-bg: #f8f1e7;
  --paper: #fffaf2;
  --paper-2: #fdf5eb;
  --paper-soft: rgba(255, 250, 242, 0.82);
  --ink: #18221f;
  --muted: #6d746e;
  --muted-2: #8f887e;
  --brand: #24483f;
  --brand-dark: #172f2a;
  --accent: #b98a63;
  --accent-2: #d8844e;
  --danger: #a3443f;
  --line: rgba(31, 39, 35, 0.1);
  --line-strong: rgba(31, 39, 35, 0.18);
  --shadow-soft: 0 18px 50px rgba(62, 48, 30, 0.075);
  --shadow-card: 0 28px 76px rgba(62, 48, 30, 0.105);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shell: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.seido-home {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1100px circle at 50% -14%, rgba(185, 138, 99, 0.16), transparent 55%),
    radial-gradient(760px circle at 6% 10%, rgba(255, 255, 255, 0.92), transparent 48%),
    radial-gradient(820px circle at 94% 12%, rgba(36, 72, 63, 0.1), transparent 46%),
    linear-gradient(180deg, #fffaf2 0%, var(--page-bg) 52%, #f4ebde 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.seido-home::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.034;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(24, 34, 31, 0.8) 0, rgba(24, 34, 31, 0.8) 1px, transparent 1px, transparent 5px);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(36, 72, 63, 0.24);
  outline-offset: 4px;
}

.editorial-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.editorial-page {
  padding-top: 28px;
}

.portal-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.portal-topbar {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.74);
}

.portal-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.portal-brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.portal-brand-copy {
  display: inline-flex;
  flex-direction: column;
  color: var(--brand);
  line-height: 1;
}

.portal-brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.36rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.portal-brand-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 830;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.portal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.portal-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 760;
  transition: color 160ms ease;
}

.portal-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--brand);
  transition: transform 160ms ease;
}

.portal-nav a:hover {
  color: var(--brand);
}

.portal-nav a:hover::after {
  transform: scaleX(1);
}

.portal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-user {
  max-width: 170px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.portal-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.portal-action.is-primary,
.button-primary {
  color: #fffaf2;
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 13px 28px rgba(36, 72, 63, 0.19);
}

.portal-action.is-primary:hover,
.button-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.portal-action.is-muted,
.button-secondary,
.button-subtle {
  color: var(--brand);
  border-color: rgba(36, 72, 63, 0.17);
  background: rgba(255, 250, 242, 0.68);
}

.portal-action.is-muted:hover,
.button-secondary:hover,
.button-subtle:hover {
  border-color: rgba(36, 72, 63, 0.3);
  background: rgba(255, 250, 242, 0.96);
}

.button-light {
  color: var(--brand);
  border-color: #fffaf2;
  background: #fffaf2;
}

.button-light:hover {
  color: var(--brand-dark);
  background: #fff;
}

.portal-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  min-height: 430px;
  border-bottom: 1px solid var(--line);
}

.intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 4vw, 58px);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-copy h1,
.section-heading h2,
.feature-band h2,
.admin-strip h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.intro-copy h1 {
  max-width: 650px;
  font-size: clamp(2.8rem, 5vw, 5.15rem);
}

.intro-text {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.intro-meta span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 250, 242, 0.7);
  font-size: 0.78rem;
  font-weight: 820;
}

.mood-board {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.48) 35%, rgba(255, 250, 242, 0.08) 100%),
    radial-gradient(620px circle at 72% 28%, rgba(255, 250, 242, 0.78), transparent 58%),
    linear-gradient(135deg, #d9c5aa 0%, #f2e8db 34%, #9daf97 68%, #30483f 100%);
}

.mood-board::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: linear-gradient(135deg, transparent 0 55%, rgba(255, 250, 242, 0.4) 55% 56%, transparent 56%);
  pointer-events: none;
}

.mood-window {
  position: absolute;
  right: 8%;
  top: 9%;
  width: 52%;
  height: 72%;
  border: 1px solid rgba(255, 250, 242, 0.48);
  border-radius: 999px 999px 34px 34px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.38), rgba(255, 250, 242, 0.08));
  box-shadow: inset 0 0 0 1px rgba(24, 34, 31, 0.04);
}

.mood-sun {
  position: absolute;
  right: 22%;
  top: 16%;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.54);
  filter: blur(1px);
}

.mood-branch {
  position: absolute;
  right: 16%;
  bottom: 22%;
  width: 150px;
  height: 220px;
  opacity: 0.82;
  background:
    radial-gradient(circle at 50% 12%, #65795f 0 8px, transparent 9px),
    radial-gradient(circle at 34% 23%, #748768 0 14px, transparent 15px),
    radial-gradient(circle at 68% 27%, #4f684f 0 16px, transparent 17px),
    radial-gradient(circle at 38% 42%, #627a5c 0 18px, transparent 19px),
    radial-gradient(circle at 65% 49%, #3f5641 0 21px, transparent 22px);
}

.mood-chair {
  position: absolute;
  right: 9%;
  bottom: 12%;
  width: 210px;
  height: 108px;
  border-radius: 42px 42px 30px 30px;
  background: linear-gradient(135deg, #213a32, #526e60);
  box-shadow: 0 24px 46px rgba(24, 34, 31, 0.22);
}

.mood-chair::before,
.mood-chair::after {
  content: "";
  position: absolute;
  bottom: -28px;
  width: 22px;
  height: 48px;
  border-radius: 999px;
  background: #263a34;
}

.mood-chair::before {
  left: 42px;
}

.mood-chair::after {
  right: 42px;
}

.featured-note {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  display: grid;
  gap: 14px;
  width: min(340px, calc(100% - 56px));
  padding: 18px;
  border: 1px solid rgba(255, 250, 242, 0.38);
  border-radius: 24px;
  color: #fffaf2;
  background: rgba(24, 34, 31, 0.6);
  box-shadow: 0 24px 52px rgba(24, 34, 31, 0.18);
  backdrop-filter: blur(18px);
}

.featured-kicker {
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-icon,
.showcase-logo,
.library-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 18px;
  color: var(--brand);
  background: rgba(255, 250, 242, 0.9);
}

.featured-icon {
  width: 52px;
  height: 52px;
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.14);
  border: 1px solid rgba(255, 250, 242, 0.2);
}

.featured-icon img,
.showcase-logo img,
.library-logo img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.featured-main strong,
.featured-main small {
  display: block;
}

.featured-main strong {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.featured-main small {
  margin-top: 4px;
  color: rgba(255, 250, 242, 0.7);
}

.featured-link {
  color: #fffaf2;
  font-size: 0.9rem;
  font-weight: 900;
}

.portal-section {
  padding: clamp(28px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2,
.feature-band h2,
.admin-strip h2 {
  font-size: clamp(2rem, 3.2vw, 3.65rem);
}

.text-link {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 900;
}

.text-link:hover,
.card-link:hover {
  color: var(--brand-dark);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 250, 242, 0.74);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(255, 250, 242, 0.97);
  box-shadow: var(--shadow-card);
}

.showcase-art {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  background:
    radial-gradient(240px circle at 74% 22%, rgba(255, 250, 242, 0.76), transparent 62%),
    linear-gradient(135deg, #d5c6b4, #efe4d7 52%, #83977d);
}

.showcase-card[data-card="2"] .showcase-art {
  background:
    radial-gradient(240px circle at 74% 22%, rgba(255, 250, 242, 0.74), transparent 62%),
    linear-gradient(135deg, #d8b89f, #eee1d0 52%, #b0c0a3);
}

.showcase-card[data-card="3"] .showcase-art {
  background:
    radial-gradient(240px circle at 74% 22%, rgba(255, 250, 242, 0.78), transparent 62%),
    linear-gradient(135deg, #e4d3be, #f5eadf 52%, #7d8c7a);
}

.showcase-card[data-card="4"] .showcase-art {
  background:
    radial-gradient(240px circle at 74% 22%, rgba(255, 250, 242, 0.52), transparent 62%),
    linear-gradient(135deg, #213a34, #667a6e 52%, #d7c4a9);
}

.showcase-art::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -72px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 242, 0.36);
  background: rgba(255, 250, 242, 0.18);
}

.showcase-art-glow {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.46);
  filter: blur(18px);
}

.showcase-logo {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  z-index: 1;
  box-shadow: 0 16px 32px rgba(62, 48, 30, 0.13);
}

.showcase-logo > span,
.library-logo > span,
.featured-icon > span {
  font-weight: 920;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 5px 9px;
  border: 1px solid rgba(36, 72, 63, 0.14);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(36, 72, 63, 0.09);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.showcase-art .status-pill {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
  background: rgba(255, 250, 242, 0.84);
}

.status-pill.is-live {
  color: #285640;
  border-color: rgba(50, 142, 92, 0.18);
  background: rgba(50, 142, 92, 0.13);
}

.status-pill.is-progress {
  color: #8a552f;
  border-color: rgba(217, 137, 79, 0.23);
  background: rgba(217, 137, 79, 0.14);
}

.status-pill.is-planned {
  color: #445d83;
  border-color: rgba(66, 93, 140, 0.16);
  background: rgba(66, 93, 140, 0.11);
}

.status-pill.is-system {
  color: var(--brand);
  border-color: rgba(36, 72, 63, 0.16);
  background: rgba(36, 72, 63, 0.11);
}

.showcase-body {
  padding: 18px;
}

.app-tagline {
  display: block;
  min-height: 1em;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 930;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-body h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.showcase-body p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.card-link {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 920;
  font-style: normal;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: end;
  color: #fffaf2;
  background:
    radial-gradient(620px circle at 72% 28%, rgba(216, 132, 78, 0.26), transparent 60%),
    linear-gradient(135deg, #1d342e, #24483f 48%, #68735a);
}

.feature-band .eyebrow,
.feature-band p,
.feature-band li {
  color: rgba(255, 250, 242, 0.75);
}

.feature-band h2 {
  max-width: 720px;
  color: #fffaf2;
}

.feature-band-copy > p {
  max-width: 650px;
  margin: 18px 0 0;
  line-height: 1.72;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  font-weight: 760;
}

.check-list li::before {
  content: "\2713";
  margin-right: 10px;
  color: #fffaf2;
}

.feature-price-card {
  padding: 24px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 26px;
  background: rgba(255, 250, 242, 0.13);
  box-shadow: 0 24px 52px rgba(24, 34, 31, 0.12);
  backdrop-filter: blur(18px);
}

.feature-price-card span,
.feature-price-card strong,
.feature-price-card p,
.feature-price-card a {
  display: block;
}

.feature-price-card span {
  color: rgba(255, 250, 242, 0.7);
  font-size: 0.76rem;
  font-weight: 930;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-price-card strong {
  margin-top: 12px;
  color: #fffaf2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.feature-price-card p {
  margin: 16px 0 22px;
  color: rgba(255, 250, 242, 0.72);
  line-height: 1.6;
}

.feature-price-card a {
  color: #fffaf2;
  font-weight: 900;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.system-card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 250, 242, 0.68);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.system-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow-card);
}

.system-index {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1;
}

.system-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}

.system-card p {
  max-width: 380px;
  margin: 10px 0 22px;
  color: var(--muted);
  line-height: 1.62;
}

.library-section {
  background: rgba(255, 250, 242, 0.34);
}

.library-groups {
  display: grid;
  gap: 22px;
}

.library-group {
  display: grid;
  gap: 14px;
}

.library-group-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.library-group-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 920;
  letter-spacing: -0.03em;
}

.library-group-head p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.library-group-head > span {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255, 250, 242, 0.7);
  font-weight: 900;
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.library-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.68);
  box-shadow: 0 12px 34px rgba(62, 48, 30, 0.055);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.library-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow-soft);
}

.library-logo {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(36, 72, 63, 0.12);
  background: rgba(36, 72, 63, 0.08);
}

.library-copy {
  min-width: 0;
}

.library-copy strong,
.library-copy small,
.library-copy em {
  display: block;
}

.library-copy strong {
  color: var(--ink);
  font-weight: 920;
  letter-spacing: -0.02em;
}

.library-copy small {
  margin-top: 3px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
}

.library-copy em {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.admin-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 26px;
  align-items: center;
  background: rgba(36, 72, 63, 0.06);
}

.admin-strip h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 2.7vw, 3rem);
}

.admin-strip-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-strip-actions a {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--brand);
  background: rgba(255, 250, 242, 0.76);
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(62, 48, 30, 0.055);
}

.admin-strip-actions a:hover {
  background: var(--brand);
  color: #fffaf2;
}









.site-footer {
  padding: 28px 0 40px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.footer-links a:hover {
  color: var(--ink);
}

@media (max-width: 1220px) {
  .portal-intro,
  .feature-band,
  .admin-strip {
    grid-template-columns: 1fr;
  }

  .mood-board {
    min-height: 360px;
  }

  .portal-topbar {
    grid-template-columns: 1fr auto;
  }

  .portal-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding: 0 0 16px 56px;
  }

  .showcase-grid,
  

  .system-grid,
  .admin-strip-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .editorial-shell {
    width: min(var(--shell), calc(100% - 28px));
  }

  .editorial-page {
    padding-top: 16px;
  }

  .portal-frame {
    border-radius: 24px;
  }

  .portal-topbar {
    min-height: 64px;
    padding: 12px 16px;
  }

  .portal-brand-mark {
    width: 40px;
    height: 40px;
  }

  .portal-brand-copy strong {
    font-size: 1.18rem;
  }

  .portal-actions {
    gap: 8px;
  }

  .portal-user,
  .portal-action.is-muted {
    display: none;
  }

  .portal-nav {
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 8px;
    scrollbar-width: none;
  }

  .portal-nav::-webkit-scrollbar {
    display: none;
  }

  .portal-nav a {
    flex: 0 0 auto;
  }

  .portal-intro {
    min-height: 0;
  }

  .intro-copy {
    padding: 28px 22px;
  }

  .intro-copy h1 {
    font-size: clamp(2.55rem, 13vw, 3.85rem);
  }

  .intro-text {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .intro-actions {
    margin-top: 22px;
  }

  .intro-meta {
    margin-top: 22px;
  }

  .mood-board {
    min-height: 320px;
  }

  .mood-sun {
    width: 98px;
    height: 98px;
  }

  .mood-branch {
    right: 14%;
    bottom: 20%;
    width: 110px;
    height: 170px;
  }

  .mood-chair {
    right: 8%;
    bottom: 12%;
    width: 165px;
    height: 88px;
  }

  .featured-note {
    left: 18px;
    bottom: 18px;
    width: min(300px, calc(100% - 36px));
    padding: 16px;
  }

  .portal-section {
    padding: 24px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .showcase-grid,
  .library-grid,
  

  .feature-band {
    gap: 24px;
  }

  .library-card {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .library-card > .status-pill {
    grid-column: 2;
    justify-self: flex-start;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .portal-actions .portal-action.is-primary {
    padding-inline: 14px;
  }

  .intro-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .mood-board {
    min-height: 286px;
  }

  .mood-window {
    right: 3%;
    width: 64%;
  }

  .featured-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: 164px 16px 16px;
  }

  .showcase-art {
    min-height: 150px;
  }

  .system-card {
    min-height: 190px;
  }
}

/* Removed the bottom principles strip from the portal. */
.principles{display:none!important;}

/* Homepage cleanup: replace the abstract banner mood board with a product-style portal preview */
.portal-intro {
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr) !important;
  gap: 26px !important;
  padding: 28px !important;
}

.intro-copy h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5vw, 5.2rem) !important;
}

.intro-text {
  max-width: 560px;
  margin-top: 22px !important;
  font-size: 1.04rem !important;
  line-height: 1.72 !important;
}

.intro-actions,
.intro-meta {
  margin-top: 26px !important;
}

.portal-preview {
  display: flex;
}

.preview-surface {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(36, 72, 63, .1);
  border-radius: 28px;
  background:
    radial-gradient(520px circle at 84% 10%, rgba(185, 138, 99, .16), transparent 52%),
    radial-gradient(420px circle at 12% 0%, rgba(255, 255, 255, .88), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 241, 231, .88));
  box-shadow: var(--seido-shadow-soft);
}

.preview-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 4px 14px;
  color: var(--seido-muted);
  font-size: .82rem;
  font-weight: 820;
}

.preview-feature,
.preview-card,
.preview-mini-card,
.showcase-card,
.system-card,
.library-card,
.admin-strip-actions a {
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.preview-feature:hover,
.preview-card:hover,
.preview-mini-card:hover,
.showcase-card:hover,
.system-card:hover,
.library-card:hover,
.admin-strip-actions a:hover {
  transform: translateY(-2px);
}

.preview-feature {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--seido-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 30px rgba(62, 48, 30, .06);
}

.preview-feature-icon,
.preview-card-logo {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(36, 72, 63, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  overflow: hidden;
}

.preview-feature-icon img,
.preview-card-logo img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.preview-feature-icon span,
.preview-card-logo span {
  color: var(--seido-brand);
  font-weight: 920;
}

.preview-feature small,
.preview-card small {
  display: block;
  color: var(--seido-accent);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.preview-feature strong,
.preview-card strong {
  display: block;
  margin-top: 6px;
  color: var(--seido-ink);
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: -.02em;
}

.preview-feature p,
.preview-card p,
.showcase-body p,
.system-card p,
.library-copy em {
  margin: 8px 0 0;
  color: var(--seido-muted);
  line-height: 1.58;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.preview-card {
  display: grid;
  gap: 14px;
  min-height: 158px;
  padding: 16px;
  border: 1px solid var(--seido-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 12px 30px rgba(62, 48, 30, .05);
}

.preview-card-top,
.showcase-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.preview-mini-card {
  display: grid;
  gap: 6px;
  min-height: 108px;
  padding: 16px;
  border: 1px solid var(--seido-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .62);
}

.preview-mini-card strong {
  color: var(--seido-ink);
  font-size: 1rem;
  font-weight: 840;
  letter-spacing: -.02em;
}

.preview-mini-card span {
  color: var(--seido-muted);
  font-size: .9rem;
  line-height: 1.55;
}

.showcase-grid,
.system-grid {
  gap: 16px !important;
}

.showcase-card {
  min-height: 250px !important;
  padding: 18px !important;
  background: rgba(255, 255, 255, .66) !important;
}

.showcase-art {
  min-height: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 0 !important;
  background: none !important;
}

.showcase-art::after,
.showcase-art-glow,
.featured-note,
.mood-board,
.mood-window,
.mood-sun,
.mood-branch,
.mood-chair {
  display: none !important;
}

.showcase-logo {
  position: static !important;
  width: 56px !important;
  height: 56px !important;
  box-shadow: none !important;
}

.showcase-art .status-pill {
  position: static !important;
  background: rgba(255, 255, 255, .78) !important;
}

.library-section {
  background: rgba(255, 255, 255, .26) !important;
}

@media (max-width: 900px) {
  .portal-intro,
  .preview-grid,
  .preview-footer,
  .showcase-grid,
  .system-grid,
  .library-grid,
  .admin-strip-actions {
    grid-template-columns: 1fr !important;
  }

  .preview-feature {
    grid-template-columns: 1fr;
  }
}

/* Final homepage polish: product-style hero preview instead of decorative artwork */
.portal-intro {
  align-items: stretch;
}

.portal-preview {
  align-items: stretch;
}

.preview-surface {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 20px;
  border-radius: 30px;
}

.preview-topline span:first-child {
  color: var(--seido-brand);
  font-size: .78rem;
  font-weight: 920;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.preview-topline span:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(36, 72, 63, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
}

.preview-feature {
  padding: 20px;
}

.preview-card {
  grid-template-rows: auto 1fr;
}

.preview-mini-card,
.system-card {
  align-content: start;
}

.feature-band-copy {
  max-width: 640px;
}

.feature-price-card {
  display: grid;
  align-content: start;
}

.feature-price-card a,
.system-card .card-link {
  align-self: flex-start;
}
/* reference-homepage redesign */
.reference-hero-layout {
  display: grid !important;
  grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr) !important;
  gap: 26px !important;
  padding: 34px 34px 26px !important;
  border-bottom: 1px solid rgba(24, 34, 31, .08);
}

.reference-hero-copy h1,
.reference-section-head h2 {
  color: #17302b;
  font-family: var(--page-serif, Georgia, "Times New Roman", serif);
  line-height: .95;
  letter-spacing: -.06em;
}

.reference-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(3.4rem, 5.7vw, 5.85rem) !important;
}

.reference-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.reference-benefits article {
  padding-top: 18px;
  border-top: 1px solid rgba(24, 34, 31, .10);
}

.reference-benefits strong,
.reference-subhead h3,
.reference-section-head a,
.reference-featured-card strong,
.reference-highlight-card h4,
.reference-bundle-card strong,
.reference-system-card strong,
.reference-library-card strong {
  color: #17302b;
  font-size: .98rem;
  font-weight: 760;
}

.reference-benefits span,
.reference-section-head span,
.reference-portal-head p,
.reference-featured-card p,
.reference-highlight-card p,
.reference-bundle-card span,
.reference-system-card span,
.reference-library-card small {
  display: block;
  margin-top: 8px;
  color: #69736d;
  font-size: .92rem;
  line-height: 1.65;
}

.reference-portal-shell {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 100%;
  border: 1px solid rgba(24, 34, 31, .08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,247,240,.94));
  box-shadow: 0 20px 50px rgba(72, 56, 28, .08);
  overflow: hidden;
}

.reference-portal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 18px;
  border-right: 1px solid rgba(24, 34, 31, .08);
  background: rgba(255, 253, 249, .8);
}

.reference-mini-brand strong {
  display: block;
  color: #17302b;
  font-family: var(--page-serif, Georgia, "Times New Roman", serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -.05em;
}

.reference-mini-brand span,
.reference-highlight-label,
.reference-section-head p {
  color: #bb8856;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.reference-mini-nav {
  display: grid;
  gap: 8px;
}

.reference-mini-nav a,
.reference-mini-exit a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  color: #405049;
  font-size: .86rem;
  font-weight: 650;
}

.reference-mini-nav a:first-child {
  background: rgba(36, 72, 63, .08);
  color: #17302b;
}

.reference-mini-exit { margin-top: auto; }

.reference-portal-main {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.reference-portal-head,
.reference-subhead,
.reference-bundle-top,
.reference-bundle-bottom,
.reference-footer-bar,
.reference-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.reference-portal-head h2 {
  margin: 0;
  color: #17302b;
  font-family: var(--page-serif, Georgia, "Times New Roman", serif);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: -.05em;
}

.reference-portal-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reference-bell {
  width: 14px;
  height: 14px;
  border: 1.5px solid #17302b;
  border-radius: 999px 999px 4px 4px;
  position: relative;
}

.reference-bell::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 6px;
  height: 2px;
  background: #17302b;
  transform: translateX(-50%);
  border-radius: 999px;
}

.reference-avatar {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #efe3d6, #d7b595);
  color: #17302b;
  font-size: .92rem;
  font-weight: 800;
}

.reference-stat-grid,
.reference-app-grid,
.reference-featured-grid,
.reference-system-grid,
.reference-library-grid,
.reference-bundle-grid {
  display: grid;
  gap: 14px;
}

.reference-stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.reference-app-grid,
.reference-featured-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.reference-system-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.reference-library-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.reference-bundle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.reference-stat-grid article,
.reference-app-card,
.reference-featured-card,
.reference-highlight-card,
.reference-bundle-card,
.reference-system-card,
.reference-library-card {
  border: 1px solid rgba(24, 34, 31, .08);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 30px rgba(71, 53, 27, .05);
}

.reference-stat-grid article { padding: 18px 16px; }
.reference-stat-grid strong { display:block; color:#17302b; font-size:2rem; line-height:1; }

.reference-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f2f0ea;
  color:#5c655f;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.reference-status.is-live { background: rgba(36,72,63,.08); color:#24483f; }
.reference-status.is-progress { background: rgba(183,140,86,.12); color:#8d663d; }
.reference-status.is-system { background: rgba(24,34,31,.08); color:#37443f; }
.reference-status.is-planned { background: rgba(95,104,100,.10); color:#606964; }

.reference-app-card,
.reference-featured-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
}

.reference-app-logo,
.reference-featured-logo,
.reference-library-logo,
.reference-highlight-art {
  display:grid;
  place-items:center;
  width:70px;
  height:70px;
  border-radius:20px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(236,240,237,.88));
  border: 1px solid rgba(24, 34, 31, .08);
}
.reference-app-logo img,
.reference-featured-logo img,
.reference-library-logo img,
.reference-highlight-art img { width:70%; height:70%; object-fit:contain; }
.reference-app-logo span,
.reference-featured-logo span,
.reference-library-logo span,
.reference-highlight-art span { color:#17302b; font-size:1.3rem; font-weight:800; }

.reference-highlight-card {
  display:grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  align-items:center;
  padding: 18px;
}

.reference-highlight-link,
.reference-featured-card em {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  margin-top: 14px;
  padding:0 14px;
  border:1px solid rgba(24,34,31,.10);
  border-radius:999px;
  color:#17302b;
  font-size:.88rem;
  font-style:normal;
  font-weight:760;
}

.reference-section { padding: 34px !important; }
.reference-section-head {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:24px;
}
.reference-section-head h2 { margin:0; font-size: clamp(2.1rem, 3.2vw, 3.65rem); }

.reference-bundle-card,
.reference-system-card,
.reference-library-card { padding: 20px; }
.reference-bundle-logos { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.reference-bundle-logos span { display:grid; place-items:center; width:34px; height:34px; border-radius:999px; background:#f0f3ef; border:1px solid rgba(24,34,31,.08); overflow:hidden; }
.reference-bundle-logos img { width:70%; height:70%; object-fit:contain; }
.reference-bundle-price { color:#17302b !important; font-size:1.9rem !important; font-weight:500 !important; font-family: Georgia, "Times New Roman", serif; }
.reference-system-card { display:grid; gap:10px; }
.reference-library-card { display:grid; grid-template-columns: 60px minmax(0, 1fr) auto; align-items:center; gap:14px; }

@media (max-width: 1180px) {
  .reference-hero-layout,
  .reference-bundle-grid,
  .reference-system-grid { grid-template-columns: 1fr !important; }
  .reference-portal-shell { grid-template-columns: 1fr; }
  .reference-portal-sidebar { border-right: 0; border-bottom: 1px solid rgba(24,34,31,.08); }
  .reference-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reference-library-grid,
  .reference-featured-grid,
  .reference-app-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .reference-hero-layout,
  .reference-section { padding: 22px !important; }
  .reference-benefits,
  .reference-stat-grid,
  .reference-featured-grid,
  .reference-app-grid,
  .reference-library-grid { grid-template-columns: 1fr !important; }
}

/* reference-homepage footer and bundle polish */
.reference-footer-shell {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto 28px;
}

.reference-footer-shell .footer-inner {
  padding: 22px 34px 0;
  border-top: 0;
  color: #7b817d;
}

.reference-footer-shell .footer-links a {
  color: #17302b !important;
}

.feature-band {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 300px !important;
  gap: 24px;
  align-items: stretch;
  background: rgba(255,255,255,.58) !important;
}

.feature-band-copy > p {
  max-width: 560px;
  color: #69736d !important;
}

.feature-band .check-list {
  margin: 22px 0 26px;
}

.feature-band .check-list li {
  color: #46534d;
}

.feature-price-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fffdf8, #f5f0e7);
  border: 1px solid rgba(24,34,31,.08);
}

.feature-price-card strong {
  color: #17302b;
  font-size: 2.1rem;
}

.feature-price-card p,
.reference-system-card p,
.reference-library-card em {
  color: #69736d;
}

@media (max-width: 980px) {
  .feature-band {
    grid-template-columns: 1fr !important;
  }
}

/* reference-homepage bundles and system refinement */
.bundle-section .section-copy {
  max-width: 620px;
  margin: 12px 0 0;
  color: #69736d;
  line-height: 1.65;
}

.reference-bundle-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.reference-bundle-top,
.reference-bundle-footer,
.reference-bundle-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.reference-bundle-card h3 {
  margin: 0;
  color: #17302b;
  font-family: var(--page-serif, Georgia, "Times New Roman", serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -.05em;
}

.reference-bundle-card p {
  margin: 0;
  color: #69736d;
  line-height: 1.65;
}

.reference-bundle-meta {
  color: #617069;
  font-size: .8rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reference-bundle-footer {
  align-items: flex-end;
  padding-top: 8px;
  border-top: 1px solid rgba(24, 34, 31, .08);
}

.reference-bundle-logos strong {
  color: #17302b;
  font-size: .86rem;
  font-weight: 800;
}

.reference-system-card,
.reference-library-card,
.reference-bundle-card,
.reference-featured-card,
.reference-app-card,
.reference-highlight-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.reference-system-card:hover,
.reference-library-card:hover,
.reference-bundle-card:hover,
.reference-featured-card:hover,
.reference-app-card:hover,
.reference-highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 72, 63, .18);
  box-shadow: 0 18px 38px rgba(71, 53, 27, .08);
}

.reference-system-card .card-link,
.reference-library-card .status-pill,
.reference-bundle-footer .reference-highlight-link {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .reference-bundle-footer,
  .reference-bundle-top,
  .reference-bundle-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* homepage featured apps polish */
.reference-featured-grid {
  gap: 18px;
  align-items: stretch;
}

.reference-featured-card {
  align-items: stretch;
  justify-items: stretch;
  justify-content: space-between;
  min-height: 320px;
  gap: 18px;
  padding: 22px;
  text-align: left;
}

.reference-featured-card .showcase-art {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 0;
  padding: 0;
  background: none;
}

.reference-featured-card .showcase-art::after,
.reference-featured-card .showcase-art-glow {
  display: none;
}

.reference-featured-card .reference-featured-logo {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  box-shadow: 0 14px 26px rgba(71, 53, 27, .08);
}

.reference-featured-card .showcase-art .status-pill {
  position: static;
  flex: 0 0 auto;
  background: rgba(255, 250, 242, .96);
}

.reference-featured-card .showcase-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
}

.reference-featured-card .app-tagline {
  margin-bottom: 0;
}

.reference-featured-card .showcase-body h3 {
  font-size: 2rem;
  line-height: .98;
}

.reference-featured-card .showcase-body p {
  margin: 0;
  max-width: 34ch;
  text-decoration: none;
  line-height: 1.68;
}

.reference-featured-card .card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(24, 34, 31, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 10px 24px rgba(71, 53, 27, .05);
}

.reference-featured-card:hover .card-link {
  border-color: rgba(36, 72, 63, .18);
  background: rgba(255, 255, 255, .94);
}

@media (max-width: 1180px) {
  .reference-featured-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .reference-featured-card {
    padding: 20px;
  }

  .reference-featured-card .showcase-art {
    align-items: flex-start;
    flex-direction: column;
  }
}
