:root {
  color-scheme: dark only;
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --fg: #ffffff;
  --muted: #999999;
  --ink: #111111;
  --paper: #ffffff;
  --line: #1a1a1a;
  --max: 1400px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 64px;
  --spacing-xl: 120px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 var(--spacing-sm) 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 200;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

p {
  margin: 0 0 var(--spacing-sm) 0;
}

a {
  color: var(--fg);
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition);
}

.brand:hover {
  transform: scale(1.02);
}

.brand__logo {
  height: 56px;
  width: auto;
  transition: opacity var(--transition);
}

.brand__logo--dark {
  display: none;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: var(--spacing-xs) 0;
  transition: opacity var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--fg);
  transition: width var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  color: var(--fg);
  background: transparent;
  border: 0;
  font-size: 24px;
  cursor: pointer;
  padding: var(--spacing-xs);
  margin-left: auto;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md) 0 var(--spacing-md);
  background: #000000;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-lg) 0;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: var(--spacing-xs);
}

.footer__logo {
  height: 48px;
  width: auto;
  transition: opacity var(--transition);
}

.footer__logo--dark {
  display: none;
}

.footer__tagline {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

.footer__assurance {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.footer__assurance strong {
  color: var(--fg);
  font-weight: 500;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  font-size: 14px;
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer__nav-title {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: var(--spacing-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer__nav a {
  color: var(--muted);
  transition: color var(--transition);
  font-weight: 300;
}

.footer__nav a:hover {
  color: var(--fg);
}

.footer__meta {
  padding: var(--spacing-md) 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 968px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer__nav {
    grid-template-columns: 1fr;
  }
  
  .footer__logo {
    height: 40px;
  }
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  background-image: url('../office/office_nbg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--spacing-lg) 0;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.hero--use-cases {
  min-height: 60vh;
  background-position: center 30%;
  background-image: url('../office/coworking.png');
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  pointer-events: none;
  z-index: 1;
}


.hero__content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  padding: var(--spacing-lg) var(--spacing-md);
  color: #ffffff !important;
}

/* Hero text - ensure white on all hero sections with backgrounds */
.hero:not(.hero--artist) h1,
.hero h1 {
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 200;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease-out;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero:not(.hero--artist) p,
.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff !important;
  margin: 0 0 var(--spacing-lg) 0;
  font-weight: 500;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero__actions {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 1px solid var(--fg);
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--fg);
  transition: left var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn--primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.btn--primary::before {
  background: var(--bg);
}

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

.btn--small {
  padding: 10px 24px;
  font-size: 12px;
}

/* Sections */
.section {
  padding: var(--spacing-lg) 0;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--spacing-lg);
  gap: var(--spacing-md);
}

.section__head h2 {
  margin: 0;
}

.link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.link::after {
  content: '→';
  margin-left: 8px;
  transition: transform var(--transition);
  display: inline-block;
}

.link:hover::after {
  transform: translateX(4px);
}

.link:hover {
  color: var(--fg);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Cards */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--fg);
  transition: all var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--bg-elevated);
  transition: transform var(--transition);
}

.card:hover .card__image {
  transform: scale(1.05);
}

/* Leased Ribbon */
.card__ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  padding: 8px 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card__ribbon--leased {
  background: rgba(255, 255, 255, 0.95);
}

.card__ribbon--unavailable {
  background: rgba(180, 180, 180, 0.95);
}

.card__image--placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card__image--placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.02) 10px,
    rgba(255, 255, 255, 0.02) 20px
  );
}

.card__body {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__title {
  margin: 0 0 var(--spacing-xs) 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}

.card__meta {
  margin: auto 0 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Tiles */
.tile {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: var(--spacing-lg);
  transition: all var(--transition);
}

.tile:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.tile h3 {
  margin: 0 0 var(--spacing-sm) 0;
  font-size: 20px;
  font-weight: 300;
}

.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Tiles with background images */
.tile--bg-image {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tile--bg-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tile--bg-image:hover .tile__overlay {
  opacity: 0.85;
}

.tile--bg-image .tile__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.4) 100%);
  transition: opacity var(--transition);
  z-index: 1;
}

.tile--bg-image .tile__content {
  position: relative;
  padding: var(--spacing-lg);
  z-index: 2;
}

.tile--bg-image .tile__content h2,
.tile--bg-image .tile__content h3 {
  margin: 0 0 var(--spacing-sm) 0;
  color: #ffffff !important;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.tile--bg-image .tile__content p {
  margin: 0;
  color: #ffffff !important;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .tile--bg-image {
    min-height: 280px;
  }
  
  .tile--bg-image .tile__content {
    padding: var(--spacing-md);
  }
}

/* Tiles with images */
.tile--with-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tile--with-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tile__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--bg-elevated);
}

.tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.tile--with-image:hover .tile__image img {
  transform: scale(1.05);
}

.tile__image--overlay {
  position: relative;
}

.tile__image-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.tile__image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--fg);
  opacity: 0.3;
  transition: opacity var(--transition);
  z-index: 2;
}

.tile__image-overlay svg {
  width: 60px;
  height: 60px;
}

.tile--with-image:hover .tile__image-overlay {
  opacity: 0.5;
}

.tile__body {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* CTA */
.cta {
  padding: var(--spacing-lg) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

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

.cta h2 {
  margin: 0 0 var(--spacing-sm) 0;
}

.cta p {
  color: var(--muted);
  margin: 0 0 var(--spacing-lg) 0;
  font-size: 18px;
}

/* Page */
.page {
  padding: var(--spacing-lg) 0;
}

.page h1 {
  margin-top: 0;
  margin-bottom: var(--spacing-lg);
}

.page-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.page-intro {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  margin-top: var(--spacing-sm);
  line-height: 1.7;
  font-weight: 300;
}

/* About page */
.hero--about {
  min-height: 70vh;
  background-image: url('../office/exhibition.png');
  background-position: center;
  margin-bottom: 0;
}

.hero--how-it-works {
  min-height: 60vh;
  background-image: url('../office/hotels.png');
  background-position: center;
}

.hero--artists {
  min-height: 60vh;
  background-image: url('../office/hotels.png');
  background-position: center;
}

.hero--artist {
  min-height: auto;
  padding: var(--spacing-md) 0;
  background: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.hero--artist::before {
  display: none;
}

.hero--inventory {
  min-height: 60vh;
  background-image: url('../office/real-estate.png');
  background-position: center;
}

.hero--contact {
  min-height: 60vh;
  background-image: url('../office/private_residence.png');
  background-position: center;
}

.hero--work {
  min-height: 60vh;
  background-image: url('../office/real-estate.png');
  background-position: center;
}

.hero--faq {
  min-height: 60vh;
  background-image: url('../office/coworking.png');
  background-position: center;
}

.hero--legal {
  min-height: 60vh;
  background-image: url('../office/private_residence.png');
  background-position: center;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro__text {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
  text-align: center;
  margin: 0;
}

.about-services {
  max-width: 1200px;
  margin: 0 auto;
  gap: var(--spacing-md);
}

.about-services .tile {
  padding: var(--spacing-lg) var(--spacing-md);
  min-height: 100%;
}

.about-services .tile h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: var(--spacing-sm);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.about-services .tile p {
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  line-height: 1.75;
  margin: 0;
  color: var(--muted);
}

.tile--span-2 {
  grid-column: span 2;
  padding: var(--spacing-xl) var(--spacing-lg);
}

.tile--span-2 h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  margin-bottom: var(--spacing-md);
}

.tile--span-2 p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.8;
  max-width: 850px;
}

.about-artists {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-artists p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 var(--spacing-lg) 0;
  font-weight: 300;
}

.about-artists .btn {
  margin-top: var(--spacing-sm);
}

/* Improved section spacing for about page */
.section--about-intro {
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

.section--about-services {
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

.section--about-services .section__head {
  margin-bottom: var(--spacing-lg);
}

.section--about-services .section__head h2 {
  margin-bottom: 0;
}

.section--about-artists {
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

.section--about-artists .section__head {
  margin-bottom: var(--spacing-lg);
}

.section--about-artists .section__head h2 {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero--about {
    min-height: 50vh;
  }
  
  .about-intro__text {
    text-align: left;
    line-height: 1.8;
  }
  
  .about-services {
    gap: var(--spacing-md);
  }
  
  .about-services .tile {
    padding: var(--spacing-md);
  }
  
  .section--about-services .section__head {
    margin-bottom: var(--spacing-lg);
  }
  
  .tile--span-2 {
    grid-column: span 1;
    padding: var(--spacing-md);
  }
  
  .tile--span-2 h3 {
    margin-bottom: var(--spacing-sm);
  }
  
  .about-artists {
    text-align: left;
  }
  
  .about-artists p {
    margin-bottom: var(--spacing-md);
  }
  
  .about-artists .btn {
    width: 100%;
    margin-top: var(--spacing-sm);
  }
  
  .section--about-artists .section__head {
    margin-bottom: var(--spacing-lg);
  }
  
  .section--about-intro,
  .section--about-services,
  .section--about-artists {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
  }
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto var(--spacing-xl);
  padding: var(--spacing-lg) 0;
}

.timeline__line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--line) 10%,
    var(--line) 90%,
    transparent 100%
  );
  opacity: 0.3;
  transition: opacity var(--transition);
}

.timeline:hover .timeline__line {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .timeline__line {
    left: 20px;
  }
}

.timeline__step {
  position: relative;
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline__step--visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline__marker {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

@media (max-width: 768px) {
  .timeline__marker {
    width: 40px;
  }
}

.timeline__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  color: var(--fg);
  transition: all var(--transition);
  position: relative;
  z-index: 3;
}

.timeline__step:hover .timeline__number {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .timeline__number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.timeline__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fg);
  z-index: 4;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition);
}

.timeline__step:hover .timeline__dot {
  opacity: 1;
  transform: scale(1);
}

.timeline__content {
  flex: 1;
  padding-top: 8px;
}

.timeline__card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: var(--spacing-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.timeline__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--fg);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.timeline__step:hover .timeline__card {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.timeline__step:hover .timeline__card::before {
  transform: scaleY(1);
}

.timeline__title {
  margin: 0 0 var(--spacing-sm) 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.timeline__description {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
}

.timeline-footer {
  max-width: 800px;
  margin: var(--spacing-xl) auto 0;
  text-align: center;
}

.notice--enhanced {
  border-style: solid;
  border-color: var(--line);
  background: var(--bg-elevated);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition);
}

.notice--enhanced:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.notice--enhanced strong {
  color: var(--fg);
  font-weight: 400;
  display: block;
  margin-bottom: var(--spacing-xs);
  font-size: 16px;
}

.timeline-footer__text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.timeline-footer__text a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
  transition: all var(--transition);
}

.timeline-footer__text a:hover {
  text-decoration-color: var(--fg);
  opacity: 1;
}

/* Pricing Section */
.pricing-section {
  max-width: 900px;
  margin: var(--spacing-xl) auto 0;
  padding: var(--spacing-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: all var(--transition);
}

.pricing-section:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-section__title {
  margin: 0 0 var(--spacing-sm) 0;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 300;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.pricing-section__description {
  margin: 0 0 var(--spacing-md) 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
}

.pricing-table-container {
  margin-top: var(--spacing-md);
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table__row {
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}

.pricing-table__row:last-child {
  border-bottom: none;
}

.pricing-table__row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.pricing-table__cell {
  padding: var(--spacing-md) var(--spacing-md);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.6;
}

.pricing-table__cell--label {
  color: var(--fg);
}

.pricing-table__cell--value {
  color: var(--fg);
  text-align: right;
  font-weight: 400;
}

@media (max-width: 768px) {
  .pricing-section {
    padding: var(--spacing-md);
    margin-top: var(--spacing-lg);
  }
  
  .pricing-table__cell {
    padding: var(--spacing-sm) var(--spacing-sm);
    font-size: 0.9rem;
  }
  
  .pricing-table__cell--value {
    text-align: left;
    padding-top: var(--spacing-xs);
  }
  
  .pricing-table__row {
    display: block;
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--line);
  }
  
  .pricing-table__row:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .timeline__step {
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
  }

  .timeline__marker {
    width: 100%;
    justify-content: flex-start;
    padding-left: 0;
  }

  .timeline__content {
    padding-top: 0;
    padding-left: var(--spacing-sm);
  }

  .timeline__card {
    padding: var(--spacing-md);
  }

  .timeline__step:hover .timeline__card {
    transform: translateX(0) translateY(-2px);
  }

  .timeline__line {
    display: none;
  }
}

/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: var(--spacing-sm) var(--spacing-xs);
  text-align: left;
}

.table th {
  color: var(--muted);
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: var(--spacing-xs);
}

.table td {
  font-weight: 300;
}

/* Search */
.searchbar {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr) auto auto;
  gap: var(--spacing-sm);
  margin: var(--spacing-lg) 0;
  align-items: center;
}

.searchbar input {
  padding: 14px 18px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--fg);
  font-size: 14px;
  font-weight: 300;
  font-family: inherit;
  transition: border-color var(--transition);
}

.searchbar input:focus {
  outline: none;
  border-color: var(--fg);
}

.searchbar select {
  padding: 14px 18px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--fg);
  font-size: 14px;
  font-weight: 300;
  font-family: inherit;
  cursor: pointer;
  transition: border-color var(--transition);
  min-width: 0;
}

.searchbar select:focus {
  outline: none;
  border-color: var(--fg);
}

@media (max-width: 1200px) {
  .searchbar {
    grid-template-columns: 2fr 1fr 1fr auto;
  }
  
  .searchbar select:nth-child(4),
  .searchbar select:nth-child(5),
  .searchbar select:nth-child(6) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .searchbar {
    grid-template-columns: 1fr;
  }
  
  .searchbar select:nth-child(4),
  .searchbar select:nth-child(5),
  .searchbar select:nth-child(6) {
    grid-column: 1;
  }
}

.filters {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.chip {
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}

.chip:hover,
.chip--active {
  border-color: var(--fg);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
}

/* Notice */
.notice {
  padding: var(--spacing-md);
  border: 1px dashed var(--line);
  color: var(--muted);
  margin: var(--spacing-md) 0;
  font-size: 14px;
  line-height: 1.6;
}

.notice--authenticity {
  border-style: solid;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
}

.notice--authenticity strong {
  color: var(--fg);
}

.notice--leased {
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg);
  font-size: 14px;
  line-height: 1.7;
}

.notice--leased strong {
  color: var(--fg);
  font-weight: 500;
}

/* Status Badge */
.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}

.status-badge--available {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.3);
}

.status-badge--leased {
  background: rgba(255, 255, 255, 0.1);
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Form */
.form {
  max-width: 800px;
}

.form label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--fg);
  font-size: 14px;
  font-family: inherit;
  font-weight: 300;
  transition: border-color var(--transition);
  margin-bottom: var(--spacing-sm);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--fg);
}

.form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Responsive */
@media (max-width: 1200px) {
  .grid--4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
  
  .hero--use-cases {
    min-height: 50vh;
  }
  
  .nav {
    display: none;
    position: absolute;
    right: var(--spacing-sm);
    top: 100%;
    background: var(--bg);
    border: 1px solid var(--line);
    padding: var(--spacing-md);
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .hero__content {
    color: #ffffff !important;
  }
  
  .hero h1,
  .hero__content h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  }
  
  .hero p,
  .hero__content p {
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .section__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Desktop-specific hero text fixes */
@media (min-width: 641px) {
  .hero__content,
  .hero__content h1,
  .hero__content h2,
  .hero__content h3,
  .hero__content p {
    color: #ffffff !important;
  }
  
  .hero h1,
  .hero__content h1 {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  }
  
  .hero p,
  .hero__content p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  }
}

/* Light mode removed - site always uses dark theme */
/* The site maintains a consistent black background and white text aesthetic
   regardless of user system preferences */

/* Intro Statement */
.intro-statement {
  padding: var(--spacing-lg) 0;
  margin: var(--spacing-lg) 0;
}

.intro-statement__content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
}

.intro-statement__text {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  line-height: 1.8;
  color: var(--fg);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0;
  padding: var(--spacing-lg) var(--spacing-md);
  border-left: 2px solid var(--line);
  border-right: 2px solid var(--line);
  background: var(--bg-elevated);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .intro-statement {
    padding: var(--spacing-md) 0;
    margin: var(--spacing-md) 0;
  }
  
  .intro-statement__content {
    padding: var(--spacing-sm);
  }
  
  .intro-statement__text {
    padding: var(--spacing-md) var(--spacing-sm);
    font-size: 1.1rem;
    border-left: none;
    border-right: none;
    border-top: 2px solid var(--line);
    border-bottom: 2px solid var(--line);
    border-radius: 0;
  }
}

