@charset "UTF-8";
/* _sass/abstracts/_variables.scss */
/* Zen Minimalism Design System */
/* _sass/base/_reset.scss */
/* Minimal CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Inter:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Noto+Sans:wght@300;400;500&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

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

ul,
ol {
  list-style: none;
}

/* _sass/base/_typography.scss */
body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #2c2c2c;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #2c2c2c;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 3.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.text-small {
  font-size: 0.875rem;
}

.text-accent {
  font-family: "Noto Sans", sans-serif;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: rgba(44, 44, 44, 0.6);
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 2rem;
  padding-left: 2rem;
  list-style-position: outside;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

a {
  color: #ca9155;
  text-decoration: none;
}

p a:hover {
  text-decoration: underline;
}

/* _sass/base/_base.scss */
body {
  background-color: #e8dcc8;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03' /%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

main,
header,
footer {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container-narrow {
    padding: 0 1rem;
  }
}

section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

.brush-stroke {
  width: 100%;
  height: 20px;
  margin: 2rem 0;
  opacity: 1;
}

.hidden {
  display: none !important;
}

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

.bg-brush-accent {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bg-brush-accent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  max-width: 800px;
  height: 150%;
  background-image: url("../images/elements/wu_wei_circular_brush_stroke_white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.bg-brush-accent-black::before {
  background-image: url("../images/elements/wu_wei_circular_brush_stroke_black.svg");
  opacity: 0.05;
}

/* _sass/layout/_header.scss */
.site-header {
  background-color: #e8dcc8;
  padding: 2rem 0;
  top: 0;
  z-index: 100;
}
.site-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .site-header .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.site-header .logo {
  display: flex;
  align-items: center;
}
.site-header .logo .logo-image {
  height: 80px;
  width: auto;
  display: block;
  transition: transform 200ms ease;
}
.site-header .logo .logo-image:hover {
  transform: scale(1.05);
}
.site-header .main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .site-header .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 0.5rem;
    justify-content: flex-start;
  }
}
.site-header .nav-link {
  font-family: "Noto Sans", sans-serif;
  font-size: 1rem;
  color: #2c2c2c;
  transition: color 200ms ease;
  white-space: nowrap;
}
.site-header .nav-link:hover {
  color: #ca9155;
}
.site-header .nav-link.active {
  color: #ca9155;
  font-weight: 500;
}

.site-header .brush-stroke {
  margin: 1rem 0 0 0;
}

/* _sass/layout/_footer.scss */
.site-footer {
  background-color: #ca9155;
  padding: 4rem 0 2rem;
  margin-top: 8rem;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
}
.site-footer .footer-cta {
  padding-bottom: 6rem;
  margin-bottom: 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.site-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.site-footer .footer-section h4 {
  font-size: 1.125rem;
  color: #f3f0e8;
  margin-bottom: 1rem;
}
.site-footer .footer-section p,
.site-footer .footer-section a {
  color: #f3f0e8;
  font-size: 0.875rem;
  line-height: 1.8;
}
.site-footer .footer-section a {
  transition: color 200ms ease;
}
.site-footer .footer-section a:hover {
  color: #f3f0e8;
}
.site-footer .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-section ul li {
  color: #f3f0e8;
  margin-bottom: 0.5rem;
}
.site-footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
  font-size: 0.875rem;
  color: #f3f0e8;
}
.site-footer .footer-bottom a {
  color: #f3f0e8;
  text-decoration: none;
  border: 2px solid #f3f0e8;
  padding: 2px 4px;
  display: inline-block;
}

/* _sass/components/_buttons.scss */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 300ms ease;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
}
.btn:active {
  transform: translateY(0);
}
.btn.disabled, .btn:disabled {
  background-color: rgba(44, 44, 44, 0.1) !important;
  color: rgba(44, 44, 44, 0.4) !important;
  cursor: not-allowed !important;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}
.btn.disabled:hover, .btn:disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

.btn-primary {
  background-color: #ca9155;
  color: #f3f0e8;
}
.btn-primary:hover {
  background-color: rgb(187.6860986547, 124.7560538117, 58.5139013453);
}

.btn-secondary {
  background-color: #a8b5a0;
  color: #f3f0e8;
}
.btn-secondary:hover {
  background-color: rgb(146.9964497041, 163.1349112426, 137.0650887574);
}

.btn-outline {
  background-color: transparent;
  color: #2c2c2c;
  border: 2px solid #2c2c2c;
}
.btn-outline:hover {
  background-color: #2c2c2c;
  color: #e8dcc8;
}

.btn-outline-white {
  background-color: transparent;
  color: #f3f0e8;
  border: 2px solid #f3f0e8;
}
.btn-outline-white:hover {
  background-color: #f3f0e8;
  color: #ca9155;
}

.btn-warning {
  background-color: #d66d6d;
  border-color: #d66d6d;
  color: #f3f0e8;
}
.btn-warning:hover {
  background-color: rgb(205.0545454545, 77.1454545455, 77.1454545455);
}

.btn-large {
  padding: 2rem 4rem;
  font-size: 1.125rem;
  min-width: 18rem;
}
@media (max-width: 768px) {
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 0;
    width: 70%;
  }
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* _sass/components/_cards.scss */
.card {
  background-color: #f3f0e8;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
  transition: all 300ms ease;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
  transform: translateY(-4px);
}

.theme-card {
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.theme-card.selected {
  border-color: #ca9155;
  background-color: rgba(202, 145, 85, 0.05);
}
.theme-card .theme-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.theme-card .theme-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.theme-card .theme-count {
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.6);
}

.wuwei-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wuwei-card .card-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  background-color: rgba(44, 44, 44, 0.05);
}
.wuwei-card .card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.wuwei-card .card-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wuwei-card .keyword-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: rgba(168, 181, 160, 0.15);
  color: #2c2c2c;
  font-size: 0.875rem;
  border-radius: 4px;
  font-family: "Noto Sans", sans-serif;
}

.card-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 4rem 0;
}
.card-grid > * {
  flex: 0 1 250px;
}
@media (max-width: 768px) {
  .card-grid {
    gap: 1rem;
  }
  .card-grid > * {
    flex: 1 1 200px;
  }
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}
@media (max-width: 768px) {
  .theme-grid {
    grid-template-columns: 1fr;
  }
}

.planner-lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: zoom-out;
  animation: fadeIn 0.3s ease;
}
.planner-lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.planner-lightbox-content {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
  animation: zoomIn 0.3s ease;
}

.planner-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1001;
}
.planner-lightbox-close:hover {
  color: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* _sass/pages/_home.scss */
/* Home page specific styles */
.hero {
  padding: 4rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.tagline {
  font-size: 1.25rem;
  color: #ca9155;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .tagline {
    font-size: 1.125rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero-description {
    font-size: 1rem;
  }
}

.features {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .features {
    padding: 3rem 0;
  }
}

.ideal-for {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .ideal-for {
    padding: 3rem 0;
  }
}

.use-cases ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding: 0;
}
@media (max-width: 768px) {
  .use-cases ul {
    grid-template-columns: 1fr;
  }
}
.use-cases li {
  list-style: none;
  padding: 1rem;
  background-color: rgb(226.2421524664, 195.3139013453, 162.7578475336);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Noto Sans", sans-serif;
}

.ai-coplanner-featured {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .ai-coplanner-featured {
    padding: 4rem 0;
  }
}

.ai-coplanner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .ai-coplanner-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.ai-coplanner-text .exclusive-badge {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ca9155;
  background: rgba(202, 145, 85, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.ai-coplanner-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.75rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .ai-coplanner-text h2 {
    font-size: 2rem;
  }
}
.ai-coplanner-text .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(44, 44, 44, 0.8);
  margin-bottom: 2rem;
}
.ai-coplanner-text .access-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(44, 44, 44, 0.6);
  margin-bottom: 2rem;
}
.ai-coplanner-text .access-note svg {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ai-coplanner-text .btn {
    width: 100%;
    text-align: center;
  }
}

.ai-coplanner-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-visual-placeholder {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 5/4;
  background: linear-gradient(135deg, rgb(235.9390134529, 215.4394618834, 193.8609865471) 0%, rgb(220.5088757396, 225.6627218935, 217.3372781065) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
}
.ai-visual-placeholder .ai-zen-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgb(160.4708520179, 106.6659192825, 50.0291479821);
  opacity: 0.5;
}
.ai-visual-placeholder .ai-visual-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: rgba(44, 44, 44, 0.5);
  font-style: italic;
  position: relative;
  z-index: 2;
  background: rgba(243, 240, 232, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  backdrop-filter: blur(2px);
}

.tools-showcase {
  padding: 6rem 0;
  background-color: rgba(232, 220, 200, 0.5);
}
@media (max-width: 768px) {
  .tools-showcase {
    padding: 4rem 0;
  }
}
.tools-showcase .section-header {
  margin-bottom: 4rem;
}
.tools-showcase .section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
.tools-showcase .section-header .section-subtitle {
  font-size: 1.125rem;
  color: rgba(44, 44, 44, 0.6);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

.tool-showcase-card {
  display: flex;
  flex-direction: column;
  background-color: #f3f0e8;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #2c2c2c;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
  transition: all 300ms ease;
}
.tool-showcase-card:hover {
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.16);
  transform: translateY(-4px);
}
.tool-showcase-card:hover .tool-cta {
  color: #ca9155;
}
.tool-showcase-card.featured {
  grid-column: span 1;
}
@media (max-width: 768px) {
  .tool-showcase-card.featured {
    grid-column: span 1;
  }
}
.tool-showcase-card.featured .tool-info {
  position: relative;
}

.tool-screenshot {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(225.9846153846, 210.8461538462, 185.6153846154) 0%, rgb(218.4653846154, 199.4038461538, 167.6346153846) 100%);
}
@media (max-width: 768px) {
  .tool-screenshot {
    height: 180px;
  }
}

.screenshot-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.screenshot-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(202, 145, 85, 0.05) 100%);
}
.screenshot-placeholder .placeholder-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: rgba(44, 44, 44, 0.5);
  font-style: italic;
  position: relative;
  z-index: 2;
  background: rgba(243, 240, 232, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  backdrop-filter: blur(2px);
}
.screenshot-placeholder .zen-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #ca9155;
  opacity: 0.6;
  z-index: 1;
}
.screenshot-placeholder.ai-planner-bg {
  background: linear-gradient(135deg, rgb(232.302690583, 207.8923766816, 182.197309417) 0%, rgb(238.3632286996, 220.4708520179, 201.6367713004) 100%);
}
.screenshot-placeholder.ai-planner-bg .zen-pattern {
  color: rgb(179.9103139013, 119.5874439462, 56.0896860987);
}
.screenshot-placeholder.apps-bg {
  background: linear-gradient(135deg, rgb(207.3816568047, 214.4970414201, 203.0029585799) 0%, rgb(220.5088757396, 225.6627218935, 217.3372781065) 100%);
}
.screenshot-placeholder.apps-bg .zen-pattern {
  color: rgb(128.6183431953, 147.5029585799, 116.9970414201);
}
.screenshot-placeholder.curator-bg {
  background: linear-gradient(135deg, rgb(226.2421524664, 195.3139013453, 162.7578475336) 0%, rgb(194.2544378698, 203.3313609467, 188.6686390533) 100%);
}
.screenshot-placeholder.curator-bg .zen-pattern {
  color: #ca9155;
}
.screenshot-placeholder.canvas-bg {
  background: linear-gradient(135deg, rgb(225.9846153846, 210.8461538462, 185.6153846154) 0%, rgb(207.3816568047, 214.4970414201, 203.0029585799) 100%);
}
.screenshot-placeholder.canvas-bg .zen-pattern {
  color: #a8b5a0;
}
.screenshot-placeholder.weaver-bg {
  background: linear-gradient(135deg, rgb(228.666367713, 200.3452914798, 170.533632287) 0%, rgb(225.9846153846, 210.8461538462, 185.6153846154) 100%);
}
.screenshot-placeholder.weaver-bg .zen-pattern {
  color: rgb(195.9394618834, 132.4215246637, 65.5605381166);
}
.screenshot-placeholder.timer-bg {
  background: linear-gradient(135deg, rgb(199.5053254438, 207.7976331361, 194.4023668639) 0%, rgb(235.9390134529, 215.4394618834, 193.8609865471) 100%);
}
.screenshot-placeholder.timer-bg .zen-pattern {
  color: rgb(141.7455621302, 158.6686390533, 131.3313609467);
}
.screenshot-placeholder.card-of-day-bg {
  background: linear-gradient(135deg, rgb(233.5147982063, 210.4080717489, 186.0852017937) 0%, rgb(215.2579881657, 221.1964497041, 211.6035502959) 100%);
}
.screenshot-placeholder.card-of-day-bg .zen-pattern {
  color: rgb(187.6860986547, 124.7560538117, 58.5139013453);
}

.tool-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tool-info .tool-badge {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ca9155;
  margin-bottom: 0.5rem;
}
.tool-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2c2c2c;
}
.tool-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 1rem;
  flex: 1;
}
.tool-info .tool-cta {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.9rem;
  color: rgba(44, 44, 44, 0.6);
  transition: color 300ms ease;
  font-weight: 500;
}

.tools-footer .btn {
  min-width: 180px;
}

.explore-collection {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .explore-collection {
    padding: 4rem 0;
  }
}
.explore-collection .section-header {
  margin-bottom: 4rem;
}
.explore-collection .section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
.explore-collection .section-header .section-subtitle {
  font-size: 1.125rem;
  color: rgba(44, 44, 44, 0.6);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }
}

.collection-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem;
  background-color: #f3f0e8;
  border-radius: 8px;
  text-decoration: none;
  color: #2c2c2c;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
  transition: all 300ms ease;
  border: 1px solid transparent;
}
.collection-card:hover {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
  transform: translateY(-4px);
  border-color: rgba(202, 145, 85, 0.2);
}
.collection-card:hover .collection-icon {
  color: #ca9155;
  transform: scale(1.05);
}
.collection-card:hover .collection-cta {
  color: #ca9155;
}
.collection-card .collection-icon {
  color: rgba(44, 44, 44, 0.4);
  margin-bottom: 2rem;
  transition: all 300ms ease;
}
.collection-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
}
.collection-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 2rem;
}
.collection-card .collection-cta {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.9rem;
  color: rgba(44, 44, 44, 0.6);
  font-weight: 500;
  transition: color 300ms ease;
}

.product-gallery-flow {
  position: relative;
  padding: 6rem 0;
  cursor: pointer;
  outline: none;
}
@media (max-width: 768px) {
  .product-gallery-flow {
    padding: 4rem 0;
  }
}
.product-gallery-flow:focus-visible {
  outline: 2px solid rgba(202, 145, 85, 0.3);
  outline-offset: 4px;
}
.product-gallery-flow::before, .product-gallery-flow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 60px;
  width: 20%;
  z-index: 10;
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}
.product-gallery-flow::before {
  left: 0;
  background: linear-gradient(to right, rgba(168, 181, 160, 0.05), transparent);
}
.product-gallery-flow::after {
  right: 0;
  background: linear-gradient(to left, rgba(168, 181, 160, 0.05), transparent);
}
.product-gallery-flow:hover::before, .product-gallery-flow:hover::after {
  opacity: 1;
}

.gallery-flow {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 4/3;
}

.gallery-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item.active {
  opacity: 1;
  z-index: 1;
}

.gallery-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(44, 44, 44, 0.08));
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(92, 92, 92, 0.4);
  letter-spacing: 0.05em;
}

.gallery-breath {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 0;
}

.breath-indicator {
  width: 40px;
  height: 2px;
  background-color: rgba(202, 145, 85, 0.2);
  border-radius: 1px;
  transition: all 600ms ease;
}
.breath-indicator.active {
  background-color: rgba(202, 145, 85, 0.6);
  width: 60px;
}

/* _sass/pages/_tools.scss */
/* Styles for all tool pages */
.tools-section {
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .tools-section {
    padding: 2rem 0;
  }
}
.tools-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .tools-section .section-header {
    margin-bottom: 2rem;
  }
}
.tools-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
}
@media (max-width: 768px) {
  .tools-section .section-title {
    font-size: 2rem;
  }
}
.tools-section .section-description {
  font-size: 1.125rem;
  color: rgba(44, 44, 44, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tools-section .section-description {
    font-size: 1rem;
  }
}
.tools-section .card-grid > * {
  flex: 0 1 280px;
  max-width: 320px;
}
@media (max-width: 768px) {
  .tools-section .card-grid > * {
    flex: 1 1 200px;
    max-width: none;
  }
}

.editorial-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.tool-card-editorial {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  text-decoration: none;
  color: #2c2c2c;
  padding: 2.5rem 2rem;
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: transparent;
  position: relative;
}
@media (max-width: 768px) {
  .tool-card-editorial {
    grid-template-columns: 50px 1fr 40px;
    padding: 1.5rem 1rem;
  }
}
.tool-card-editorial .editorial-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: rgba(44, 44, 44, 0.2);
  transition: color 0.3s ease;
}
.tool-card-editorial .editorial-content .tool-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 0;
  font-weight: 400;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .tool-card-editorial .editorial-content .tool-name {
    font-size: 1.5rem;
  }
}
.tool-card-editorial .editorial-content .tool-description {
  margin: 0.25rem 0 0 0;
  font-size: 1rem;
  color: rgba(44, 44, 44, 0.6);
  opacity: 0.8;
  transform: none;
  transition: all 0.3s ease;
  max-height: 200px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .tool-card-editorial .editorial-content .tool-description {
    opacity: 0.6;
  }
}
.tool-card-editorial .editorial-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2c2c2c;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.tool-card-editorial .editorial-icon svg {
  transition: transform 0.4s ease;
}
.tool-card-editorial:hover {
  background-color: #ca9155;
  color: #f3f0e8;
  padding-left: 3rem;
}
@media (max-width: 768px) {
  .tool-card-editorial:hover {
    padding-left: 1.5rem;
  }
}
.tool-card-editorial:hover .editorial-number {
  color: rgba(255, 255, 255, 0.3);
}
.tool-card-editorial:hover .editorial-icon {
  opacity: 1;
  color: #f3f0e8;
  transform: translateX(10px);
}
.tool-card-editorial:hover .editorial-content .tool-description {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.tool-page {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .tool-page {
    padding: 2rem 0;
  }
}

.tool-header {
  text-align: center;
  margin-bottom: 2rem;
}

.card-curator-page .curator-interface {
  position: relative;
}
.card-curator-page .curator-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .card-curator-page .curator-controls {
    flex-direction: column-reverse;
    gap: 1rem;
    align-items: flex-start;
  }
}
.card-curator-page .search-container {
  flex: 1;
  display: flex;
  align-items: center;
  background-color: #f3f0e8;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
  transition: all 300ms ease;
  min-width: 300px;
}
.card-curator-page .search-container:focus-within {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
  border-color: #ca9155;
}
.card-curator-page .search-container .search-icon {
  margin-right: 0.75rem;
  opacity: 0.5;
}
.card-curator-page .search-container input {
  border: none;
  background: none;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #2c2c2c;
  outline: none;
}
.card-curator-page .search-container input::placeholder {
  color: rgba(44, 44, 44, 0.4);
}
.card-curator-page .insight-counter {
  background-color: #a8b5a0;
  color: #f3f0e8;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Noto Sans", sans-serif;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
  transition: all 300ms ease;
}
.card-curator-page .insight-counter.has-matches {
  background-color: #ca9155;
}
.card-curator-page .insight-counter .count {
  font-weight: 600;
  font-size: 1.25rem;
}
.card-curator-page .insight-counter .label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-curator-page .theme-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .card-curator-page .theme-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }
  .card-curator-page .theme-tabs::-webkit-scrollbar {
    display: none;
  }
}
.card-curator-page .tab-btn {
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: rgba(44, 44, 44, 0.5);
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}
.card-curator-page .tab-btn.active {
  color: #2c2c2c;
  font-weight: 500;
}
.card-curator-page .tab-btn:hover {
  color: #ca9155;
}
.card-curator-page .tab-content {
  display: none;
}
.card-curator-page .tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}
.card-curator-page .curator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  min-height: 200px;
}
.card-curator-page .curator-card {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
  transition: all 300ms ease;
  position: relative;
  background: #e8dcc8;
  aspect-ratio: 2/3;
}
.card-curator-page .curator-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card-curator-page .curator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.16);
}
.card-curator-page .curator-card:hover img {
  transform: scale(1.05);
}

.curator-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(232, 220, 200, 0.95);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.curator-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.flip-card-container {
  perspective: 1000px;
  cursor: default;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 2/3;
}
.flip-card-container:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
}

.flip-card-front {
  background-color: #e8dcc8;
}
.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back {
  background-color: #f3f0e8;
  color: #2c2c2c;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid rgba(44, 44, 44, 0.1);
}
.flip-card-back .flip-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.flip-card-back .flip-content h3 {
  margin: 0 0 1rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #2c2c2c;
  line-height: 1.2;
}
.flip-card-back .flip-content .flip-separator {
  width: 40px;
  height: 2px;
  background-color: #ca9155;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.flip-card-back .flip-content .flip-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.flip-card-back .flip-content .flip-keywords span {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  background-color: rgba(168, 181, 160, 0.08);
  color: rgb(141.7455621302, 158.6686390533, 131.3313609467);
  border-radius: 50px;
  text-transform: capitalize;
}

.curator-modal {
  background-color: #f3f0e8;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.16);
  position: relative;
  display: flex;
  overflow: hidden;
}
@media (max-width: 768px) {
  .curator-modal {
    flex-direction: column;
    overflow-y: auto;
  }
}
.curator-modal .modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #2c2c2c;
  z-index: 10;
}
.curator-modal .modal-close:hover {
  color: #ca9155;
}
.curator-modal .modal-content {
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .curator-modal .modal-content {
    flex-direction: column;
  }
}
.curator-modal .modal-image-container {
  flex: 1;
  background-color: rgba(44, 44, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.curator-modal .modal-image-container img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
}
.curator-modal .modal-details {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .curator-modal .modal-details {
    padding: 2rem;
  }
}
.curator-modal .modal-details h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c2c2c;
}
.curator-modal .modal-details .modal-meta {
  margin-bottom: 2rem;
}
.curator-modal .modal-details .modal-meta .modal-subtitle {
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(44, 44, 44, 0.5);
  margin-bottom: 0.5rem;
}
.curator-modal .modal-details .modal-meta .modal-back-text {
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #ca9155;
}
.curator-modal .modal-details .modal-meta .modal-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.curator-modal .modal-details .modal-meta .modal-keywords .keyword-tag {
  background-color: rgba(168, 181, 160, 0.1);
  color: rgb(115.9644970414, 134.349112426, 104.650887574);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card-of-day-page {
  min-height: 60vh;
}
@media (max-width: 768px) {
  .card-of-day-page {
    padding: 3rem 0;
  }
}
.card-of-day-page .card-display {
  text-align: center;
  padding: 4rem 2rem;
  background-color: rgba(168, 181, 160, 0.05);
  border-radius: 8px;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .card-of-day-page .card-display {
    padding: 2rem 1rem;
  }
}
.card-of-day-page .drawn-card {
  max-width: 400px;
  margin: 0 auto;
}
.card-of-day-page .drawn-card img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.16);
  margin-bottom: 1.5rem;
}
.card-of-day-page .drawn-card h2 {
  margin-bottom: 1rem;
}
.card-of-day-page .drawn-card .keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.card-of-day-page .card-reflection {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #f3f0e8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
}
@media (max-width: 768px) {
  .card-of-day-page .card-reflection {
    padding: 1.5rem;
  }
}
.card-of-day-page .card-reflection ul {
  list-style: disc;
  padding-left: 2rem;
  margin-top: 1rem;
}
.card-of-day-page .card-reflection ul li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.timer-page {
  min-height: 60vh;
}
@media (max-width: 768px) {
  .timer-page {
    padding: 3rem 0;
  }
}
.timer-page .timer-container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
@keyframes timer-pulse {
  0% {
    filter: drop-shadow(0 0 2px rgba(202, 145, 85, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(202, 145, 85, 0.7));
  }
  100% {
    filter: drop-shadow(0 0 2px rgba(202, 145, 85, 0.4));
  }
}
.timer-page .timer-display {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
@media (max-width: 768px) {
  .timer-page .timer-display {
    width: 270px;
    height: 270px;
    margin: 1.5rem auto;
  }
}
.timer-page .timer-display .timer-ring {
  display: block;
  overflow: visible;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.timer-page .timer-display .timer-ring circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}
.timer-page .timer-display .timer-ring .base-ring {
  stroke: rgba(168, 181, 160, 0.2);
}
.timer-page .timer-display .timer-ring .progress-ring {
  stroke: #ca9155;
  stroke-dasharray: 880;
  stroke-dashoffset: 0;
}
.timer-page .timer-display.is-running .progress-ring {
  animation: timer-pulse 2s infinite ease-in-out;
}
.timer-page .timer-display .time-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timer-page .timer-display .time {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 500;
  color: #2c2c2c;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 768px) {
  .timer-page .timer-display .time {
    font-size: 3rem;
  }
}
.timer-page .timer-notification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(44, 44, 44, 0.4);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.timer-page .timer-notification.active {
  opacity: 1;
  visibility: visible;
}
.timer-page .timer-notification.active .notification-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.timer-page .timer-notification .notification-content {
  background-color: #e8dcc8;
  padding: 3rem 4rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.16);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  border: 1px solid rgba(202, 145, 85, 0.2);
  max-width: 90%;
  width: 400px;
}
@media (max-width: 768px) {
  .timer-page .timer-notification .notification-content {
    padding: 2rem;
    width: 85%;
  }
}
.timer-page .timer-notification .notification-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #ca9155;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.timer-page .timer-notification .notification-content p {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 2rem;
}
.timer-page .timer-notification .notification-content .btn {
  min-width: 150px;
  font-size: 1rem;
}
.timer-page .timer-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
  justify-items: stretch;
}
@media (max-width: 768px) {
  .timer-page .timer-presets {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
.timer-page .timer-presets .btn {
  width: 100%;
}
.timer-page .timer-custom {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.timer-page .timer-custom input {
  width: 80px;
  padding: 0.5rem;
  border: 2px solid rgba(44, 44, 44, 0.1);
  border-radius: 8px;
  text-align: center;
  font-size: 1rem;
}
.timer-page .timer-custom input:focus {
  border-color: #ca9155;
  outline: none;
}
.timer-page .timer-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.timer-page .timer-controls .btn {
  min-width: 120px;
}
@media (max-width: 768px) {
  .timer-page .timer-controls .btn {
    min-width: 100px;
  }
}
.timer-page .timer-sound {
  margin-top: 2rem;
  font-size: 0.875rem;
}
.timer-page .timer-sound input {
  margin-right: 0.5rem;
  cursor: pointer;
}

@media print {
  .site-header,
  .site-footer,
  .tool-header,
  .theme-selection,
  .filters-section,
  .results-header {
    display: none;
  }
  #results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
/* _sass/pages/_spread-canvas.scss */
/* Virtual Spread Canvas - Zen Minimalism Aesthetic */
.spread-canvas-page {
  min-height: 100vh;
  background-color: #e8dcc8;
}
.spread-canvas-page .browser-notice {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.5);
  margin-top: 0.5rem;
  font-style: italic;
}
.spread-canvas-page .mobile-notice {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding: 6rem;
}
.spread-canvas-page .mobile-notice .mobile-notice-content {
  text-align: center;
  max-width: 400px;
}
.spread-canvas-page .mobile-notice .mobile-notice-content svg {
  display: block;
  margin: 0 auto 2rem;
  color: #ca9155;
}
.spread-canvas-page .mobile-notice .mobile-notice-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.spread-canvas-page .mobile-notice .mobile-notice-content p {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  color: rgba(44, 44, 44, 0.7);
  line-height: 1.6;
}
.spread-canvas-page .studio-workspace {
  display: flex;
  gap: 2rem;
  padding: 0 2rem 2rem;
  max-width: 100%;
  height: calc(100vh - 180px);
  min-height: 700px;
}
@media (max-width: 768px) {
  .spread-canvas-page .studio-workspace {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
}
.spread-canvas-page .card-palette {
  width: 240px;
  background-color: #f3f0e8;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
  display: flex;
  flex-direction: column;
  transition: width 300ms ease;
}
@media (max-width: 768px) {
  .spread-canvas-page .card-palette {
    width: 100%;
    max-height: 300px;
  }
}
.spread-canvas-page .card-palette.collapsed {
  width: 80px;
}
.spread-canvas-page .card-palette.collapsed .palette-header .title-with-info,
.spread-canvas-page .card-palette.collapsed .palette-cards {
  display: none;
}
.spread-canvas-page .card-palette.collapsed .toggle-btn {
  transform: rotate(180deg);
}
.spread-canvas-page .card-palette .palette-header {
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(202, 145, 85, 0.05);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.spread-canvas-page .card-palette .palette-header .title-with-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.spread-canvas-page .card-palette .palette-header h3 {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.25rem;
  color: #2c2c2c;
  margin: 0;
}
.spread-canvas-page .card-palette .palette-header .info-tooltip-trigger {
  position: relative;
  cursor: help;
  display: flex;
  align-items: center;
  color: rgba(44, 44, 44, 0.4);
  transition: color 200ms ease;
}
.spread-canvas-page .card-palette .palette-header .info-tooltip-trigger:hover {
  color: #ca9155;
}
.spread-canvas-page .card-palette .palette-header .info-tooltip-trigger:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.spread-canvas-page .card-palette .palette-header .info-tooltip-trigger .tooltip-content {
  position: absolute;
  bottom: calc(100% + 12px);
  left: -10px;
  width: 200px;
  padding: 12px;
  background-color: #f3f0e8;
  color: #2c2c2c;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.16);
  border: 1px solid rgba(202, 145, 85, 0.2);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, transform 300ms ease, visibility 300ms ease;
  transform: translateY(5px);
  pointer-events: none;
  text-align: left;
}
.spread-canvas-page .card-palette .palette-header .info-tooltip-trigger .tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 17px;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #f3f0e8 transparent transparent transparent;
}
.spread-canvas-page .card-palette .palette-header .toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: #ca9155;
  transition: transform 300ms ease;
  padding: 0.5rem;
}
.spread-canvas-page .card-palette .palette-header .toggle-btn:hover {
  color: rgb(179.9103139013, 119.5874439462, 56.0896860987);
}
.spread-canvas-page .card-palette .palette-cards {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.spread-canvas-page .card-palette .palette-cards::-webkit-scrollbar {
  width: 6px;
}
.spread-canvas-page .card-palette .palette-cards::-webkit-scrollbar-track {
  background: rgba(44, 44, 44, 0.3);
}
.spread-canvas-page .card-palette .palette-cards::-webkit-scrollbar-thumb {
  background: #ca9155;
  border-radius: 3px;
}
.spread-canvas-page .card-palette .palette-cards::-webkit-scrollbar-thumb:hover {
  background: rgb(179.9103139013, 119.5874439462, 56.0896860987);
}
.spread-canvas-page .card-palette .palette-card {
  background-color: #f3f0e8;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 4px;
  padding: 0.5rem;
  margin-bottom: 1rem;
  cursor: grab;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.spread-canvas-page .card-palette .palette-card:hover {
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
  transform: translateY(-2px);
  border-color: #ca9155;
}
.spread-canvas-page .card-palette .palette-card:active {
  cursor: grabbing;
}
.spread-canvas-page .card-palette .palette-card .card-thumbnail {
  width: 50px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.spread-canvas-page .card-palette .palette-card .card-info {
  flex: 1;
  min-width: 0;
}
.spread-canvas-page .card-palette .palette-card .card-info .card-emotion {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 2px;
}
.spread-canvas-page .card-palette .palette-card .card-info .card-category {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spread-canvas-page .canvas-container {
  flex: 1;
  background-color: #f3f0e8;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
  position: relative;
  overflow: hidden;
}
.spread-canvas-page .canvas-container #konva-stage {
  width: 100%;
  height: 100%;
  background-color: #e8dcc8;
  background-image: linear-gradient(rgba(44, 44, 44, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(44, 44, 44, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
}
.spread-canvas-page .studio-toolbar {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: #f3f0e8;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.16);
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
@media (max-width: 768px) {
  .spread-canvas-page .studio-toolbar {
    top: 1rem;
    right: 1rem;
    flex-wrap: wrap;
  }
}
.spread-canvas-page .studio-toolbar .tool-btn {
  background-color: transparent;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  color: #2c2c2c;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.spread-canvas-page .studio-toolbar .tool-btn:hover {
  background-color: rgba(202, 145, 85, 0.1);
  border-color: #ca9155;
  color: #ca9155;
}
.spread-canvas-page .studio-toolbar .tool-btn.active {
  background-color: #ca9155;
  border-color: #ca9155;
  color: #f3f0e8;
}
.spread-canvas-page .studio-toolbar .tool-btn.export-btn {
  background-color: #ca9155;
  border-color: #ca9155;
  color: #f3f0e8;
}
.spread-canvas-page .studio-toolbar .tool-btn.export-btn:hover {
  background-color: rgb(179.9103139013, 119.5874439462, 56.0896860987);
}
.spread-canvas-page .studio-toolbar .tool-btn.btn-warning {
  background-color: #d66d6d;
  border-color: #d66d6d;
  color: #f3f0e8;
}
.spread-canvas-page .studio-toolbar .tool-btn.btn-warning:hover {
  background-color: rgb(202.8181818182, 69.1818181818, 69.1818181818);
}
.spread-canvas-page .studio-toolbar .tool-btn .icon {
  font-size: 1rem;
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.palette-card {
  animation: cardEntrance 0.3s ease-out backwards;
}
.palette-card:nth-child(1) {
  animation-delay: 0.02s;
}
.palette-card:nth-child(2) {
  animation-delay: 0.04s;
}
.palette-card:nth-child(3) {
  animation-delay: 0.06s;
}
.palette-card:nth-child(4) {
  animation-delay: 0.08s;
}
.palette-card:nth-child(5) {
  animation-delay: 0.1s;
}
.palette-card:nth-child(6) {
  animation-delay: 0.12s;
}
.palette-card:nth-child(7) {
  animation-delay: 0.14s;
}
.palette-card:nth-child(8) {
  animation-delay: 0.16s;
}
.palette-card:nth-child(9) {
  animation-delay: 0.18s;
}
.palette-card:nth-child(10) {
  animation-delay: 0.2s;
}
.palette-card:nth-child(11) {
  animation-delay: 0.22s;
}
.palette-card:nth-child(12) {
  animation-delay: 0.24s;
}
.palette-card:nth-child(13) {
  animation-delay: 0.26s;
}
.palette-card:nth-child(14) {
  animation-delay: 0.28s;
}
.palette-card:nth-child(15) {
  animation-delay: 0.3s;
}
.palette-card:nth-child(16) {
  animation-delay: 0.32s;
}
.palette-card:nth-child(17) {
  animation-delay: 0.34s;
}
.palette-card:nth-child(18) {
  animation-delay: 0.36s;
}
.palette-card:nth-child(19) {
  animation-delay: 0.38s;
}
.palette-card:nth-child(20) {
  animation-delay: 0.4s;
}
.palette-card:nth-child(21) {
  animation-delay: 0.42s;
}
.palette-card:nth-child(22) {
  animation-delay: 0.44s;
}
.palette-card:nth-child(23) {
  animation-delay: 0.46s;
}
.palette-card:nth-child(24) {
  animation-delay: 0.48s;
}
.palette-card:nth-child(25) {
  animation-delay: 0.5s;
}
.palette-card:nth-child(26) {
  animation-delay: 0.52s;
}
.palette-card:nth-child(27) {
  animation-delay: 0.54s;
}
.palette-card:nth-child(28) {
  animation-delay: 0.56s;
}
.palette-card:nth-child(29) {
  animation-delay: 0.58s;
}
.palette-card:nth-child(30) {
  animation-delay: 0.6s;
}
.palette-card:nth-child(31) {
  animation-delay: 0.62s;
}
.palette-card:nth-child(32) {
  animation-delay: 0.64s;
}
.palette-card:nth-child(33) {
  animation-delay: 0.66s;
}
.palette-card:nth-child(34) {
  animation-delay: 0.68s;
}
.palette-card:nth-child(35) {
  animation-delay: 0.7s;
}
.palette-card:nth-child(36) {
  animation-delay: 0.72s;
}
.palette-card:nth-child(37) {
  animation-delay: 0.74s;
}
.palette-card:nth-child(38) {
  animation-delay: 0.76s;
}
.palette-card:nth-child(39) {
  animation-delay: 0.78s;
}
.palette-card:nth-child(40) {
  animation-delay: 0.8s;
}
.palette-card:nth-child(41) {
  animation-delay: 0.82s;
}
.palette-card:nth-child(42) {
  animation-delay: 0.84s;
}
.palette-card:nth-child(43) {
  animation-delay: 0.86s;
}
.palette-card:nth-child(44) {
  animation-delay: 0.88s;
}
.palette-card:nth-child(45) {
  animation-delay: 0.9s;
}
.palette-card:nth-child(46) {
  animation-delay: 0.92s;
}
.palette-card:nth-child(47) {
  animation-delay: 0.94s;
}
.palette-card:nth-child(48) {
  animation-delay: 0.96s;
}
.palette-card:nth-child(49) {
  animation-delay: 0.98s;
}
.palette-card:nth-child(50) {
  animation-delay: 1s;
}

/* _sass/pages/_story-weaver.scss */
/* Styles for Story Weaver tool */
.story-weaver-page {
  min-height: 80vh;
  padding-bottom: 4rem;
}
.story-weaver-page .story-stage-container {
  background-color: rgba(168, 181, 160, 0.05);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  overflow: hidden; /* Hide scrollbar if we carry custom controls, but we'll use overflow-x auto for now */
  border: 1px solid rgba(44, 44, 44, 0.5);
}
@media (max-width: 768px) {
  .story-weaver-page .story-stage-container {
    padding: 1rem;
  }
}
.story-weaver-page .story-rail {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0.5rem 2rem 0.5rem; /* Bottom padding for scrollbar space/shadows */
  scrollbar-width: thin;
  scrollbar-color: #ca9155 transparent;
  min-height: 320px;
  align-items: center;
  scroll-behavior: smooth;
}
.story-weaver-page .story-rail::-webkit-scrollbar {
  height: 8px;
}
.story-weaver-page .story-rail::-webkit-scrollbar-track {
  background: transparent;
}
.story-weaver-page .story-rail::-webkit-scrollbar-thumb {
  background-color: rgba(202, 145, 85, 0.3);
  border-radius: 4px;
}
.story-weaver-page .story-rail::-webkit-scrollbar-thumb:hover {
  background-color: #ca9155;
}
.story-weaver-page .story-rail {
  /* Empty state styling */
}
.story-weaver-page .story-rail:empty {
  justify-content: center;
}
.story-weaver-page .story-rail:empty::after {
  content: "Draw a card to begin your story...";
  color: rgba(44, 44, 44, 0.4);
  font-family: "Noto Sans", sans-serif;
  font-style: italic;
}
.story-weaver-page {
  /* Card in the story rail */
}
.story-weaver-page .story-card {
  flex: 0 0 200px; /* Fixed width for cards */
  display: flex;
  flex-direction: column;
  background: #f3f0e8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
  transition: all 300ms ease;
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
}
@media (max-width: 768px) {
  .story-weaver-page .story-card {
    flex: 0 0 160px;
  }
}
.story-weaver-page .story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
  border-color: rgba(202, 145, 85, 0.3);
}
.story-weaver-page .story-card .card-image {
  width: 100%;
  height: auto;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.story-weaver-page .story-card .card-caption {
  padding: 0.75rem;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: #2c2c2c;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
}
.story-weaver-page .story-card {
  /* Order number badge */
}
.story-weaver-page .story-card .card-order {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 24px;
  height: 24px;
  background-color: #ca9155;
  color: #f3f0e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
}
.story-weaver-page .story-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.story-weaver-page .story-journal {
  max-width: 800px;
  margin: 0 auto;
}
.story-weaver-page .story-journal h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
  color: rgba(44, 44, 44, 0.8);
}
.story-weaver-page .story-journal textarea {
  width: 100%;
  min-height: 200px;
  padding: 1.5rem;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  resize: vertical;
  background-color: rgba(243, 240, 232, 0.8);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.story-weaver-page .story-journal textarea:focus {
  outline: none;
  border-color: #ca9155;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
  background-color: #f3f0e8;
}
.story-weaver-page .story-journal textarea::placeholder {
  color: rgba(44, 44, 44, 0.3);
  font-style: italic;
}

/* _sass/pages/_applications.scss */
.applications-page .filter-container {
  margin-bottom: 2rem;
  position: relative;
}
.applications-page .filter-container::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, transparent, #e8dcc8);
  pointer-events: none;
}
@media (min-width: 768px) {
  .applications-page .filter-container::after {
    display: none;
  }
}
.applications-page .filter-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.applications-page .filter-scroll::-webkit-scrollbar {
  display: none;
}
.applications-page .filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 50px;
  background: transparent;
  color: #2c2c2c;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 300ms ease;
}
.applications-page .filter-btn:hover {
  border-color: #ca9155;
  color: #ca9155;
}
.applications-page .filter-btn.active {
  background-color: #ca9155;
  color: #f3f0e8;
  border-color: #ca9155;
}
.applications-page .applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .applications-page .applications-grid {
    grid-template-columns: 1fr;
  }
}
.applications-page .application-card {
  background: #f3f0e8;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 300ms ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeIn 0.5s ease-out;
}
.applications-page .application-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
  border-color: rgba(202, 145, 85, 0.3);
}
.applications-page .category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(168, 181, 160, 0.1);
  color: rgb(128.6183431953, 147.5029585799, 116.9970414201);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.applications-page .app-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: #2c2c2c;
}
.applications-page .app-description {
  font-size: 0.9375rem;
  color: rgba(44, 44, 44, 0.7);
  line-height: 1.8;
  margin: 0;
}
.applications-page .empty-state {
  text-align: center;
  padding: 3rem;
  color: rgba(44, 44, 44, 0.5);
  font-style: italic;
}

/* _sass/pages/_articles.scss */
.article-post {
  padding: 6rem 0;
}
.article-post .container-narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem;
}

.article-header {
  text-align: center;
  margin-bottom: 4rem;
}
.article-header .article-meta {
  margin-bottom: 1rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  color: #5c5c5c;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.article-header .article-meta .article-category {
  color: #ca9155;
  font-weight: 600;
  margin-right: 0.5rem;
}
.article-header .article-meta .article-category:after {
  content: "•";
  margin-left: 0.5rem;
  color: #5c5c5c;
}
.article-header .article-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-family: "Cormorant Garamond", serif;
}
@media (max-width: 768px) {
  .article-header .article-title {
    font-size: 2.2rem;
  }
}
.article-header .article-description {
  font-size: 1.3rem;
  line-height: 1.4;
  color: #5c5c5c;
  max-width: 90%;
  margin: 0 auto;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}

.article-content {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #2c2c2c;
  margin-top: 4rem;
}
.article-content h2 {
  font-size: 1.8rem;
  margin-top: 6rem;
  margin-bottom: 2rem;
}
.article-content h3 {
  font-size: 1.4rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.article-content p {
  margin-bottom: 2rem;
}
.article-content ul,
.article-content ol {
  margin-bottom: 4rem;
  padding-left: 4rem;
}
.article-content ul li,
.article-content ol li {
  margin-bottom: 0.5rem;
}
.article-content blockquote {
  border-left: 4px solid #ca9155;
  padding-left: 2rem;
  margin: 4rem 0;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: #5c5c5c;
}
.article-content hr {
  border: 0;
  height: 1px;
  background: rgba(44, 44, 44, 0.1);
  margin: 6rem 0;
}
.article-content .footnotes {
  margin-top: 8rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
  font-size: 0.875rem;
  color: #5c5c5c;
}
.article-content .footnotes ol {
  margin-left: 2rem;
}

.article-footer {
  margin-top: 8rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
  text-align: center;
}
.article-footer .back-link {
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid rgba(44, 44, 44, 0.2);
  border-radius: 8px;
  color: #2c2c2c;
  font-family: "Noto Sans", sans-serif;
  transition: all 300ms ease;
}
.article-footer .back-link:hover {
  background-color: rgba(202, 145, 85, 0.05);
  border-color: #ca9155;
  color: #ca9155;
  text-decoration: none;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 4rem;
  margin: 6rem 0;
}

.article-card {
  display: flex;
  flex-direction: column;
  background-color: #f3f0e8;
  border: 1px solid rgba(44, 44, 44, 0.08);
  border-radius: 8px;
  transition: all 300ms ease;
  height: 100%;
  padding: 4rem;
  color: #2c2c2c;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
  border-color: rgba(202, 145, 85, 0.3);
  text-decoration: none;
}
.article-card:hover .article-card-title {
  color: #ca9155;
}
.article-card .article-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.article-card .article-category-tag {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5c5c5c;
  margin-bottom: 0.5rem;
}
.article-card .article-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 300ms ease;
}
.article-card .article-card-description {
  font-size: 0.95rem;
  color: #5c5c5c;
  margin-bottom: 2rem;
  line-height: 1.6;
  flex-grow: 1;
}
.article-card .article-card-meta {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px dashed rgba(44, 44, 44, 0.1);
}
.article-card .article-card-meta .read-more {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ca9155;
}

/* _sass/pages/_shop.scss */
.shop-hero {
  padding: 8rem 0 4rem;
}
.shop-hero .shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 768px) {
  .shop-hero .shop-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) {
  .shop-hero .shop-gallery {
    margin-top: 14.5rem;
  }
}
.shop-hero .product-image {
  background-color: #f3f0e8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(44, 44, 44, 0.1);
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
}
.shop-hero .product-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.shop-hero .shop-details h1 {
  margin-bottom: 0.5rem;
}
.shop-hero .shop-details .tagline {
  color: #5c5c5c;
  margin-bottom: 2rem;
}
.shop-hero .shop-details .product-price {
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  color: #ca9155;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.shop-hero .shop-details .product-price .currency {
  font-size: 1.5rem;
}
.shop-hero .shop-details .product-price .tax-info {
  font-size: 0.875rem;
  color: #5c5c5c;
  font-family: "Inter", sans-serif;
}
.shop-hero .shop-details .list-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.shop-hero .shop-details .product-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 4rem;
}
.shop-hero .shop-details .product-includes li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 24px;
}
.shop-hero .shop-details .product-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ca9155;
  font-weight: bold;
}
.shop-hero .shop-details .shop-actions {
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shop-hero .shop-details .shop-actions .coming-soon-pill {
  display: inline-block;
  background-color: #ca9155;
  color: #f3f0e8;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.shop-hero .shop-details .shop-actions .btn {
  width: 100%;
  max-width: 80%;
  margin-bottom: 0.5rem;
}
.shop-hero .shop-details .shop-actions .shipping-note {
  font-size: 0.875rem;
  color: #5c5c5c;
  width: 100%;
  max-width: 80%;
  text-align: center;
}
.shop-hero .shop-details .product-ideal-for {
  background-color: rgb(225.9846153846, 210.8461538462, 185.6153846154);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.shop-hero .shop-details .product-ideal-for h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.shop-hero .shop-details .product-ideal-for p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.shop-hero .shop-details .product-ideal-for .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.shop-hero .shop-details .product-ideal-for .tags .tag {
  background-color: #f3f0e8;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 0.75rem;
  color: #2c2c2c;
}
.shop-hero .shop-details .mfg-details {
  border-top: 1px solid rgba(44, 44, 44, 0.1);
  padding-top: 1rem;
  color: #5c5c5c;
  line-height: 1.4;
  font-size: 0.875rem;
}

.shop-stockists {
  padding: 6rem 0;
}
.shop-stockists .stockists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
  margin-bottom: 8rem;
}
.shop-stockists .stockist-card {
  background-color: #e8dcc8;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(44, 44, 44, 0.1);
  text-align: center;
}
.shop-stockists .stockist-card .stockist-image {
  background-color: rgb(225.9846153846, 210.8461538462, 185.6153846154);
  height: 150px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c5c5c;
  border-radius: 8px;
}
.shop-stockists .stockist-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.shop-stockists .stockist-card p {
  color: #5c5c5c;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.shop-stockists .stockist-cta .partner-box {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgb(225.9846153846, 210.8461538462, 185.6153846154);
  padding: 4rem;
  border-radius: 8px;
  border: 1px solid rgba(44, 44, 44, 0.1);
}
.shop-stockists .stockist-cta .partner-box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.shop-stockists .stockist-cta .partner-box p {
  color: #5c5c5c;
  margin-bottom: 2rem;
}
.shop-stockists .mt-lg {
  margin-top: 4rem;
}

/* _sass/pages/_reading-list.scss */
.reading-list-page {
  padding: 4rem 0 6rem;
}

.page-header-large {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.page-header-large h1 {
  margin-bottom: 1rem;
}
.page-header-large .lead {
  font-size: 1.25rem;
  color: rgba(44, 44, 44, 0.7);
  font-family: "Cormorant Garamond", serif;
}

.reading-section {
  margin-bottom: 4rem;
}
.reading-section .section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.reading-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #ca9155;
  margin: 1rem auto 0;
}

/* Book Grid */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 4rem;
  margin: 0 auto;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .book-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}

.book-card {
  display: flex;
  flex-direction: column;
  background-color: #f3f0e8;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
  transition: all 300ms ease;
}
.book-card:hover {
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
  transform: translateY(-4px);
}
.book-card .book-cover {
  margin-bottom: 1rem;
}
.book-card .book-cover img {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
  display: block;
  margin: 0 auto;
}
.book-card .book-info {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.book-card .book-info .book-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.book-card .book-info .book-author {
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.6);
  margin-bottom: 1rem;
}
.book-card .book-info .book-description {
  font-size: 0.875rem;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1rem;
}
.book-card .book-info .btn {
  align-self: center;
}

/* Article List */
.article-list {
  max-width: 800px;
  margin: 0 auto;
}

.article-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}
.article-item:first-child {
  border-top: 1px solid rgba(44, 44, 44, 0.1);
}
.article-item .article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.5);
  margin-bottom: 0.5rem;
  font-family: "Noto Sans", sans-serif;
}
.article-item .article-meta .article-publication {
  color: #ca9155;
}
.article-item .article-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.article-item .article-author {
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.6);
  margin-bottom: 1rem;
}
.article-item .article-description {
  font-size: 18px;
  line-height: 1.8;
  color: #5c5c5c;
}

.aic-root {
  --aic-bg: #F5F1E8;
  --aic-surface: #FFFFFF;
  --aic-surface-2: #EDE8DC;
  --aic-border: rgba(44,44,44, 0.10);
  --aic-text: #2C2C2C;
  --aic-text-dim: rgba(44,44,44, 0.60);
  --aic-text-faint: rgba(44,44,44, 0.35);
  --aic-accent: #CA9155;
  --aic-accent-dim: rgba(202,145,85, 0.14);
  --aic-accent-btn: #CA9155;
  --aic-accent-btn-hover: #b5794a;
  --aic-accent-text: #8a4f1a;
  --aic-sage: #A8B5A0;
  --aic-sage-dim: rgba(168,181,160, 0.18);
  --aic-coral: #d66d6d;
  --aic-msg-user: #EDE8DC;
  --aic-msg-ai: #FFFFFF;
  --aic-msg-border: rgba(44,44,44, 0.07);
  --aic-msg-stripe: rgba(202,145,85, 0.4);
  --aic-msg-user-border: rgba(44,44,44, 0.08);
  --aic-composer-bg: #FFFFFF;
  --aic-textarea-bg: #F5F1E8;
  --aic-send-text: #fff;
  --aic-scrollbar: rgba(44,44,44, 0.14);
  --aic-shadow-card: 0 4px 24px rgba(44,44,44, 0.12);
  --aic-shadow-sidebar: 4px 0 24px rgba(44,44,44, 0.15);
  --aic-shadow-btn: 0 6px 20px rgba(202,145,85, 0.28);
  --aic-modal-backdrop: rgba(44,44,44, 0.55);
  --aic-toggle-bg: rgba(44,44,44, 0.06);
  --aic-toggle-hover: rgba(44,44,44, 0.12);
  --aic-toggle-color: rgba(44,44,44, 0.55);
  --aic-toggle-hover-c: #2C2C2C;
}

.aic-root.aic-dark {
  --aic-bg: #1a1814;
  --aic-surface: #252118;
  --aic-surface-2: #302b23;
  --aic-border: rgba(255,255,255, 0.07);
  --aic-text: #f0e9d8;
  --aic-text-dim: rgba(240,233,216, 0.55);
  --aic-text-faint: rgba(240,233,216, 0.25);
  --aic-accent: #c9854a;
  --aic-accent-dim: rgba(201,133,74, 0.18);
  --aic-accent-btn: #c9854a;
  --aic-accent-btn-hover: #d9955a;
  --aic-accent-text: #c9854a;
  --aic-sage: #8fa98a;
  --aic-sage-dim: rgba(143,169,138, 0.15);
  --aic-coral: #c96060;
  --aic-msg-user: #302b23;
  --aic-msg-ai: #252118;
  --aic-msg-border: rgba(255,255,255, 0.07);
  --aic-msg-stripe: rgba(201,133,74, 0.45);
  --aic-msg-user-border: rgba(255,255,255, 0.08);
  --aic-composer-bg: #252118;
  --aic-textarea-bg: #1a1814;
  --aic-send-text: #1a1814;
  --aic-scrollbar: rgba(255,255,255, 0.10);
  --aic-shadow-card: 0 32px 64px rgba(0,0,0,0.5), 0 0 80px rgba(201,133,74, 0.06);
  --aic-shadow-sidebar: 4px 0 40px rgba(0,0,0,0.6);
  --aic-shadow-btn: 0 6px 20px rgba(201,133,74, 0.30);
  --aic-modal-backdrop: rgba(0,0,0, 0.75);
  --aic-toggle-bg: rgba(255,255,255, 0.07);
  --aic-toggle-hover: rgba(255,255,255, 0.12);
  --aic-toggle-color: rgba(240,233,216, 0.50);
  --aic-toggle-hover-c: #f0e9d8;
}

.ai-companion-body {
  margin: 0;
  padding: 0;
  background: var(--aic-bg);
  color: var(--aic-text);
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1), color 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ai-companion-body:not(.chat-active) {
  overflow-y: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.ai-companion-body.chat-active {
  overflow: hidden;
}
.ai-companion-body main {
  margin: 0;
  padding: 0;
}
.ai-companion-body .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

.aic-root {
  width: 100vw;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  min-height: calc(100dvh - 160px);
}
.chat-active .aic-root {
  position: fixed;
  inset: 0;
  height: 100dvh;
  min-height: auto;
}

.aic-theme-toggle {
  display: none;
}
.chat-active .aic-theme-toggle {
  position: fixed;
  top: 0.875rem;
  right: 0.875rem;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
  background: var(--aic-toggle-bg);
  border: 1px solid var(--aic-border);
  border-radius: 999px;
  color: var(--aic-toggle-color);
  font-family: "Noto Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1), color 280ms cubic-bezier(0.4, 0, 0.2, 1), border-color 280ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 280ms;
  -webkit-tap-highlight-color: transparent;
}
.chat-active .aic-theme-toggle:hover {
  background: var(--aic-toggle-hover);
  color: var(--aic-toggle-hover-c);
  border-color: var(--aic-accent);
  box-shadow: 0 2px 12px var(--aic-accent-dim);
}
.aic-theme-toggle__icon {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.aic-theme-toggle:hover .aic-theme-toggle__icon {
  transform: rotate(20deg);
}
.aic-theme-toggle__label {
  white-space: nowrap;
}

.aic-welcome {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  background: #e8dcc8;
  transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.aic-welcome.hidden {
  display: none;
}
.aic-welcome--brush-bg {
  overflow: hidden;
}
.aic-welcome--brush-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  min-width: 1200px;
  min-height: 1200px;
  background-image: url("../images/elements/wu_wei_circular_brush_stroke_white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.aic-welcome__card {
  position: relative;
  z-index: 1;
  background: rgb(225.9846153846, 210.8461538462, 185.6153846154);
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
  max-width: min(90vw, 520px);
  width: 100%;
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
  transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1), border-color 280ms, box-shadow 280ms;
  animation: card-rise 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@media (min-width: 1400px) {
  .aic-welcome__card {
    max-width: 560px;
    padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  }
}
@media (max-width: 1024px) {
  .aic-welcome__card {
    max-width: 480px;
  }
}
.aic-welcome__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ca9155;
  margin-bottom: 0.75rem;
  transition: color 280ms;
}
.aic-welcome__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: #2c2c2c;
  margin: 0 0 0.25rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: color 280ms;
}
.aic-welcome__subtitle {
  font-size: 0.85rem;
  color: #5c5c5c;
  margin: 0;
  font-style: italic;
  transition: color 280ms;
}
.aic-welcome__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44, 44, 44, 0.1) 40%, rgba(44, 44, 44, 0.1) 60%, transparent);
  margin: 1.75rem 0;
  transition: background 280ms;
}
.aic-welcome__body {
  font-size: 0.9rem;
  color: #5c5c5c;
  line-height: 1.75;
  margin: 0 0 1.75rem;
  transition: color 280ms;
}
.aic-welcome__hint {
  font-size: 0.75rem;
  color: rgba(44, 44, 44, 0.5);
  margin: 1.25rem 0 0;
  text-align: center;
  transition: color 280ms;
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.aic-code-entry {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.aic-code-entry__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.5);
  transition: color 280ms;
}
.aic-code-entry__input {
  width: 100%;
  box-sizing: border-box;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  font-family: "Courier New", monospace;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: clamp(0.15em, 0.5vw, 0.25em);
  text-align: center;
  background: #e8dcc8;
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 10px;
  color: #2c2c2c;
  transition: background 280ms, color 280ms, border-color 280ms, box-shadow 280ms;
  outline: none;
}
.aic-code-entry__input::placeholder {
  color: rgba(44, 44, 44, 0.35);
}
.aic-code-entry__input:focus {
  border-color: #ca9155;
  box-shadow: 0 0 0 3px rgba(202, 145, 85, 0.2), 0 0 20px rgba(202, 145, 85, 0.15);
}
@media (min-width: 1400px) {
  .aic-code-entry__input {
    padding: 1rem 1.75rem;
    font-size: 1.6rem;
    letter-spacing: 0.28em;
  }
}
.aic-code-entry__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  background: #ca9155;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 120ms ease, box-shadow 280ms;
}
.aic-code-entry__btn:hover:not(:disabled) {
  background: rgb(187.6860986547, 124.7560538117, 58.5139013453);
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
  transform: translateY(-1px);
}
.aic-code-entry__btn:active:not(:disabled) {
  transform: translateY(0);
}
.aic-code-entry__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (min-width: 1400px) {
  .aic-code-entry__btn {
    padding: 1.1rem 3rem;
  }
}

.aic-error {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(214, 109, 109, 0.1);
  border: 1px solid rgba(214, 109, 109, 0.28);
  border-radius: 8px;
  color: rgb(192.4545454545, 54.0454545455, 54.0454545455);
  font-size: 0.85rem;
  line-height: 1.5;
  transition: background 280ms, color 280ms;
}
.aic-error.hidden {
  display: none;
}

.aic-privacy-notice {
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.5rem;
  max-width: min(90vw, 480px);
  width: 100%;
  background: rgb(225.9846153846, 210.8461538462, 185.6153846154);
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .aic-privacy-notice {
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}

.aic-privacy-lead {
  margin: 0 0 1rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.9rem;
  color: #ca9155;
  font-weight: 600;
}

.aic-privacy-text {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(44, 44, 44, 0.7);
}
.aic-privacy-text:last-child {
  margin-bottom: 0;
}
.aic-privacy-text strong {
  color: #2c2c2c;
  font-weight: 600;
}
.aic-privacy-text a {
  color: rgb(179.9103139013, 119.5874439462, 56.0896860987);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: color 280ms;
}
.aic-privacy-text a:hover {
  color: #ca9155;
}

.aic-policy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.25rem 0;
  cursor: pointer;
}
.aic-policy-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.aic-policy-checkbox__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 0.05rem;
  border: 2px solid var(--aic-border);
  border-radius: 6px;
  background: var(--aic-surface);
  transition: all 280ms;
}
.aic-policy-checkbox__box svg {
  opacity: 0;
  transform: scale(0.8);
  transition: all 280ms;
  color: #fff;
}

.aic-policy-checkbox input:checked + .aic-policy-checkbox__box {
  background: var(--aic-accent-btn);
  border-color: var(--aic-accent-btn);
  box-shadow: 0 2px 8px rgba(202, 145, 85, 0.35);
}
.aic-policy-checkbox input:checked + .aic-policy-checkbox__box svg {
  opacity: 1;
  transform: scale(1);
}

.aic-policy-checkbox__label {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #2C2C2C;
  font-weight: 400;
}
.aic-policy-checkbox__label a {
  color: #8a4f1a;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: color 280ms;
}
.aic-policy-checkbox__label a:hover {
  color: #CA9155;
}

.aic-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background: var(--aic-bg);
  transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.aic-chat.hidden {
  display: none;
}
.aic-chat:not(.hidden) {
  height: 100%;
}

.aic-mobile-pill {
  display: none;
}
@media (max-width: 768px) {
  .aic-mobile-pill {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    position: fixed;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 500;
    padding: 0.5rem 0.85rem 0.5rem 0.65rem;
    background: var(--aic-surface);
    border: 1px solid var(--aic-border);
    border-radius: 999px;
    color: var(--aic-text-dim);
    font-family: "Noto Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: color 280ms, background 280ms, box-shadow 280ms, border-color 280ms;
    -webkit-tap-highlight-color: transparent;
  }
  .aic-mobile-pill svg {
    flex-shrink: 0;
  }
  .aic-mobile-pill:hover, .aic-mobile-pill:active {
    background: var(--aic-surface-2);
    color: var(--aic-accent);
    border-color: var(--aic-accent);
  }
  .aic-mobile-pill.hidden {
    display: none;
  }
}

.aic-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  height: 100%;
  overflow: hidden;
  transition: grid-template-columns 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.aic-layout.sidebar-collapsed {
  grid-template-columns: 56px 1fr;
}
.aic-layout.sidebar-collapsed .aic-sidebar__head {
  flex-direction: column;
  padding: 0.75rem 0;
  gap: 0.5rem;
  align-items: center;
}
.aic-layout.sidebar-collapsed .aic-sidebar__new {
  width: 36px;
  height: 36px;
  padding: 0;
  justify-content: center;
  border-radius: 10px;
}
.aic-layout.sidebar-collapsed .aic-sidebar__new .aic-sidebar__new-label {
  display: none;
}
.aic-layout.sidebar-collapsed .aic-sidebar__toggle svg {
  transform: rotate(180deg);
}
.aic-layout.sidebar-collapsed .aic-sidebar__sessions, .aic-layout.sidebar-collapsed .aic-sidebar__foot {
  display: none;
}
@media (max-width: 768px) {
  .aic-layout {
    grid-template-columns: 1fr;
  }
  .aic-layout .aic-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: min(80vw, 300px);
    z-index: 400;
    transform: translateX(-105%);
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 280ms;
    box-shadow: none;
  }
  .aic-layout .aic-sidebar.mobile-visible {
    transform: translateX(0);
    box-shadow: var(--aic-shadow-sidebar);
  }
}

.aic-sidebar {
  background: var(--aic-surface);
  border-right: 1px solid var(--aic-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1), border-color 280ms;
}
.aic-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--aic-border);
  flex-shrink: 0;
  min-height: 56px;
  transition: border-color 280ms;
}
.aic-sidebar__new {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--aic-text-dim);
  background: var(--aic-accent-dim);
  border: 1px solid rgba(202, 145, 85, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: background 280ms, color 280ms, border-color 280ms;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}
.aic-dark .aic-sidebar__new {
  border-color: rgba(201, 133, 74, 0.2);
}
.aic-sidebar__new:hover {
  background: rgba(202, 145, 85, 0.24);
  color: var(--aic-text);
  border-color: var(--aic-accent);
}
.aic-sidebar__new svg {
  flex-shrink: 0;
  color: var(--aic-accent);
  transition: color 280ms;
}
.aic-sidebar__new-label {
  overflow: hidden;
  text-overflow: ellipsis;
}
.aic-sidebar__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--aic-border);
  border-radius: 8px;
  color: var(--aic-text-faint);
  cursor: pointer;
  transition: color 280ms, background 280ms, border-color 280ms;
}
.aic-sidebar__toggle:hover {
  color: var(--aic-text);
  background: var(--aic-surface-2);
  border-color: var(--aic-accent);
}
.aic-sidebar__toggle svg {
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.aic-sidebar__sessions {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0.5rem;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--aic-scrollbar) transparent;
}
.aic-sidebar__sessions::-webkit-scrollbar {
  width: 4px;
}
.aic-sidebar__sessions::-webkit-scrollbar-track {
  background: transparent;
}
.aic-sidebar__sessions::-webkit-scrollbar-thumb {
  background: var(--aic-scrollbar);
  border-radius: 2px;
}
.aic-sidebar__foot {
  padding: 0.75rem;
  border-top: 1px solid var(--aic-border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
  transition: border-color 280ms;
}
.aic-sidebar__actions {
  display: flex;
  gap: 0.5rem;
}
.aic-sidebar__action-btn {
  flex: 1;
  padding: 0.4rem 0.5rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.75rem;
  color: var(--aic-text-faint);
  background: transparent;
  border: 1px solid var(--aic-border);
  border-radius: 6px;
  cursor: pointer;
  transition: color 280ms, background 280ms, border-color 280ms;
}
.aic-sidebar__action-btn:hover {
  color: var(--aic-text-dim);
  background: var(--aic-surface-2);
  border-color: var(--aic-border);
}
.aic-sidebar__action-btn--danger:hover {
  color: var(--aic-coral);
  border-color: var(--aic-coral);
  background: rgba(214, 109, 109, 0.07);
}

.session-item {
  padding: 0.75rem 0.875rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 280ms;
  margin-bottom: 0.25rem;
  border: 1px solid transparent;
}
.session-item:hover {
  background: var(--aic-surface-2);
}
.session-item.active {
  background: var(--aic-accent-dim);
  border-color: rgba(202, 145, 85, 0.2);
  border-left: 2px solid var(--aic-accent);
  padding-left: calc(0.875rem - 2px);
}
.session-item .session-title {
  font-size: 0.88rem;
  color: var(--aic-text-dim);
  font-weight: 400;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 280ms;
}
.session-item.active .session-item .session-title {
  color: var(--aic-text);
}
.session-item .session-date {
  font-size: 0.72rem;
  color: var(--aic-text-faint);
  transition: color 280ms;
}

.aic-budget-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  background: var(--aic-accent-dim);
  border: 1px solid rgba(202, 145, 85, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  transition: background 280ms, border-color 280ms;
}
.aic-budget-chip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--aic-accent);
  cursor: pointer;
  transition: background 280ms, transform 100ms;
}
.aic-budget-chip__icon:hover {
  background: rgba(202, 145, 85, 0.2);
  transform: scale(1.1);
}
.aic-budget-chip__icon svg {
  width: 14px;
  height: 14px;
}
.aic-budget-chip__sep {
  color: var(--aic-text-faint);
}
.aic-budget-chip #budget-percent {
  color: var(--aic-accent);
  font-weight: 600;
  cursor: help;
}
.aic-budget-chip #budget-percent.low-budget {
  color: var(--aic-coral);
}
.aic-budget-chip #days-remaining-mini {
  color: var(--aic-text-faint);
  transition: color 280ms;
  cursor: help;
}

.aic-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--aic-bg);
  min-width: 0;
  transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.aic-messages {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem 1rem;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--aic-scrollbar) transparent;
}
.aic-messages::-webkit-scrollbar {
  width: 4px;
}
.aic-messages::-webkit-scrollbar-track {
  background: transparent;
}
.aic-messages::-webkit-scrollbar-thumb {
  background: var(--aic-scrollbar);
  border-radius: 2px;
}
@media (min-width: 769px) {
  .aic-messages {
    padding: 2rem 1.5rem;
  }
}

.message {
  display: flex;
  margin-bottom: 1.5rem;
  animation: msg-appear 0.25s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes msg-appear {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.message.user {
  justify-content: flex-end;
}
.message.assistant {
  justify-content: flex-start;
}

.message-bubble {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
}

.message.user .message-content {
  max-width: min(78%, 600px);
}

.message.assistant .message-content {
  max-width: min(88%, 720px);
}

.message.user .message-content {
  background: var(--aic-msg-user);
  border: 1px solid var(--aic-msg-user-border);
  border-radius: 18px 18px 4px 18px;
  color: var(--aic-text);
}

.message.assistant .message-content {
  background: var(--aic-msg-ai);
  border: 1px solid var(--aic-msg-border);
  border-radius: 4px 18px 18px 18px;
  color: var(--aic-text-dim);
  border-left: 2px solid var(--aic-msg-stripe);
}

.message-copy-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--aic-border);
  background: var(--aic-surface);
  color: var(--aic-text-faint);
  cursor: pointer;
  opacity: 1;
  transition: color 280ms, background 280ms, border-color 280ms, transform 100ms;
  -webkit-tap-highlight-color: transparent;
}
.message.user .message-copy-btn {
  order: -1;
}
.message-copy-btn:hover {
  color: var(--aic-accent);
  border-color: var(--aic-accent);
  background: var(--aic-accent-dim);
  transform: scale(1.08);
}
.message-copy-btn:active {
  transform: scale(0.96);
}
.message-copy-btn .msg-copy-icon {
  display: block;
}
.message-copy-btn .msg-check-icon {
  display: none;
  color: var(--aic-sage);
}
.message-copy-btn.copied {
  border-color: var(--aic-sage);
  background: var(--aic-sage-dim);
  color: var(--aic-sage);
}
.message-copy-btn.copied .msg-copy-icon {
  display: none;
}
.message-copy-btn.copied .msg-check-icon {
  display: block;
}

.message-content {
  padding: 0.875rem 1.125rem;
  font-size: 0.92rem;
  line-height: 1.75;
  word-break: break-word;
  overflow-wrap: break-word;
  transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1), color 280ms, border-color 280ms;
}
.message-content h1, .message-content h2, .message-content h3, .message-content h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: var(--aic-text);
  margin: 1rem 0 0.4rem;
  line-height: 1.25;
}
.message-content h1:first-child, .message-content h2:first-child, .message-content h3:first-child, .message-content h4:first-child {
  margin-top: 0;
}
.message-content h1 {
  font-size: 1.35rem;
}
.message-content h2 {
  font-size: 1.15rem;
}
.message-content h3 {
  font-size: 1rem;
}
.message-content p {
  margin: 0 0 0.65rem;
}
.message-content p:last-child {
  margin-bottom: 0;
}
.message-content ul, .message-content ol {
  margin: 0.6rem 0;
  padding-left: 1.4rem;
}
.message-content ul li, .message-content ol li {
  margin-bottom: 0.35rem;
}
.message-content strong {
  font-weight: 600;
  color: var(--aic-accent-text);
}
.message-content em {
  font-style: italic;
  color: var(--aic-text-dim);
}
.message-content code {
  background: var(--aic-surface-2);
  border: 1px solid var(--aic-border);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.85em;
  color: var(--aic-accent-text);
  transition: background 280ms, color 280ms;
}
.message-content blockquote {
  margin: 0.75rem 0;
  padding: 0.5rem 1rem;
  border-left: 2px solid var(--aic-accent);
  background: var(--aic-accent-dim);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--aic-text-dim);
  transition: background 280ms, border-color 280ms;
}
.message-content hr {
  border: none;
  border-top: 1px solid var(--aic-border);
  margin: 1.25rem 0;
}
.message-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0;
  font-size: 0.85rem;
}
.message-content table th, .message-content table td {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--aic-border);
  text-align: left;
}
.message-content table th {
  background: var(--aic-accent-dim);
  color: var(--aic-text);
  font-weight: 600;
}
.message-content table tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}

.aic-composer {
  flex-shrink: 0;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--aic-border);
  background: var(--aic-composer-bg);
  transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1), border-color 280ms;
}
@media (min-width: 769px) {
  .aic-composer {
    padding: 0.875rem 1.5rem 1.25rem;
  }
}
.aic-composer__row {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
}
.aic-composer__textarea {
  flex: 1;
  padding: 0.8rem 1.1rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.93rem;
  color: var(--aic-text);
  background: var(--aic-textarea-bg);
  border: 1px solid var(--aic-border);
  border-radius: 14px;
  resize: none;
  min-height: 48px;
  max-height: 120px;
  outline: none;
  transition: background 280ms, color 280ms, border-color 280ms, box-shadow 280ms;
  line-height: 1.6;
}
.aic-composer__textarea::placeholder {
  color: var(--aic-text-faint);
}
.aic-composer__textarea:focus {
  border-color: var(--aic-accent);
  box-shadow: 0 0 0 3px var(--aic-accent-dim);
}
.aic-composer__send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--aic-accent-btn);
  color: var(--aic-send-text);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 280ms, box-shadow 280ms, transform 100ms;
}
.aic-composer__send:hover:not(:disabled) {
  background: var(--aic-accent-btn-hover);
  box-shadow: var(--aic-shadow-btn);
  transform: translateY(-1px);
}
.aic-composer__send:active:not(:disabled) {
  transform: translateY(0);
}
.aic-composer__send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.aic-composer__hint {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  color: var(--aic-text-faint);
  transition: color 280ms;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aic-composer__hint .hint-left {
  text-align: left;
}
.aic-composer__hint .hint-right {
  text-align: right;
  font-style: italic;
  opacity: 0.85;
}

.aic-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.aic-modal.hidden {
  display: none;
}
.aic-modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--aic-modal-backdrop);
  backdrop-filter: blur(4px);
  transition: background 280ms;
}
.aic-modal__card {
  position: relative;
  z-index: 1;
  background: var(--aic-surface);
  border: 1px solid var(--aic-border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  max-height: 90dvh;
  overflow-y: auto;
  box-shadow: var(--aic-shadow-card);
  transition: background 280ms, border-color 280ms, box-shadow 280ms;
  animation: card-rise 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.aic-modal__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--aic-text);
  margin: 0 0 1rem;
  transition: color 280ms;
}
.aic-modal__body {
  font-size: 0.88rem;
  color: var(--aic-text-dim);
  line-height: 1.7;
  margin: 0 0 1.25rem;
  transition: color 280ms;
}
.aic-modal__flow {
  background: var(--aic-bg);
  border: 1px solid var(--aic-border);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  transition: background 280ms, border-color 280ms;
}
.aic-modal__flow-step {
  background: var(--aic-surface-2);
  border: 1px solid var(--aic-border);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 0.85rem;
  color: var(--aic-text-dim);
  line-height: 1.6;
  transition: background 280ms, color 280ms;
}
.aic-modal__flow-step strong {
  color: var(--aic-text);
  font-weight: 500;
  transition: color 280ms;
}
.aic-modal__flow-step--highlight {
  border-left: 2px solid var(--aic-accent);
  background: var(--aic-accent-dim);
}
.aic-modal__flow-step--highlight em {
  color: var(--aic-accent);
  font-style: normal;
  font-weight: 500;
  transition: color 280ms;
}
.aic-modal__flow-arrow {
  text-align: center;
  color: var(--aic-text-faint);
  padding: 0.35rem 0;
  font-size: 1.1rem;
  transition: color 280ms;
}
.aic-modal__tip {
  font-size: 0.85rem;
  color: var(--aic-text-dim);
  line-height: 1.6;
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  background: var(--aic-sage-dim);
  border: 1px solid rgba(168, 181, 160, 0.25);
  border-radius: 8px;
  transition: background 280ms, color 280ms;
}
.aic-modal__tip strong {
  color: var(--aic-sage);
  font-weight: 500;
}
.aic-modal__close-btn {
  width: 100%;
  padding: 0.875rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background: var(--aic-accent-btn);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 280ms, box-shadow 280ms;
}
.aic-modal__close-btn:hover {
  background: var(--aic-accent-btn-hover);
  box-shadow: var(--aic-shadow-btn);
}
.aic-modal__card--confirm {
  max-width: 420px;
  text-align: center;
}
.aic-modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.aic-modal__btn {
  padding: 0.75rem 1.5rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 280ms, box-shadow 280ms, transform 100ms;
}
.aic-modal__btn--secondary {
  background: var(--aic-surface-2);
  color: var(--aic-text);
  border: 1px solid var(--aic-border);
}
.aic-modal__btn--secondary:hover {
  background: var(--aic-bg);
  border-color: var(--aic-text-dim);
}
.aic-modal__btn--danger {
  background: var(--aic-coral);
  color: #fff;
}
.aic-modal__btn--danger:hover {
  background: #c45252;
  box-shadow: 0 4px 12px rgba(214, 109, 109, 0.35);
  transform: translateY(-1px);
}

.thinking-animation {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.2rem 0.5rem;
  color: var(--aic-accent);
  font-family: "Noto Sans", sans-serif;
  font-size: 0.9rem;
  font-style: italic;
}
.thinking-animation .brush-stroke {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  animation: brush-breathe 2.5s ease-in-out infinite;
}
.thinking-animation .brush-stroke path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: brush-draw 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.thinking-animation span {
  animation: pulse-text 2.5s ease-in-out infinite;
}

@keyframes brush-breathe {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
@keyframes brush-draw {
  0% {
    stroke-dashoffset: 120;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -120;
  }
}
@keyframes pulse-text {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.aic-card-tray {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--aic-border);
  background: var(--aic-composer-bg);
  animation: tray-slide-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes tray-slide-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.aic-card-tray.hidden {
  display: none;
}
.aic-card-tray.collapsed .aic-card-tray__items {
  display: none;
}
.aic-card-tray.collapsed .aic-card-tray__toggle svg {
  transform: rotate(-90deg);
}
.aic-card-tray__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aic-card-tray__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aic-text-faint);
}
.aic-card-tray__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: var(--aic-text-faint);
  cursor: pointer;
  border-radius: 4px;
  transition: color 280ms, background 280ms;
}
.aic-card-tray__toggle:hover {
  color: var(--aic-text-dim);
  background: var(--aic-surface-2);
}
.aic-card-tray__toggle svg {
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.aic-card-tray__items {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--aic-scrollbar) transparent;
  -webkit-overflow-scrolling: touch;
}
.aic-card-tray__items::-webkit-scrollbar {
  height: 4px;
}
.aic-card-tray__items::-webkit-scrollbar-track {
  background: transparent;
}
.aic-card-tray__items::-webkit-scrollbar-thumb {
  background: var(--aic-scrollbar);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .aic-card-tray__items {
    scrollbar-width: none;
  }
  .aic-card-tray__items::-webkit-scrollbar {
    display: none;
  }
}

.aic-card-tray__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0.4rem;
  border-radius: 8px;
  transition: background 280ms, transform 120ms;
}
.aic-card-tray__item:hover {
  background: var(--aic-accent-dim);
  transform: translateY(-2px);
}
.aic-card-tray__item:active {
  transform: translateY(0);
}
.aic-card-tray__item img {
  width: 52px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background: var(--aic-surface-2);
  transition: box-shadow 280ms;
}
.aic-card-tray__item img[src*=placeholder] {
  opacity: 0.5;
}
.aic-card-tray__item:hover img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.aic-card-tray__item span {
  font-size: 0.68rem;
  font-weight: 500;
  text-align: center;
  color: var(--aic-text-dim);
  max-width: 60px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 280ms;
}
.aic-card-tray__item:hover span {
  color: var(--aic-text);
}

.aic-card-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 44, 44, 0.35);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.aic-card-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.aic-root.aic-dark > .aic-card-modal-overlay, .aic-root.aic-dark *:not(.aic-card-modal) > .aic-card-modal-overlay, :has(> .aic-card-modal-overlay) .aic-root.aic-dark .aic-card-modal-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.aic-root.aic-dark .aic-card-modal-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.aic-card-modal {
  background-color: var(--aic-surface);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px var(--aic-border);
  border: 1px solid var(--aic-border);
  position: relative;
  display: flex;
  overflow: hidden;
  animation: modal-appear 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes modal-appear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .aic-card-modal {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }
}
.aic-card-modal .aic-card-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  background: var(--aic-surface-2);
  border: 1px solid var(--aic-border);
  border-radius: 8px;
  cursor: pointer;
  color: var(--aic-text);
  z-index: 10;
  transition: color 280ms, background 280ms, border-color 280ms, transform 100ms;
}
.aic-card-modal .aic-card-modal__close:hover {
  color: var(--aic-accent);
  background: var(--aic-accent-dim);
  border-color: var(--aic-accent);
}
.aic-card-modal .aic-card-modal__close:active {
  transform: scale(0.95);
}
.aic-card-modal__content {
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .aic-card-modal__content {
    flex-direction: column;
  }
}
.aic-card-modal__image-container {
  flex: 0 0 45%;
  background: var(--aic-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
@media (max-width: 768px) {
  .aic-card-modal__image-container {
    flex: none;
    padding: 1.5rem;
  }
}
.aic-card-modal__image-container img {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .aic-card-modal__image-container img {
    max-height: 40vh;
  }
}
.aic-card-modal__details {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .aic-card-modal__details {
    padding: 1.5rem;
  }
}
.aic-card-modal__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--aic-text);
  margin: 0;
  line-height: 1.2;
}
.aic-card-modal__section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.aic-card-modal__label {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aic-text-dim);
}
.aic-card-modal__back-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--aic-text);
  margin: 0;
  padding: 1rem;
  background: var(--aic-surface-2);
  border-radius: 8px;
  border-left: 3px solid var(--aic-accent);
}
.aic-card-modal__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.aic-card-modal__keywords .keyword-tag {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: var(--aic-sage-dim);
  color: var(--aic-text);
  border-radius: 50px;
  text-transform: capitalize;
  border: 1px solid var(--aic-border);
}

/*# sourceMappingURL=main.css.map */