/* Portfolio presentation layer for LiteObject */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
   --surface-darker: #0b1120;
   --surface-dark: #101935;
   --surface-mid: #152041;
   --surface-light: #f7f9ff;
   --surface-white: #ffffff;
   --surface-band: #e9f5f9;
   --accent-primary: #53d7ff;
   --accent-secondary: #8b5cf6;
   --accent-tertiary: #38bdf8;
   --text-primary: #0f172a;
   --text-secondary: #334155;
   --text-muted: #64748b;
   --text-light: #e2e8f0;
   --border-soft: rgba(148, 163, 184, 0.25);
   --border-strong: rgba(226, 232, 240, 0.4);
   --shadow-soft: 0 18px 36px rgba(15, 23, 42, 0.12);
   --shadow-card: 0 24px 60px rgba(15, 23, 42, 0.18);
   --shadow-glass: 0 18px 48px rgba(8, 12, 24, 0.35);
}

body {
   font-family: 'Space Grotesk', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
   color: var(--text-primary);
   background: var(--surface-light);
   letter-spacing: -0.005em;
}

main {
   background: transparent;
}

#wrapper {
   padding-top: 0px;
}

.layout {
   max-width: 1160px;
   margin: 0 auto;
   padding: 0 2rem;
}

.section {
   position: relative;
   padding: 5rem 0;
}

.section--tight {
   padding: 4rem 0;
}

.section--band {
    /* background:
        radial-gradient(at 20% 80%, var(--surface-band) 0%, transparent 50%),
        radial-gradient(at 80% 80%, var(--accent-primary) 0%, transparent 40%),
        var(--surface-band); */
        background: radial-gradient(circle at 80% 80%, var(--surface-band), transparent 55%);
}

.section--gradient {
   background: linear-gradient(120deg, rgba(83, 215, 255, 0.08), rgba(139, 92, 246, 0.08));
}

.section--dark {
   background: radial-gradient(circle at top right, rgba(83, 215, 255, 0.15), transparent 45%), rgb(9, 14, 32);
   color: var(--text-light);
}

.section--dark .section__header {
   color: var(--text-light);
}

.section--dark .section__header p {
   color: rgba(226, 232, 240, 0.72);
}

.section--dark .section__header h2 {
   color: #f9fbff;
}

.section--dark a {
   color: var(--text-light);
}

.section__header {
   max-width: 620px;
   margin-bottom: 2.5rem;
}

.section__header--center {
   text-align: center;
   margin-left: auto;
   margin-right: auto;
}

.section__header span.eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
}

.eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.18em;
   font-size: 0.75rem;
   font-weight: 600;
   color: var(--accent-tertiary);
}

.section--dark .eyebrow {
   color: rgba(83, 215, 255, 0.65);
}

.hero {
   position: relative;
   overflow: hidden;
   padding: 7rem 0 6rem;
}

/* Update the existing .hero--dark class */
.hero--dark {
   background:
      repeating-linear-gradient(
         -45deg,
         transparent,
         transparent 35px,
         rgba(255, 255, 255, 0.25) 35px,
         rgba(255, 255, 255, 0.25) 70px
      ),
      linear-gradient(135deg, #d6f5ff 0%, #ffffff 100%);
   color: var(--text-light);
   position: relative;
   overflow: hidden;
}

.hero::after {
   content: '';
   position: absolute;
   inset: 0;
   background: radial-gradient(circle at 30% 120%, rgba(83, 215, 255, 0.18), transparent 55%);
   pointer-events: none;
}

.hero__inner {
   position: relative;
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
   gap: 3.5rem;
   z-index: 1;
   align-items: end;
}

.hero__content {
   max-width: 580px;
}

.hero__eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   font-size: 0.75rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.18em;
   color: var(--text-muted);
   margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
   content: '';
   width: 38px;
   height: 1px;
   /* background: rgba(226, 232, 240, 0.45); */
}

.hero__content h1 {
   font-size: clamp(2.75rem, 4vw, 3.5rem);
   line-height: 1.05;
   margin-bottom: 1.25rem;
   /* text-shadow: 0px 0px 1px rgba(var(--accent-primary), .4); */
}

.hero__content p {
   font-size: 1.1rem;
   line-height: 1.6;
   color: var(--text-muted);
   /* text-shadow: 0 3px 14px rgba(8, 12, 24, 0.45); */
   margin-bottom: 2rem;
}

.hero__actions {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   margin-bottom: 2rem;
}

.cta-section {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   align-items: stretch;
   margin-top: 2rem;
}

.cta-section .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 48px;
   padding: 0.75rem 1.5rem;
   box-sizing: border-box;
   /* border: 2px solid transparent; */
   transition: color 0.45s ease;
}

.hero__chips {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
}

.hero__stats {
   list-style: none;
   margin: 0;
   padding: 1.75rem;
   border-radius: 18px;
   background: #121c35;
   border: 1px solid rgba(148, 163, 184, 0.22);
   display: flex;
   flex-direction: column;
   gap: 1.75rem;
   position: relative;
}

.hero__stats li {
   display: flex;
   flex-direction: column;
   gap: 0.35rem;
}

.hero__stats strong {
   font-size: 1.9rem;
   color: var(--text-light);
   letter-spacing: -0.02em;
}

.hero__stats span {
   font-size: 0.9rem;
   color: rgba(226, 232, 240, 0.7);
   line-height: 1.5;
}

.chip {
   display: inline-flex;
   align-items: center;
   gap: 0.35rem;
   padding: 0.35rem 0.85rem;
   border-radius: 999px;
   font-size: 0.85rem;
   font-weight: 500;
   border: 1px solid rgba(148, 163, 184, 0.35);
   color: var(--text-secondary);
   background: rgba(148, 163, 184, 0.08);
}

.chip::before {
   content: '';
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--accent-primary);
}

.chip--soft {
   color: rgba(226, 232, 240, 0.92);
   border-color: rgba(226, 232, 240, 0.22);
   background: rgba(14, 22, 45, 0.4);
}

.chip--outline {
   background: transparent;
   color: var(--text-light);
   border-color: rgba(226, 232, 240, 0.28);
}

.chip--ghost {
   background: rgba(255, 255, 255, 0.12);
   border-color: transparent;
   color: var(--text-light);
}

.chip-stack {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
}

.card-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 1.75rem;
}

.card {
   position: relative;
   border-radius: 20px;
   padding: 2.25rem;
   background: var(--surface-white);
   border: 1px solid var(--border-soft);
   display: flex;
   flex-direction: column;
   gap: 1.25rem;
   transition: border-color 0.25s ease, background 0.25s ease;
}

.card:hover {
   border-color: rgba(83, 215, 255, 0.35);
   background: #f2f6ff;
}

.card--focus {
   background: #f5f8ff;
   border-color: rgba(148, 163, 184, 0.25);
}

.card--glass {
   background: #101a33;
   border: 1px solid rgba(148, 163, 184, 0.22);
   color: var(--text-light);
}

.card--glass p {
   color: rgba(226, 232, 240, 0.78);
}

.card--glass:hover {
   background: #101a33;
   border-color: rgba(148, 163, 184, 0.22);
}

.card__tag {
   font-size: 0.75rem;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: rgba(15, 23, 42, 0.68);
}

.card--glass .card__tag {
   color: rgba(226, 232, 240, 0.6);
}

.card__header {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
}

.card__header h3 {
   font-size: 1.45rem;
   letter-spacing: -0.01em;
   color: var(--text-muted);
   word-wrap: break-word;
   white-space: normal;
}

.card__list {
   list-style: none;
   margin: 0;
   padding: 0;
   display: grid;
   gap: 0.6rem;
}

.card__list li {
   position: relative;
   padding-left: 1.25rem;
   color: var(--text-secondary);
   line-height: 1.5;
}

.card__list li::before {
   content: '';
   position: absolute;
   left: 0;
   top: 0.6rem;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: rgba(83, 215, 255, 0.9);
   box-shadow: 0 0 0 4px rgba(83, 215, 255, 0.15);
}

.card--glass .card__list li {
   color: rgba(226, 232, 240, 0.74);
}

.card--glass .card__list li::before {
   background: rgba(83, 215, 255, 0.85);
   box-shadow: 0 0 0 4px rgba(83, 215, 255, 0.15);
}

.card__cta {
   margin-top: auto;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   font-weight: 600;
   color: var(--accent-secondary);
   text-decoration: none;
}

.card--glass .card__cta {
   color: rgba(83, 215, 255, 0.9);
}

.card__cta::after {
   content: '→';
   font-size: 1rem;
   transition: transform 0.2s ease;
}

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

.bullet-list {
   margin: 0;
   padding: 0;
   list-style: none;
   display: grid;
   gap: 0.65rem;
}

.bullet-list li {
   position: relative;
   padding-left: 1.3rem;
   color: var(--text-secondary);
}

.bullet-list li::before {
   content: '';
   position: absolute;
   left: 0;
   top: 0.6rem;
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: rgba(83, 215, 255, 0.85);
}

.section--dark .bullet-list li {
   color: rgba(226, 232, 240, 0.76);
}

.section--dark .bullet-list li::before {
   background: rgba(83, 215, 255, 0.9);
}

.feature-list {
   list-style: none;
   margin: 2rem 0;
   padding: 0;
   display: grid;
   gap: 0.85rem;
}

.feature-list li {
   padding: 1.1rem 1.5rem;
   /* border-left: 4px solid var(--accent-primary); */
   background: rgba(83, 215, 255, 0.08);
   border-radius: 8px;
   color: var(--text-secondary);
   line-height: 1.55;
}

.feature-list strong {
   display: block;
   margin-bottom: 0.3rem;
   color: var(--text-primary);
}

.tile-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 1.5rem;
}

.tile {
   background: var(--surface-white);
   border-radius: 18px;
   padding: 2rem;
   border: 1px solid rgba(148, 163, 184, 0.2);
   display: flex;
   flex-direction: column;
   gap: 1rem;
   transition: transform 0.2s ease, border-color 0.2s ease;
}

.tile:hover {
   border-color: rgba(83, 215, 255, 0.45);
}

.tile__cta {
   margin-top: auto;
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   font-weight: 600;
   color: var(--accent-secondary);
   text-decoration: none;
}

.tile__cta::after {
   content: '→';
   transition: transform 0.2s ease;
}

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

.button--primary {
   background: linear-gradient(135deg, #53d7ff, #38bdf8);
   color: #082032;
   border: none;
}

.button--primary:hover {
   background: linear-gradient(135deg, #4ac9ef, #28a7e4);
   color: #ffffff;
}

.button--outline {
   background: transparent;
   color: var(--text-primary);
   border: 2px solid currentColor;
}

/* .button--outline:hover {
   color: var(--accent-primary);
} */

.button--ghost {
   background: var(--surface-mid);
   color: #f9fbff;
   /* border: 1px solid rgba(248, 250, 252, 0.55); */
}

.button--ghost:hover {
   background: var(--surface-darker);
   color: var(--accent-primary);
}

.button--light {
   background: transparent;
   color: var(--text-primary);
   border: 1px solid rgba(51, 65, 85, 0.3);
}

.button--light:hover {
   border-color: rgba(51, 65, 85, 0.6);
   background: rgba(15, 23, 42, 0.04);
}

.hero__footer {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   align-items: center;
   margin-top: 2rem;
}

.metric-band {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
   gap: 1rem;
}

.metric {
   padding: 1.25rem 1.5rem;
   border-radius: 16px;
   background: #eef3ff;
   border: 1px solid rgba(148, 163, 184, 0.24);
   text-align: left;
}

.metric strong {
   display: block;
   font-size: 1.5rem;
   letter-spacing: -0.01em;
   margin-bottom: 0.2rem;
}

.metric span {
   font-size: 0.85rem;
   color: var(--text-muted);
}

.section--dark .metric {
   background: #15244a;
   border-color: rgba(148, 163, 184, 0.25);
   color: var(--text-light);
}

.section--dark .metric span {
   color: rgba(226, 232, 240, 0.75);
}

.chip-rows {
   display: grid;
   gap: 1.5rem;
}

.chip-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.7rem;
}

.cta-band {
   display: grid;
   grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
   gap: 2.5rem;
   align-items: center;
}

.cta-band__card {
   background: linear-gradient(120deg, rgba(83, 215, 255, 0.12), rgba(56, 189, 248, 0.16));
   border-radius: 22px;
   padding: 2.75rem;
   border: 1px solid rgba(56, 189, 248, 0.3);
}

.cta-band__card h2 {
   font-size: 2rem;
   line-height: 1.2;
}

.cta-band__card p {
   font-size: 1.05rem;
   color: rgba(15, 23, 42, 0.7);
   margin-bottom: 2rem;
}

.cta-band__meta {
   display: flex;
   flex-direction: column;
   gap: 1.75rem;
}

.media-links {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 1.25rem;
}

.media-links li {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
}

.media-links span {
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.12em;
   color: var(--text-muted);
   min-width: 120px;
}

.media-links a {
   color: var(--text-primary);
   font-weight: 600;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
}

.media-links a::after {
   content: '↗';
   font-size: 0.9rem;
}

.section--dark .media-links span {
   color: rgba(226, 232, 240, 0.6);
}

.section--dark .media-links a {
   color: var(--text-light);
}

.section--dark .media-links a::after {
   color: rgba(226, 232, 240, 0.75);
}

.link-inline {
   display: inline-flex;
   align-items: center;
   gap: 0.3rem;
   color: var(--accent-secondary);
   text-decoration: none;
   font-weight: 600;
}

.link-inline::after {
   content: '→';
   transition: transform 0.2s ease;
}

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

.testimonial {
   padding: 2rem;
   border-radius: 18px;
   background: rgba(255, 255, 255, 0.85);
   border: 1px solid rgba(148, 163, 184, 0.25);
}

.testimonial p {
   font-style: italic;
   color: rgba(15, 23, 42, 0.85);
}

.section--dark .testimonial {
   background: rgba(15, 23, 42, 0.6);
   border-color: rgba(148, 163, 184, 0.25);
}

.section--dark .testimonial p {
   color: rgba(226, 232, 240, 0.82);
}

.hero__tokens {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
   margin-top: 2rem;
}

.hero__tokens .chip {
   border-color: rgba(226, 232, 240, 0.25);
}


@media (max-width: 1024px) {
   #wrapper {
      padding-top: 0px;
   }

   .layout {
      padding: 0 1.5rem;
   }

   .hero {
      padding: 6rem 0 5rem;
   }

   .hero__inner {
      grid-template-columns: 1fr;
   }

   .hero__stats {
      flex-direction: row;
      justify-content: space-between;
      gap: 1.5rem;
      background: #121c35;
   }

   .hero__stats li {
      flex: 1;
   }

   .cta-band {
      grid-template-columns: 1fr;
   }

   .cta-band__card {
      padding: 2.25rem;
   }
}

@media (max-width: 768px) {
   .layout {
      padding: 0 1.25rem;
   }

   .section {
      padding: 4rem 0;
   }

   .hero__content h1 {
      font-size: clamp(2.4rem, 6vw, 3rem);
   }

   .hero__content p {
      font-size: 1rem;
   }

   .hero__stats {
      flex-direction: column;
      padding: 1.5rem;
   }

   .chip-row {
      gap: 0.5rem;
   }

   .card {
      padding: 2rem;
      border-radius: 18px;
   }

   .card-grid {
      gap: 1.25rem;
   }

   .tile {
      padding: 1.75rem;
   }
}

@media (max-width: 540px) {
   .layout {
      padding: 0 1rem;
   }

   .hero {
      padding: 5.5rem 0 4.5rem;
   }

   .hero__actions {
      flex-direction: column;
      align-items: stretch;
   }

   .hero__stats {
      gap: 1.25rem;
   }

   .hero__stats strong {
      font-size: 1.6rem;
   }

   .chip {
      font-size: 0.8rem;
      padding: 0.3rem 0.75rem;
   }

   .cta-band__card {
      padding: 2rem;
   }

   .media-links span {
      min-width: 96px;
   }
}
