/*
Theme Name: Exposmall
Theme URI: https://exposmall.com/
Author: Exposmall
Author URI: https://exposmall.com/
Description: An editorial WordPress theme for artificial intelligence, innovation, and the latest technology.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: exposmall
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #27275f;
  --ink-soft: #3e406d;
  --muted: #66708a;
  --line: #e2e3f0;
  --surface: #f8f8fc;
  --white: #ffffff;
  --lavender: #eeeeff;
  --lavender-strong: #dfe0fb;
  --aqua: #65dfe0;
  --blue: #5362b5;
  --shadow: 0 20px 60px rgba(35, 32, 92, 0.08);
  --radius: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--surface);
}

.container-wide {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.font-display {
  font-family: 'Space Grotesk', Arial, sans-serif;
}

.font-mono-ui {
  font-family: 'DM Mono', monospace;
}

.site-header {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 227, 240, 0.8);
  background: rgba(248, 248, 252, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
}

.brand::after {
  position: absolute;
  top: -7px;
  right: -1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  content: '';
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.primary-nav a {
  color: #687089;
  font-size: 11px;
  font-weight: 700;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current='page'] {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid #cfd2e8;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding-block: 1rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-list {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.6rem;
  padding-inline: 0.75rem;
  color: #5b637a;
  font-size: 14px;
  font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current='page'] {
  background: #e3fafa;
  color: var(--ink);
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-rule {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: var(--aqua);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  align-items: center;
  gap: 3rem;
  padding-block: 5rem 7rem;
}

.hero-grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.hero-copy h1 {
  max-width: 560px;
  margin: 1.5rem 0 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: clamp(4rem, 8vw, 5.75rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

.hero-copy p {
  max-width: 430px;
  margin: 1.75rem 0 0;
  color: #5e6679;
  font-size: 18px;
  line-height: 1.65;
}

.outline-button,
.solid-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 0.65rem;
  padding: 0.7rem 1.25rem;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.outline-button {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.outline-button:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.solid-button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.solid-button:hover {
  background: #37387a;
  transform: translateY(-2px);
}

.hero-copy .outline-button {
  margin-top: 2rem;
}

.hero-art,
.page-art {
  position: relative;
  overflow: hidden;
  border-radius: 2.25rem;
  background: var(--lavender-strong);
  box-shadow: 0 24px 70px rgba(49, 47, 120, 0.12);
}

.hero-art {
  min-height: 480px;
}

.hero-art img,
.page-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(102, 224, 229, 0.35);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.hero-orbit::after {
  position: absolute;
  top: 16%;
  right: 14%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 8px rgba(102, 224, 229, 0.13);
  content: '';
}

.hero-orbit.one {
  top: 4rem;
  right: -5rem;
  width: 580px;
  height: 370px;
}

.hero-orbit.two {
  bottom: -5rem;
  left: 2.5rem;
  width: 320px;
  height: 200px;
}

.art-label {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.art-label span:last-child {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--aqua);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

.organic-shape {
  position: absolute;
  right: 35%;
  bottom: -14rem;
  left: -8rem;
  height: 20rem;
  border-radius: 50%;
  background: var(--lavender);
}

.section {
  padding-block: 5rem;
}

.section-lg {
  padding-block: 7rem;
}

.section-white {
  background: var(--white);
}

.section-lavender {
  background: var(--lavender);
}

.split {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.split-story {
  grid-template-columns: 0.84fr 1fr;
  gap: 6rem;
}

.story-art {
  overflow: hidden;
  aspect-ratio: 0.94;
  border-radius: 2rem;
  background: var(--lavender-strong);
}

.story-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy h2,
.section-heading h2,
.contact-copy h2 {
  max-width: 650px;
  margin: 1.5rem 0 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.story-copy p,
.contact-copy p {
  max-width: 560px;
  margin: 1.5rem 0 0;
  color: #60687b;
  font-size: 16px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  border-bottom: 2px solid var(--aqua);
  font-size: 13px;
  font-weight: 800;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading p {
  max-width: 340px;
  margin: 0;
  color: #60687b;
  font-size: 14px;
  line-height: 1.7;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4rem);
}

.lens-grid,
.card-grid {
  display: grid;
  gap: 1.25rem;
}

.lens-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.lens-card {
  min-height: 290px;
  border: 1px solid #dfe0f0;
  border-radius: 1rem;
  padding: 1.75rem;
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lens-card:hover,
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.lens-number {
  color: var(--blue);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
}

.lens-card h3 {
  margin: 4rem 0 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 30px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.lens-card p {
  margin: 1.25rem 0 0;
  color: #60687b;
  font-size: 14px;
  line-height: 1.7;
}

.article-card {
  display: grid;
  overflow: hidden;
  border: 1px solid #dfe0f0;
  border-radius: 1rem;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card.featured {
  grid-template-columns: 1.08fr 0.92fr;
}

.article-card-media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: var(--lavender-strong);
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.article-card:hover .article-card-media img {
  transform: scale(1.04);
}

.article-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  background: rgba(248, 248, 252, 0.92);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  color: #9299aa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--aqua);
}

.article-card h3 {
  margin: 1.25rem 0 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.article-card.featured h3 {
  font-size: 36px;
}

.article-card p {
  margin: 1rem 0 0;
  color: #60687b;
  font-size: 14px;
  line-height: 1.7;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 12px;
  font-weight: 800;
}

.newsletter {
  background: var(--lavender-strong);
}

.newsletter-inner {
  display: grid;
  align-items: end;
  gap: 2rem;
  grid-template-columns: 1fr 0.8fr;
}

.newsletter h2 {
  max-width: 560px;
  margin: 0.75rem 0 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-form input,
.contact-form input,
.contact-form textarea {
  min-height: 48px;
  border: 1px solid #cfd2e8;
  border-radius: 0.6rem;
  background: var(--surface);
  color: var(--ink);
  padding: 0.7rem 1rem;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
}

.newsletter-success,
.contact-success {
  border-radius: 0.75rem;
  padding: 1.25rem;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  background: #25265c;
  color: #eef0ff;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  padding-block: 5rem;
}

.footer-brand {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.footer-brand span {
  color: var(--aqua);
}

.footer-grid p {
  max-width: 380px;
  margin: 1.25rem 0 0;
  color: rgba(238, 240, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

.footer-label {
  margin: 0;
  color: var(--aqua);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  color: rgba(238, 240, 255, 0.75);
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(238, 240, 255, 0.16);
  padding-block: 1.25rem;
  color: rgba(238, 240, 255, 0.55);
  font-size: 11px;
}

.page-intro {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  padding-block: 5rem 6rem;
}

.page-intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 3rem;
  grid-template-columns: 1fr 0.8fr;
}

.page-intro h1 {
  max-width: 680px;
  margin: 1.25rem 0 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.page-intro p {
  max-width: 600px;
  margin: 1.75rem 0 0;
  color: #60687b;
  font-size: 18px;
  line-height: 1.7;
}

.page-art {
  min-height: 350px;
}

.content-narrow {
  width: min(900px, calc(100% - 48px));
  margin-inline: auto;
}

.content-copy {
  padding-block: 4rem 6rem;
}

.content-copy h2,
.content-copy h3 {
  font-family: 'Space Grotesk', Arial, sans-serif;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.content-copy h2 {
  font-size: 36px;
}

.content-copy h3 {
  font-size: 26px;
}

.content-copy p,
.entry-content p {
  color: #60687b;
  font-size: 16px;
  line-height: 1.9;
}

.entry-content {
  width: min(680px, 100%);
  margin-inline: auto;
  padding-block: 3rem 5rem;
}

.entry-content h2,
.entry-content h3 {
  color: var(--ink);
  font-family: 'Space Grotesk', Arial, sans-serif;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.entry-content h2 {
  margin-top: 2.75rem;
  font-size: 36px;
}

.entry-content h3 {
  margin-top: 2rem;
  font-size: 25px;
}

.post-header {
  background: var(--surface);
  padding-block: 4rem 3rem;
}

.post-header h1 {
  max-width: 900px;
  margin: 1.25rem 0 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.post-excerpt {
  max-width: 680px;
  margin: 1.75rem 0 0;
  color: #60687b;
  font-size: 18px;
  line-height: 1.8;
}

.post-image {
  overflow: hidden;
  aspect-ratio: 2 / 1;
  margin-top: 2rem;
  border-radius: 2rem;
  background: var(--lavender-strong);
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.5rem;
}

.related-card {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.25rem;
  background: var(--surface);
}

.related-card h3 {
  margin: 0.75rem 0 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.1;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 3rem;
  grid-template-columns: 0.7fr 1fr;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 2.25rem;
  background: var(--surface);
}

.contact-form-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

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

.contact-form .solid-button {
  justify-self: start;
}

.contact-success {
  min-height: 300px;
  padding: 3rem;
  background: var(--lavender-strong);
}

.contact-success h2 {
  margin: 1.5rem 0 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 40px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.empty-state {
  border: 1px dashed #cfd2e8;
  border-radius: 1rem;
  padding: 3rem;
  color: var(--muted);
  text-align: center;
}

.site-noise::after {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  content: '';
}

@media (max-width: 960px) {
  .primary-nav {
    gap: 1rem;
  }

  .hero-grid,
  .page-intro-inner {
    gap: 2rem;
  }

  .split-story {
    gap: 3rem;
  }
}

@media (max-width: 760px) {
  .container-wide,
  .content-narrow {
    width: min(100% - 32px, 1120px);
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-inner,
  .hero-grid,
  .page-intro-inner,
  .split-story,
  .newsletter-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
    padding-block: 5rem 6rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.7rem, 16vw, 5rem);
  }

  .hero-copy p,
  .page-intro p {
    font-size: 16px;
  }

  .hero-art {
    min-height: 360px;
  }

  .page-intro {
    padding-block: 4rem 5rem;
  }

  .page-art {
    min-height: 280px;
  }

  .section,
  .section-lg {
    padding-block: 4rem;
  }

  .lens-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 1.5rem;
  }

  .article-card.featured {
    grid-template-columns: 1fr;
  }

  .article-card.featured h3 {
    font-size: 30px;
  }

  .newsletter-form,
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 4rem;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: clamp(3.4rem, 16vw, 4.4rem);
  }

  .hero-art {
    min-height: 310px;
    border-radius: 1.75rem;
  }

  .page-intro h1 {
    font-size: 3.4rem;
  }

  .article-card-content,
  .contact-form {
    padding: 1.5rem;
  }

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

  .footer-grid > :first-child {
    grid-column: auto;
  }
}