.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -170px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(43, 196, 155, 0.22),
    transparent 68%
  );
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}
.hero-copy h1 {
  margin-bottom: 28px;
  max-width: 780px;
}
.hero-copy h1 span {
  color: var(--brand-dark);
}
.hero-copy > p {
  max-width: 650px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}
.hero-note {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  min-height: 580px;
}
.design-board {
  position: absolute;
  inset: 24px 0 0 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.browser-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 26px;
}
.browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d4ddd9;
}
.mock-hero {
  height: 210px;
  padding: 30px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #202426 0%, #222e2b 70%, #2bc49b 160%);
}
.mock-label {
  width: 85px;
  height: 9px;
  border-radius: 9px;
  background: #51d7b5;
}
.mock-title {
  width: 78%;
  height: 48px;
  margin-top: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}
.mock-lines {
  width: 56%;
  height: 9px;
  margin-top: 18px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px rgba(255, 255, 255, 0.22);
}
.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 18px;
}
.mock-card {
  height: 135px;
  border-radius: 18px;
  background: #edf4f1;
}
.mock-card:nth-child(2) {
  background: #dff8ef;
}
.mock-card:nth-child(3) {
  background: #202426;
}
.floating-card {
  position: absolute;
  z-index: 3;
  padding: 18px 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 40, 34, 0.16);
}
.floating-card strong {
  display: block;
  font-family: "Space Grotesk";
}
.floating-card small {
  color: var(--muted);
}
.floating-one {
  left: -25px;
  bottom: 70px;
}
.floating-two {
  right: -18px;
  top: 10px;
  background: var(--brand);
}
.services-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  padding: 34px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
}
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 55px;
  border-radius: 18px;
  background: var(--brand-soft);
  font-size: 1.5rem;
}
.service-card p {
  flex: 1;
}
.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.project-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 38px;
  border-radius: 30px;
  color: #fff;
  background: #202426;
}
.project-card.light {
  color: var(--ink);
  background: #dff8ef;
}
.project-card h3 {
  max-width: 420px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.project-card p {
  max-width: 440px;
  color: currentColor;
  opacity: 0.74;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.project-tags span {
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.75rem;
  opacity: 0.7;
}
.project-art {
  position: absolute;
  right: -50px;
  bottom: -85px;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  border: 55px solid var(--brand);
  transform: rotate(-15deg);
}
.project-card.light .project-art {
  border-color: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.process-list {
  counter-reset: process;
}
.process-item {
  counter-increment: process;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.process-item::before {
  content: "0" counter(process);
  font: 700 1.1rem "Space Grotesk";
  color: var(--brand-dark);
}
.process-item p {
  margin-bottom: 0;
}
.testimonial {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}
.testimonial blockquote {
  margin: 0 0 28px;
  font: 600 clamp(2rem, 4vw, 4rem) / 1.16 "Space Grotesk";
  letter-spacing: -0.035em;
}
.testimonial cite {
  color: #aebbb8;
  font-style: normal;
}
@media (max-width: 900px) {
  .hero-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 500px;
  }
  .services-preview {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: auto;
  }
  .service-icon {
    margin-bottom: 30px;
  }
}
@media (max-width: 700px) {
  .hero {
    padding-top: 55px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-visual {
    min-height: 390px;
  }
  .design-board {
    inset: 10px;
    padding: 18px;
  }
  .mock-hero {
    height: 165px;
    padding: 22px;
  }
  .mock-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mock-card {
    height: 90px;
  }
  .mock-card:last-child {
    display: none;
  }
  .floating-one {
    left: 0;
    bottom: 22px;
  }
  .floating-two {
    right: 0;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .project-card {
    min-height: 430px;
  }
}
.hero-new {
  padding: 90px 0 115px;
  background:
    radial-gradient(
      circle at 83% 18%,
      rgba(43, 196, 155, 0.2),
      transparent 22%
    ),
    linear-gradient(135deg, #fff 0 60%, #f0f7f4 60%);
}
.hero-new .hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
}
.hero-new h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  max-width: 850px;
}
.hero-new h1 span {
  color: var(--brand-dark);
  font-style: italic;
}
.hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.hero-capabilities span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-studio {
  position: relative;
  min-height: 620px;
}
.studio-card {
  position: absolute;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(19, 45, 37, 0.2);
  overflow: hidden;
}
.studio-card-a {
  left: 4%;
  top: 8%;
  width: 58%;
  height: 42%;
  padding: 35px;
  background: #202426;
  color: #fff;
  transform: rotate(-7deg);
}
.studio-card-a b {
  font-size: clamp(2rem, 5vw, 5rem);
  letter-spacing: -0.07em;
}
.studio-card-a small {
  position: absolute;
  bottom: 25px;
  left: 35px;
  color: #8cf0d3;
}
.studio-card-b {
  right: 0;
  top: 25%;
  width: 62%;
  height: 44%;
  padding: 24px;
  background: #fff;
  transform: rotate(5deg);
}
.studio-card-b span {
  display: block;
  height: 42%;
  border-radius: 15px;
  background: linear-gradient(120deg, var(--brand), #dff8ef);
}
.studio-card-b i {
  display: block;
  width: 65%;
  height: 14px;
  margin-top: 24px;
  border-radius: 9px;
  background: #202426;
  box-shadow:
    0 25px #dfe7e4,
    0 50px #dfe7e4;
}
.studio-card-b em {
  position: absolute;
  right: 20px;
  bottom: 18px;
  font-style: normal;
  font-weight: 800;
}
.studio-card-c {
  left: 0;
  bottom: 2%;
  width: 40%;
  height: 36%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #d89a72, #2d2424);
  transform: rotate(4deg);
}
.lens {
  width: 110px;
  height: 110px;
  border: 24px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.18);
}
.studio-card-c small,
.studio-card-d small {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-weight: 800;
}
.studio-card-d {
  right: 5%;
  bottom: 0;
  width: 44%;
  height: 29%;
  background: #183b34;
  transform: rotate(-4deg);
}
.map-lines {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    ellipse at 20% 80%,
    transparent 0 18px,
    rgba(86, 234, 193, 0.3) 19px 20px
  );
}
.intro-statement h2 {
  max-width: 1050px;
  font-size: clamp(2.8rem, 6vw, 6rem);
}
.site-collection {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}
.site-tile {
  padding: 22px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  transition: 0.3s;
}
.site-tile:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.site-browser {
  height: 360px;
  border-radius: 20px;
  background: #e9eeec;
  padding: 24px 18px 18px;
  position: relative;
  overflow: hidden;
}
.site-browser > span {
  position: absolute;
  top: 11px;
  left: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7c70;
  box-shadow:
    13px 0 #ffd66b,
    26px 0 #62d68c;
}
.site-browser > div {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.screen-clean {
  padding: 45px;
  background: linear-gradient(135deg, #fff 0 58%, #18a6a1 58%);
  position: relative;
}
.screen-clean b {
  font-size: 2.4rem;
}
.screen-clean i {
  display: block;
  width: 130px;
  height: 34px;
  margin-top: 24px;
  border-radius: 20px;
  background: #202426;
}
.screen-clean i + i {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 36%;
  height: 42%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
}
.screen-music {
  position: relative;
  padding: 42px;
  background:
    linear-gradient(rgba(21, 16, 12, 0.32), rgba(21, 16, 12, 0.32)),
    linear-gradient(135deg, #c99b67, #3f281f);
  color: #fff;
}
.screen-music b {
  font-size: 3rem;
}
.keys {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 64%;
  background: repeating-linear-gradient(
    90deg,
    #fff 0 20px,
    #222 21px 27px,
    #fff 28px 48px
  );
  transform: skewY(-8deg);
}
.screen-editorial {
  padding: 36px;
  background: #f7f3ea;
}
.screen-editorial i {
  font: bold 3rem "Space Grotesk";
  color: #049bce;
}
.screen-editorial div {
  height: 10px;
  background: #1d2932;
  margin-top: 24px;
}
.screen-editorial div:nth-of-type(2) {
  width: 75%;
}
.screen-editorial div:nth-of-type(3) {
  width: 45%;
  height: 120px;
  background: #049bce;
}
.screen-dark {
  padding: 40px;
  background: #111;
  color: #fff;
  position: relative;
}
.screen-dark b {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
}
.orbit {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -50px;
  bottom: -70px;
  border: 45px solid var(--brand);
  border-radius: 50%;
}
.tile-meta {
  padding: 24px 5px 4px;
}
.tile-meta small {
  color: var(--muted);
}
.tile-meta h3 {
  margin: 5px 0 0;
  font-size: 2rem;
}
.services-artful .service-card {
  position: relative;
  overflow: hidden;
}
.services-artful .service-card:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -75px;
  bottom: -80px;
  border: 30px solid var(--brand-soft);
  border-radius: 50%;
}
.split-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}
.split-feature p {
  color: #b6c1be;
  font-size: 1.15rem;
}
@media (max-width: 900px) {
  .hero-new .hero-grid,
  .split-feature {
    grid-template-columns: 1fr;
  }
  .hero-studio {
    min-height: 520px;
  }
  .site-collection {
    grid-template-columns: 1fr;
  }
  .site-browser {
    height: 320px;
  }
}
@media (max-width: 620px) {
  .hero-new {
    padding-top: 50px;
  }
  .hero-new h1 {
    font-size: 3.6rem;
  }
  .hero-studio {
    min-height: 400px;
  }
  .studio-card-a {
    width: 68%;
    height: 38%;
  }
  .studio-card-b {
    width: 70%;
    height: 40%;
  }
  .studio-card-c {
    width: 45%;
    height: 28%;
  }
  .studio-card-d {
    width: 48%;
    height: 25%;
  }
  .site-browser {
    height: 260px;
  }
  .screen-clean,
  .screen-music,
  .screen-editorial,
  .screen-dark {
    padding: 25px;
  }
  .screen-clean b,
  .screen-music b,
  .screen-dark b {
    font-size: 2rem;
  }
}

/* Cinematic creative systems */
.creative-systems {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #080b0d;
  color: #fff;
}
.creative-systems:before {
  content: "";
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(43, 196, 155, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 72%,
      rgba(114, 92, 255, 0.14),
      transparent 25%
    );
  pointer-events: none;
}
.systems-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.systems-heading h2 {
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin: 12px 0 0;
}
.systems-heading p {
  color: #9da9aa;
  font-size: 1.08rem;
  max-width: 560px;
}
.systems-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 460px 390px;
  gap: 22px;
}
.system-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: #101518;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}
.system-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    transparent 49.7%,
    rgba(255, 255, 255, 0.035) 50%,
    transparent 50.3%
  );
  background-size: 100% 6px;
  pointer-events: none;
}
.system-web {
  grid-row: span 2;
  background:
    radial-gradient(
      circle at 70% 28%,
      rgba(40, 208, 160, 0.16),
      transparent 35%
    ),
    #0b1513;
}
.system-hud {
  position: absolute;
  left: 24px;
  top: 22px;
  z-index: 2;
}
.system-hud small,
.system-hud b {
  display: block;
  font-family: "Space Grotesk";
}
.system-hud small {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: #67e6bd;
}
.system-hud b {
  margin-top: 7px;
  font-size: 0.78rem;
  color: #dffcf3;
}
.system-browser {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 18%;
  height: 54%;
  border: 1px solid rgba(111, 255, 209, 0.35);
  border-radius: 22px;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.015)
  );
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}
.system-browser > span,
.system-browser > i {
  position: absolute;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60706d;
}
.system-browser > span {
  left: 20px;
}
.system-browser > i:nth-of-type(1) {
  left: 36px;
}
.system-browser > i:nth-of-type(2) {
  left: 52px;
}
.system-browser > i:nth-of-type(3) {
  display: none;
}
.system-browser:before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 14%;
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
}
.system-browser strong {
  position: absolute;
  left: 8%;
  bottom: 12%;
  font-size: clamp(2.7rem, 5vw, 5.9rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: #fff;
}
.system-browser strong:after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border: 24px solid #2bc49b;
  border-radius: 50%;
  right: -150px;
  top: -20px;
}
.system-data {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 7%;
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(102, 255, 207, 0.18);
  font: 600 0.65rem "Space Grotesk";
  letter-spacing: 0.13em;
  color: #7f9e95;
}
.system-photo {
  background: linear-gradient(145deg, #2b1c18, #0e0f10);
}
.focus-ui {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.focus-ui > span:first-child {
  width: 185px;
  height: 185px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.035);
}
.focus-ui > span:nth-child(2) {
  position: absolute;
  width: 76px;
  height: 76px;
  border: 2px solid #ffb07e;
}
.focus-ui b {
  position: absolute;
  right: 24px;
  top: 22px;
  font-size: 1.4rem;
}
.focus-ui small {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: #c8b6ad;
  letter-spacing: 0.12em;
}
.photo-word {
  position: absolute;
  left: 24px;
  bottom: 22px;
  font: 700 2.2rem/0.82 "Space Grotesk";
  letter-spacing: -0.04em;
}
.system-motion {
  background: radial-gradient(circle at 50% 45%, #251b36, #111016 65%);
}
.motion-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.motion-rings i {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}
.motion-rings i:nth-child(1) {
  width: 220px;
  height: 220px;
  border-color: #af73ff;
  animation: spin 14s linear infinite;
}
.motion-rings i:nth-child(2) {
  width: 150px;
  height: 150px;
  border-color: #ff6f91;
  transform: translate(55px, -15px);
}
.motion-rings i:nth-child(3) {
  width: 78px;
  height: 78px;
  border-color: #5fe8c1;
  transform: translate(-42px, 44px);
}
.system-motion > strong {
  position: absolute;
  left: 24px;
  top: 22px;
  font-size: 1.7rem;
  line-height: 0.9;
}
.motion-timeline {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  color: #a696b9;
}
.motion-timeline span {
  width: 42%;
  height: 3px;
  background: linear-gradient(
    90deg,
    #b67cff 68%,
    rgba(255, 255, 255, 0.14) 68%
  );
}
.motion-timeline b {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}
.system-market {
  background: linear-gradient(145deg, #10191d, #0b1114);
}
.signal-bars {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 20%;
  height: 58%;
  display: flex;
  align-items: end;
  gap: 13px;
}
.signal-bars i {
  flex: 1;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(#61efc1, #1f6d59);
}
.signal-bars i:nth-child(1) {
  height: 28%;
}
.signal-bars i:nth-child(2) {
  height: 47%;
}
.signal-bars i:nth-child(3) {
  height: 63%;
}
.signal-bars i:nth-child(4) {
  height: 78%;
}
.signal-bars i:nth-child(5) {
  height: 96%;
}
.market-copy {
  position: absolute;
  left: 24px;
  top: 22px;
  z-index: 2;
}
.market-copy small,
.market-copy strong,
.market-copy span {
  display: block;
}
.market-copy small {
  color: #6fe7c1;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
}
.market-copy strong {
  font-size: 3.5rem;
  line-height: 1;
  margin-top: 6px;
}
.market-copy span {
  margin-top: 4px;
  color: #8fa3a0;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 900px) {
  .systems-heading,
  .systems-grid {
    grid-template-columns: 1fr;
  }
  .systems-grid {
    grid-template-rows: auto;
  }
  .system-panel,
  .system-web {
    grid-row: auto;
    min-height: 430px;
  }
  .system-web {
    min-height: 620px;
  }
}
@media (max-width: 600px) {
  .creative-systems {
    padding: 84px 0;
  }
  .systems-heading {
    gap: 20px;
  }
  .systems-grid {
    gap: 16px;
  }
  .system-web {
    min-height: 520px;
  }
  .system-panel {
    min-height: 370px;
  }
  .system-browser {
    left: 6%;
    right: 6%;
    height: 58%;
  }
  .system-browser strong {
    font-size: 2.55rem;
  }
  .system-browser strong:after {
    width: 72px;
    height: 72px;
    border-width: 16px;
    right: -92px;
  }
  .system-data {
    font-size: 0.52rem;
  }
}

/* Cinematic Lognova home hero */
.nova-hero {
  position: relative;
  min-height: calc(100vh - 90px);
  overflow: hidden;
  background: #07100f;
  color: #fff;
  display: flex;
  align-items: stretch;
}
.nova-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111, 255, 210, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 255, 210, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    rgba(0, 0, 0, 0.75) 70%,
    transparent 100%
  );
}
.nova-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
}
.nova-glow-a {
  width: 620px;
  height: 620px;
  right: -180px;
  top: -210px;
  background: radial-gradient(
    circle,
    rgba(43, 196, 155, 0.25),
    transparent 68%
  );
}
.nova-glow-b {
  width: 430px;
  height: 430px;
  left: -230px;
  bottom: -200px;
  background: radial-gradient(
    circle,
    rgba(45, 116, 255, 0.14),
    transparent 68%
  );
}
.nova-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
  padding-top: 78px;
  padding-bottom: 108px;
  width: 100%;
}
.nova-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font: 700 0.67rem "Space Grotesk";
  letter-spacing: 0.13em;
  color: #91aaa3;
}
.nova-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #69f1c5;
  box-shadow: 0 0 18px #69f1c5;
}
.nova-status b {
  margin-left: auto;
  color: #69f1c5;
}
.nova-copy h1 {
  font-size: clamp(4.15rem, 7.4vw, 8rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
  margin-bottom: 30px;
}
.nova-copy h1 span {
  display: inline-block;
  color: #69f1c5;
  text-shadow: 0 0 34px rgba(80, 239, 193, 0.17);
}
.nova-copy > p {
  max-width: 720px;
  color: #9eb0ab;
  font-size: clamp(1.03rem, 1.55vw, 1.25rem);
  line-height: 1.72;
}
.nova-button-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.nova-button-ghost:hover {
  background: #fff;
  color: #0c1714;
}
.nova-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.nova-capabilities span {
  padding: 7px 10px;
  border: 1px solid rgba(111, 255, 210, 0.16);
  color: #77958c;
  font: 700 0.57rem "Space Grotesk";
  letter-spacing: 0.12em;
}
.nova-engine {
  position: relative;
  min-height: 650px;
  border: 1px solid rgba(108, 255, 210, 0.17);
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(28, 107, 88, 0.25), transparent 36%),
    linear-gradient(145deg, rgba(16, 36, 31, 0.72), rgba(5, 14, 12, 0.92));
  box-shadow:
    0 50px 130px rgba(0, 0, 0, 0.48),
    inset 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.nova-engine:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111, 255, 210, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 255, 210, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
}
.engine-top {
  position: absolute;
  z-index: 4;
  left: 22px;
  right: 22px;
  top: 20px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(111, 255, 210, 0.12);
  font: 700 0.62rem "Space Grotesk";
  letter-spacing: 0.16em;
  color: #66877d;
}
.engine-top b {
  color: #69f1c5;
}
.engine-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(111, 255, 210, 0.42);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle,
    rgba(57, 220, 170, 0.22),
    rgba(5, 15, 12, 0.92) 67%
  );
  box-shadow:
    0 0 0 18px rgba(111, 255, 210, 0.025),
    0 0 70px rgba(82, 237, 191, 0.18);
}
.engine-core span {
  font: 700 4.5rem/0.8 "Space Grotesk";
  letter-spacing: -0.12em;
  color: #dcfff4;
}
.engine-core small {
  position: absolute;
  bottom: 29px;
  color: #6f9388;
  font: 700 0.48rem "Space Grotesk";
  letter-spacing: 0.16em;
}
.engine-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(111, 255, 210, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-one {
  width: 310px;
  height: 310px;
}
.orbit-two {
  width: 455px;
  height: 455px;
  border-style: dashed;
}
.orbit-three {
  width: 575px;
  height: 575px;
  opacity: 0.45;
}
.engine-orbit i {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #69f1c5;
  box-shadow: 0 0 18px #69f1c5;
}
.orbit-one i {
  right: 25px;
  top: 53px;
}
.orbit-two i {
  left: 38px;
  bottom: 83px;
}
.engine-node {
  position: absolute;
  z-index: 4;
  width: 155px;
  padding: 12px 13px;
  border: 1px solid rgba(111, 255, 210, 0.17);
  background: rgba(5, 18, 15, 0.82);
  backdrop-filter: blur(8px);
  font-family: "Space Grotesk";
}
.engine-node small {
  color: #5d8378;
  font-size: 0.52rem;
}
.engine-node b {
  display: block;
  color: #e0fff5;
  font-size: 0.82rem;
  margin-top: 4px;
}
.engine-node span {
  display: block;
  color: #5f8178;
  font-size: 0.48rem;
  margin-top: 4px;
  letter-spacing: 0.09em;
}
.node-web {
  left: 26px;
  top: 24%;
}
.node-photo {
  right: 24px;
  top: 22%;
}
.node-motion {
  left: 38px;
  bottom: 19%;
}
.node-brand {
  right: 28px;
  bottom: 18%;
}
.engine-readout {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  padding: 9px 11px;
  border-top: 1px solid rgba(111, 255, 210, 0.16);
  font-family: "Space Grotesk";
}
.engine-readout small {
  display: block;
  color: #526f67;
  font-size: 0.48rem;
  letter-spacing: 0.14em;
}
.engine-readout strong {
  display: block;
  color: #8ff4d5;
  font-size: 0.69rem;
  margin-top: 4px;
}
.readout-a {
  left: 23px;
}
.readout-b {
  right: 23px;
  text-align: right;
}
.engine-scan {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  height: 1px;
  top: 18%;
  background: linear-gradient(90deg, transparent, #6effd1, transparent);
  box-shadow: 0 0 18px #6effd1;
  animation: novaScan 5.5s linear infinite;
  opacity: 0.55;
}
@keyframes novaScan {
  0% {
    top: 13%;
  }
  50% {
    top: 83%;
  }
  100% {
    top: 13%;
  }
}
.nova-bottom {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 12, 10, 0.66);
  backdrop-filter: blur(12px);
}
.nova-bottom .container {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #617b74;
  font: 700 0.58rem "Space Grotesk";
  letter-spacing: 0.13em;
}
.nova-bottom b {
  color: #8ef2d3;
}
@media (max-width: 1050px) {
  .nova-hero-layout {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }
  .nova-engine {
    min-height: 590px;
  }
  .nova-copy h1 {
    max-width: 850px;
  }
  .nova-hero {
    min-height: auto;
  }
}
@media (max-width: 650px) {
  .nova-hero-layout {
    padding-top: 55px;
    padding-bottom: 95px;
  }
  .nova-copy h1 {
    font-size: clamp(3.55rem, 17vw, 5.2rem);
  }
  .nova-status b {
    display: none;
  }
  .nova-engine {
    min-height: 470px;
    border-radius: 24px;
  }
  .orbit-three {
    display: none;
  }
  .orbit-two {
    width: 340px;
    height: 340px;
  }
  .orbit-one {
    width: 235px;
    height: 235px;
  }
  .engine-core {
    width: 125px;
    height: 125px;
  }
  .engine-core span {
    font-size: 3.5rem;
  }
  .engine-node {
    width: 120px;
    padding: 9px;
  }
  .node-web {
    left: 12px;
  }
  .node-photo {
    right: 12px;
  }
  .node-motion {
    left: 15px;
  }
  .node-brand {
    right: 15px;
  }
  .nova-bottom .container {
    justify-content: center;
  }
  .nova-bottom span {
    display: none;
  }
}

/* Refined editorial homepage — expressive without overusing the HUD aesthetic */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--brand);
  color: #09231b;
  -webkit-mask-image: none;
  mask-image: none;
}

.marquee::before,
.marquee::after {
  content: none;
  display: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-loop 28s linear infinite;
}

.marquee-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 28px;
  padding: 14px 28px 14px 0;
  white-space: nowrap;
}

.marquee-group span {
  flex: none;
  font: 800 0.82rem/1 "Space Grotesk";
  letter-spacing: 0.12em;
}

.marquee-group i {
  flex: none;
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.52;
}

@keyframes marquee-loop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 680px) {
  .marquee-track {
    animation-duration: 23s;
  }

  .marquee-group {
    gap: 20px;
    padding: 12px 20px 12px 0;
  }

  .marquee-group span {
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-duration: 60s;
  }
}

.intro-statement {
  padding: 150px 0 125px;
  background: #fff;
}
.intro-statement .container {
  position: relative;
  padding-left: clamp(0px, 8vw, 120px);
}
.intro-statement .container:before {
  content: "LOGNOVA";
  position: absolute;
  left: 0;
  top: -68px;
  font: 800 clamp(5rem, 16vw, 13rem) / 1 "Space Grotesk";
  letter-spacing: -0.08em;
  color: #f2f5f4;
  z-index: 0;
}
.intro-statement .container > * {
  position: relative;
  z-index: 1;
}
.intro-statement h2 {
  max-width: 1120px;
  line-height: 0.96;
}

.section-soft {
  background: linear-gradient(180deg, #f5f8f7 0, #fff 100%);
}
.site-collection {
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}
.site-tile {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.site-tile:hover {
  transform: none;
  box-shadow: none;
}
.site-tile:nth-child(even) {
  margin-top: 110px;
}
.site-browser {
  height: clamp(340px, 36vw, 520px);
  border-radius: clamp(26px, 4vw, 56px);
  box-shadow: 0 30px 80px rgba(17, 40, 34, 0.13);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s;
}
.site-tile:hover .site-browser {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 42px 100px rgba(17, 40, 34, 0.2);
}
.site-tile:nth-child(even):hover .site-browser {
  transform: translateY(-10px) rotate(1deg);
}
.tile-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 25px 8px 4px;
  border-bottom: 1px solid var(--line);
}
.tile-meta h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}
.tile-meta small {
  max-width: 220px;
}

.services-preview.services-artful {
  display: block;
  border-top: 1px solid var(--line);
}
.services-artful .service-card {
  display: grid;
  grid-template-columns: 90px minmax(240px, 0.8fr) 1.2fr auto;
  gap: clamp(18px, 4vw, 58px);
  align-items: center;
  padding: 38px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.services-artful .service-card:after {
  display: none;
}
.services-artful .service-card:hover {
  transform: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(43, 196, 155, 0.055),
    transparent
  );
}
.services-artful .service-icon {
  font: 700 0.78rem "Space Grotesk";
  letter-spacing: 0.14em;
  color: var(--brand-dark);
}
.services-artful h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
}
.services-artful p {
  margin: 0;
  max-width: 620px;
}
.services-artful .text-link {
  white-space: nowrap;
}

.creative-systems {
  padding-top: 145px;
  padding-bottom: 145px;
}
.systems-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 65px;
}
.systems-heading .eyebrow {
  grid-column: 1/-1;
}
.systems-heading h2 {
  margin: 0;
}
.systems-heading p {
  max-width: 540px;
  margin: 0 0 8px;
}
.systems-grid {
  gap: 22px;
}
.system-panel {
  border-radius: 36px;
}

.section-dark .split-feature {
  position: relative;
  padding-top: 45px;
  padding-bottom: 45px;
}
.section-dark .split-feature:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 2px;
  background: var(--brand);
}

@media (max-width: 900px) {
  .intro-statement {
    padding: 105px 0 90px;
  }
  .intro-statement .container {
    padding-left: 24px;
  }
  .site-tile:nth-child(even) {
    margin-top: 0;
  }
  .services-artful .service-card {
    grid-template-columns: 52px 1fr auto;
  }
  .services-artful .service-card p {
    grid-column: 2/-1;
  }
  .systems-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .systems-heading .eyebrow {
    grid-column: auto;
  }
}
@media (max-width: 620px) {
  .marquee-track span {
    padding: 13px 0;
    font-size: 0.7rem;
  }
  .site-browser {
    height: 310px;
    border-radius: 26px;
  }
  .tile-meta {
    grid-template-columns: 1fr;
  }
  .tile-meta small {
    max-width: none;
  }
  .services-artful .service-card {
    grid-template-columns: 42px 1fr;
    padding: 28px 0;
  }
  .services-artful .service-card p,
  .services-artful .text-link {
    grid-column: 2;
  }
  .services-artful .text-link {
    justify-self: start;
  }
}

/* Round 6 — corrected hero alignment and bolder project showcase */
.container.nova-hero-layout {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.work-showcase {
  position: relative;
  overflow: hidden;
  padding: 145px 0;
  background: #eef3f1;
}
.work-showcase:before {
  content: "";
  position: absolute;
  left: -160px;
  top: 90px;
  width: 390px;
  height: 390px;
  border: 70px solid rgba(43, 196, 155, 0.09);
  border-radius: 50%;
}
.work-showcase-head {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 75px;
}
.work-showcase-head h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  line-height: 0.94;
}
.work-showcase-head p {
  max-width: 480px;
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.work-stage {
  position: relative;
  min-height: 610px;
  margin: 0 0 54px;
  padding: 76px clamp(34px, 6vw, 88px);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(35px, 6vw, 90px);
  overflow: hidden;
  border-radius: 48px;
}
.work-stage:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.work-number {
  position: absolute;
  left: 28px;
  top: 24px;
  font: 800 0.7rem "Space Grotesk";
  letter-spacing: 0.16em;
  opacity: 0.62;
}
.work-copy {
  position: relative;
  z-index: 3;
  max-width: 480px;
}
.work-copy > span {
  display: block;
  margin-bottom: 20px;
  font: 800 0.64rem "Space Grotesk";
  letter-spacing: 0.16em;
}
.work-copy h3 {
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}
.work-copy p {
  font-size: 1.08rem;
  line-height: 1.75;
}
.work-copy .text-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
}
.work-device {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  justify-self: end;
  padding: 13px;
  border-radius: 27px;
  background: #111815;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.28);
  transform: perspective(1300px) rotateY(-5deg) rotateX(1deg);
}
.device-bar {
  height: 35px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  color: #76817d;
  font: 700 0.52rem "Space Grotesk";
  letter-spacing: 0.07em;
}
.device-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff736b;
}
.device-bar i:nth-child(2) {
  background: #f7ca58;
}
.device-bar i:nth-child(3) {
  background: #58cf80;
}
.device-bar b {
  margin-left: 8px;
  font-weight: 600;
}
.device-screen {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 16px;
  padding: clamp(28px, 4vw, 56px);
}
.device-screen small {
  display: block;
  font: 800 0.58rem "Space Grotesk";
  letter-spacing: 0.18em;
}
.device-screen strong {
  display: block;
  margin-top: 22px;
  font: 800 clamp(2.5rem, 5vw, 5.2rem) / 0.86 "Space Grotesk";
  letter-spacing: -0.07em;
}
.device-screen > span {
  position: absolute;
  left: clamp(28px, 4vw, 56px);
  bottom: 40px;
  padding: 12px 20px;
  border-radius: 999px;
  font: 800 0.62rem "Space Grotesk";
  letter-spacing: 0.06em;
}
.work-stage-clean {
  background: linear-gradient(135deg, #fefefe 0 52%, #099b97 52%);
  color: #142521;
  box-shadow: 0 30px 100px rgba(23, 68, 57, 0.12);
}
.work-stage-clean .work-copy p {
  color: #52635e;
}
.work-stage-clean .text-link {
  color: #087f7c;
}
.clean-ui {
  background: linear-gradient(125deg, #f8ffff 0 58%, #0ba19d 58%);
  color: #102622;
}
.clean-ui small {
  color: #078985;
}
.clean-ui > span {
  background: #112522;
  color: #fff;
}
.clean-photo {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 39%;
  height: 73%;
  border-radius: 120px 120px 0 0;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.15)
    ),
    radial-gradient(
      circle at 45% 25%,
      #e4c4aa 0 11%,
      #5d4033 12% 19%,
      transparent 20%
    ),
    linear-gradient(135deg, #badfd6, #f8ffff);
}
.accent-clean {
  position: absolute;
  right: -70px;
  top: -90px;
  width: 260px;
  height: 260px;
  border: 48px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}
.work-stage-music {
  background: linear-gradient(135deg, #211611, #6e4630);
  color: #fff;
}
.work-stage-music .work-copy p {
  color: #d5c3b8;
}
.work-stage-music .text-link {
  color: #f4cfa8;
}
.music-ui {
  background:
    linear-gradient(rgba(20, 11, 7, 0.28), rgba(20, 11, 7, 0.72)),
    radial-gradient(circle at 75% 20%, #d9af7e, #6c422c 45%, #271612 85%);
  color: #fff;
}
.music-ui small {
  color: #f6d7b6;
}
.music-ui > span {
  background: #fff;
  color: #241610;
}
.piano-keys {
  position: absolute;
  right: -15px;
  bottom: -25px;
  width: 52%;
  height: 62%;
  background: repeating-linear-gradient(
    90deg,
    #fdfbf7 0 25px,
    #171717 26px 34px,
    #fdfbf7 35px 62px
  );
  transform: skewY(-9deg) rotate(-3deg);
  box-shadow: -25px -25px 60px rgba(0, 0, 0, 0.22);
}
.music-note {
  position: absolute;
  color: rgba(255, 255, 255, 0.12);
  font: 700 9rem serif;
}
.note-one {
  right: 3%;
  top: -4%;
  transform: rotate(15deg);
}
.note-two {
  left: 42%;
  bottom: -12%;
  font-size: 12rem;
  transform: rotate(-14deg);
}
.work-stage-editorial {
  background: #071827;
  color: #fff;
}
.work-stage-editorial .work-copy p {
  color: #aab7c0;
}
.work-stage-editorial .text-link {
  color: #65cdf2;
}
.editorial-ui {
  background: #f5f1e8;
  color: #14202a;
}
.afdes-mark {
  font: 800 clamp(2.4rem, 4vw, 4.4rem) "Space Grotesk";
  color: #049bce;
  letter-spacing: -0.06em;
}
.editorial-ui small {
  margin-top: 24px;
  color: #60707c;
}
.editorial-ui strong {
  font-size: clamp(2.25rem, 4.2vw, 4.4rem);
}
.editorial-lines {
  position: absolute;
  right: 7%;
  bottom: 9%;
  width: 38%;
}
.editorial-lines i {
  display: block;
  height: 9px;
  margin-top: 12px;
  background: #182935;
}
.editorial-lines i:nth-child(2) {
  width: 75%;
}
.editorial-lines i:nth-child(3) {
  width: 48%;
  height: 90px;
  background: #049bce;
}
.editorial-seal {
  position: absolute;
  right: -20px;
  top: 26px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(101, 205, 242, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #65cdf2;
  font: 800 0.56rem/1.8 "Space Grotesk";
  letter-spacing: 0.16em;
  transform: rotate(11deg);
}
.work-showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
}
.work-showcase-footer span {
  font: 700 clamp(1.2rem, 2vw, 1.8rem) "Space Grotesk";
}

@media (max-width: 900px) {
  .container.nova-hero-layout {
    width: min(calc(100% - 28px), var(--container));
  }
  .work-showcase {
    padding: 100px 0;
  }
  .work-showcase-head {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 48px;
  }
  .work-stage {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 68px 30px 38px;
    border-radius: 34px;
  }
  .work-device {
    justify-self: stretch;
    width: 100%;
    transform: none;
  }
  .device-screen {
    min-height: 370px;
  }
  .work-stage-music .work-device {
    order: 2;
  }
  .editorial-seal {
    display: none;
  }
}
@media (max-width: 600px) {
  .work-stage {
    padding: 58px 18px 22px;
    border-radius: 26px;
    gap: 30px;
  }
  .work-copy h3 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }
  .work-device {
    padding: 8px;
    border-radius: 20px;
  }
  .device-screen {
    min-height: 300px;
    padding: 28px 22px;
  }
  .device-screen strong {
    font-size: 2.6rem;
  }
  .device-screen > span {
    left: 22px;
    bottom: 24px;
  }
  .clean-photo {
    width: 43%;
    height: 61%;
  }
  .piano-keys {
    width: 56%;
    height: 48%;
  }
  .editorial-lines {
    display: none;
  }
  .work-showcase-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Round 7 — visible hero realignment and editorial portfolio rebuild */
.nova-hero .nova-hero-layout {
  width: min(calc(100% - 64px), 1180px) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
  gap: clamp(44px, 6vw, 86px);
}
.nova-copy {
  min-width: 0;
  padding-left: 0;
}
.nova-engine {
  width: 100%;
  justify-self: end;
}
@media (max-width: 1050px) {
  .nova-hero .nova-hero-layout {
    grid-template-columns: 1fr !important;
  }
  .nova-engine {
    justify-self: stretch;
  }
}
@media (max-width: 650px) {
  .nova-hero .nova-hero-layout {
    width: calc(100% - 28px) !important;
  }
}

.portfolio-stream {
  position: relative;
  background: #f2f5f4;
  padding: 140px 0 0;
  overflow: hidden;
}
.portfolio-stream-head {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  gap: 70px;
  align-items: end;
  padding-bottom: 80px;
}
.portfolio-stream-head h2 {
  font-size: clamp(3rem, 6vw, 6.3rem);
  line-height: 0.91;
  margin: 0;
}
.portfolio-stream-head p {
  font-size: 1.08rem;
  max-width: 440px;
  margin-bottom: 8px;
}
.project-band {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(20, 35, 30, 0.12);
}
.project-band-no {
  position: absolute;
  left: max(20px, calc((100vw - 1180px) / 2));
  top: 30px;
  font: 800 0.68rem "Space Grotesk";
  letter-spacing: 0.18em;
  opacity: 0.55;
}
.project-band-grid {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: clamp(42px, 7vw, 105px);
  align-items: center;
  padding-top: 90px;
  padding-bottom: 90px;
}
.project-band-reverse {
  grid-template-columns: 1.34fr 0.66fr;
}
.project-band-reverse .project-band-copy {
  order: 2;
}
.project-band-reverse .project-composition {
  order: 1;
}
.project-band-copy {
  position: relative;
  z-index: 4;
}
.project-band-copy > span {
  font: 800 0.65rem "Space Grotesk";
  letter-spacing: 0.16em;
}
.project-band-copy h3 {
  font-size: clamp(3.6rem, 7vw, 7.5rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  margin: 24px 0 28px;
}
.project-band-copy p {
  max-width: 430px;
  font-size: 1.08rem;
  line-height: 1.72;
}
.project-band-copy a {
  display: inline-block;
  margin-top: 14px;
  font-weight: 800;
  border-bottom: 2px solid currentColor;
  padding-bottom: 5px;
}
.project-composition {
  position: relative;
  min-height: 510px;
}
.project-browser {
  position: absolute;
  width: min(100%, 720px);
  padding: 12px;
  border-radius: 25px;
  background: #101715;
  box-shadow: 0 48px 110px rgba(0, 0, 0, 0.27);
}
.browser-chrome {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  color: #76817d;
  font: 700 0.5rem "Space Grotesk";
  letter-spacing: 0.07em;
}
.browser-chrome i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff746c;
}
.browser-chrome i:nth-child(2) {
  background: #f6c858;
}
.browser-chrome i:nth-child(3) {
  background: #59ce81;
}
.browser-chrome b {
  margin-left: 7px;
}
.browser-canvas {
  position: relative;
  min-height: 420px;
  border-radius: 15px;
  overflow: hidden;
  padding: 52px;
}
.browser-canvas small {
  font: 800 0.58rem "Space Grotesk";
  letter-spacing: 0.18em;
}
.browser-canvas strong {
  display: block;
  margin-top: 24px;
  font: 800 clamp(2.7rem, 5vw, 5.4rem) / 0.86 "Space Grotesk";
  letter-spacing: -0.07em;
}
.browser-canvas > span {
  position: absolute;
  left: 52px;
  bottom: 40px;
  padding: 11px 18px;
  border-radius: 999px;
  font: 800 0.58rem "Space Grotesk";
  letter-spacing: 0.08em;
}
.project-float {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  font: 800 0.65rem/1.4 "Space Grotesk";
  letter-spacing: 0.12em;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}
.project-band-clean {
  background: linear-gradient(110deg, #fff 0 44%, #079b97 44%);
  color: #102622;
}
.project-band-clean .project-band-copy p {
  color: #52635e;
}
.project-band-clean .project-band-copy a {
  color: #087d79;
}
.composition-clean .project-browser {
  right: 0;
  top: 10px;
  transform: rotate(-2deg);
}
.browser-clean .browser-canvas {
  background: linear-gradient(125deg, #f8ffff 0 58%, #0ba19d 58%);
}
.browser-clean small {
  color: #078985;
}
.browser-clean > div > span {
  background: #112522;
  color: #fff;
}
.clean-portrait {
  position: absolute;
  right: 3%;
  bottom: 0;
  width: 40%;
  height: 74%;
  border-radius: 150px 150px 0 0;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.12)
    ),
    radial-gradient(
      circle at 45% 24%,
      #e4c1a5 0 11%,
      #554039 12% 20%,
      transparent 21%
    ),
    linear-gradient(135deg, #9ed7ca, #f9ffff);
}
.float-clean-a {
  left: -25px;
  bottom: 28px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
  color: #0a7774;
}
.float-clean-b {
  right: -24px;
  top: 30px;
  width: 85px;
  height: 85px;
  background: #182725;
  color: #fff;
  transform: rotate(9deg);
}
.project-band-music {
  background:
    radial-gradient(
      circle at 22% 45%,
      rgba(242, 190, 137, 0.23),
      transparent 26%
    ),
    linear-gradient(120deg, #1d120e, #71492f);
  color: #fff;
}
.project-band-music .project-band-copy p {
  color: #d8c5b9;
}
.project-band-music .project-band-copy a {
  color: #f4cda8;
}
.composition-music .project-browser {
  left: 0;
  top: 25px;
  transform: rotate(2.5deg);
}
.browser-music .browser-canvas {
  background:
    linear-gradient(rgba(25, 13, 8, 0.22), rgba(25, 13, 8, 0.68)),
    radial-gradient(circle at 74% 18%, #dda86f, #74462e 48%, #25130e 90%);
  color: #fff;
}
.browser-music small {
  color: #f5d5b5;
}
.browser-music > div > span {
  background: #fff;
  color: #21140e;
}
.project-piano {
  position: absolute;
  right: -25px;
  bottom: -35px;
  width: 53%;
  height: 61%;
  background: repeating-linear-gradient(
    90deg,
    #fff 0 25px,
    #151515 26px 34px,
    #fff 35px 62px
  );
  transform: skewY(-8deg) rotate(-3deg);
  box-shadow: -30px -22px 65px rgba(0, 0, 0, 0.3);
}
.vinyl-ring {
  position: absolute;
  left: -90px;
  top: -10px;
  width: 310px;
  height: 310px;
  border: 55px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.music-glyph {
  position: absolute;
  right: -5px;
  bottom: -60px;
  font: 700 15rem serif;
  color: rgba(255, 255, 255, 0.08);
  transform: rotate(10deg);
}
.project-band-afdes {
  background: #071827;
  color: #fff;
}
.project-band-afdes .project-band-copy p {
  color: #aab8c1;
}
.project-band-afdes .project-band-copy a {
  color: #68cff4;
}
.composition-afdes .project-browser {
  right: 10px;
  top: 25px;
  transform: rotate(-1.5deg);
}
.browser-afdes .browser-canvas {
  background: #f4f0e7;
  color: #14202a;
}
.afdes-logo-type {
  font: 800 clamp(2.5rem, 4vw, 4.6rem) "Space Grotesk";
  color: #049bce;
  letter-spacing: -0.06em;
}
.browser-afdes small {
  display: block;
  margin-top: 22px;
  color: #60707c;
}
.browser-afdes strong {
  font-size: clamp(2.5rem, 4.4vw, 4.7rem);
}
.afdes-columns {
  position: absolute;
  right: 7%;
  bottom: 8%;
  width: 36%;
}
.afdes-columns i {
  display: block;
  height: 9px;
  margin-top: 12px;
  background: #182935;
}
.afdes-columns i:nth-child(2) {
  width: 72%;
}
.afdes-columns i:nth-child(3) {
  width: 48%;
  height: 88px;
  background: #049bce;
}
.afdes-word {
  position: absolute;
  right: -120px;
  top: -15px;
  font: 800 7rem "Space Grotesk";
  letter-spacing: -0.08em;
  color: rgba(101, 205, 242, 0.07);
  transform: rotate(90deg);
}
.afdes-disc {
  position: absolute;
  left: -20px;
  bottom: 12px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(101, 205, 242, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #65cdf2;
  font: 800 0.55rem/1.8 "Space Grotesk";
  letter-spacing: 0.15em;
  transform: rotate(-9deg);
}
.portfolio-stream-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 58px;
  padding-bottom: 95px;
}
.portfolio-stream-end strong {
  font: 700 clamp(1.3rem, 2.4vw, 2.2rem) "Space Grotesk";
}
@media (max-width: 900px) {
  .portfolio-stream {
    padding-top: 95px;
  }
  .portfolio-stream-head {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 55px;
  }
  .project-band {
    min-height: 0;
  }
  .project-band-grid,
  .project-band-reverse {
    grid-template-columns: 1fr;
    padding-top: 88px;
    padding-bottom: 60px;
  }
  .project-band-reverse .project-band-copy,
  .project-band-reverse .project-composition {
    order: initial;
  }
  .project-composition {
    min-height: 470px;
  }
  .project-browser {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    transform: none !important;
  }
  .project-band-clean {
    background: linear-gradient(180deg, #fff 0 45%, #079b97 45%);
  }
  .project-band-no {
    left: 20px;
  }
  .afdes-disc,
  .float-clean-b {
    display: none;
  }
}
@media (max-width: 600px) {
  .project-band-copy h3 {
    font-size: clamp(3.2rem, 17vw, 5.3rem);
  }
  .project-composition {
    min-height: 360px;
  }
  .project-browser {
    padding: 8px;
    border-radius: 18px;
  }
  .browser-canvas {
    min-height: 300px;
    padding: 30px 22px;
  }
  .browser-canvas strong {
    font-size: 2.7rem;
  }
  .browser-canvas > span {
    left: 22px;
    bottom: 24px;
  }
  .float-clean-a {
    width: 90px;
    height: 90px;
    left: -5px;
    bottom: 0;
  }
  .portfolio-stream-end {
    align-items: flex-start;
    flex-direction: column;
  }
  .project-piano {
    height: 48%;
  }
  .clean-portrait {
    height: 61%;
  }
}

/* 2026 homepage middle redesign */
.home-intro {
  padding: 120px 0 94px;
  background: #fff;
}
.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 70px;
  align-items: end;
}
.home-intro-grid h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 5.7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}
.home-intro-grid p {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.75;
}
.home-disciplines {
  padding: 110px 0 130px;
  background: #f3f6f5;
}
.home-disciplines-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 52px;
}
.home-disciplines-head h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}
.home-disciplines-head p {
  margin: 0 0 8px;
}
.discipline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.discipline-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(270px, 1.08fr);
  min-height: 480px;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(18, 42, 35, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.discipline-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(18, 42, 35, 0.13);
}
.discipline-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 38px 20px 34px 36px;
}
.discipline-copy > span {
  color: var(--brand-dark);
  font: 800 0.68rem "Space Grotesk";
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.discipline-copy h3 {
  margin: 26px 0 16px;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.discipline-copy p {
  max-width: 440px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.68;
}
.discipline-copy b {
  display: inline-block;
  margin-top: auto;
  padding-top: 30px;
  font-size: 0.84rem;
}
.discipline-art {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.discipline-graphic {
  background: linear-gradient(145deg, #fff 0 50%, #111817 50%);
}
.graphic-art {
  background:
    radial-gradient(
      circle at 72% 28%,
      rgba(43, 196, 155, 0.3),
      transparent 30%
    ),
    linear-gradient(145deg, #13201c, #090d0c);
}
.graphic-art i {
  position: absolute;
}
.graphic-art i:nth-child(1) {
  width: 210px;
  height: 210px;
  border: 38px solid #2bc49b;
  border-radius: 50%;
  right: -26px;
  top: 26px;
}
.graphic-art i:nth-child(2) {
  width: 130px;
  height: 130px;
  background: #e9d1bb;
  left: 22%;
  bottom: 12%;
  transform: rotate(18deg);
}
.graphic-art i:nth-child(3) {
  width: 2px;
  height: 120%;
  background: rgba(255, 255, 255, 0.7);
  left: 55%;
  top: -10%;
  transform: rotate(24deg);
}
.graphic-art strong {
  position: absolute;
  left: 10%;
  top: 14%;
  color: #fff;
  font: 800 clamp(5rem, 9vw, 9rem) / 1 "Space Grotesk";
  letter-spacing: -0.08em;
}
.graphic-art small {
  position: absolute;
  right: 8%;
  bottom: 7%;
  color: #9cb3ac;
  letter-spacing: 0.16em;
}
.discipline-photo {
  background: #171717;
  color: #fff;
}
.discipline-photo .discipline-copy > span {
  color: #75e4c2;
}
.discipline-photo .discipline-copy p {
  color: #aebbb8;
}
.photo-art-home {
  background: linear-gradient(145deg, #211b1d, #b57856 58%, #1b1718);
}
.lens-ring-home {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  border: 28px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  box-shadow:
    0 0 0 16px rgba(0, 0, 0, 0.22),
    0 25px 70px rgba(0, 0, 0, 0.35);
}
.lens-ring-home:before,
.lens-ring-home:after,
.lens-ring-home i,
.lens-ring-home b {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}
.lens-ring-home:after {
  inset: 35%;
  background: #0b0f10;
}
.lens-ring-home i {
  inset: 48%;
  background: #64d9c1;
  border: 0;
}
.lens-ring-home b {
  inset: 65%;
  background: #050606;
  border: 0;
}
.photo-art-home small {
  position: absolute;
  left: 8%;
  top: 7%;
  color: #fff;
  letter-spacing: 0.1em;
}
.photo-art-home > span {
  position: absolute;
  right: 7%;
  bottom: 7%;
  color: #fff;
  font-size: 0.64rem;
  letter-spacing: 0.15em;
}
.discipline-web {
  background: #e9f7f2;
}
.web-art-home {
  background: linear-gradient(145deg, #0f1716, #1b2d29);
}
.web-monitor-home,
.web-tablet-home,
.web-phone-home {
  position: absolute;
  border: 7px solid #111;
  border-radius: 18px;
  background: #eefaf5;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}
.web-monitor-home {
  width: 68%;
  height: 57%;
  left: 7%;
  top: 15%;
}
.web-tablet-home {
  width: 34%;
  height: 47%;
  right: 8%;
  bottom: 8%;
}
.web-phone-home {
  width: 17%;
  height: 39%;
  right: 4%;
  top: 10%;
  border-width: 5px;
  border-radius: 16px;
}
.web-monitor-home i,
.web-tablet-home i,
.web-phone-home i {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, #fff 0 48%, #2bc49b 48%);
}
.web-monitor-home strong {
  position: absolute;
  left: 9%;
  top: 18%;
  font: 800 1.15rem "Space Grotesk";
}
.web-art-home small {
  position: absolute;
  left: 7%;
  bottom: 6%;
  color: #6fe0bd;
  letter-spacing: 0.15em;
}
.discipline-ui {
  background: #f3ece6;
}
.ui-art-home {
  background: linear-gradient(145deg, #f1d6c7, #fff);
}
.ui-phone {
  position: absolute;
  width: 155px;
  height: 300px;
  border: 9px solid #171b1d;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 45px rgba(32, 35, 38, 0.16);
  padding: 22px 15px;
}
.ui-phone i {
  display: block;
  border-radius: 12px;
  background: #e7efec;
  margin-bottom: 12px;
}
.ui-phone i:nth-child(1) {
  height: 74px;
  background: #2bc49b;
}
.ui-phone i:nth-child(2) {
  height: 40px;
}
.ui-phone i:nth-child(3) {
  height: 92px;
  background: #202326;
}
.ui-phone-a {
  left: 12%;
  top: 12%;
  transform: rotate(-7deg);
}
.ui-phone-b {
  right: 9%;
  bottom: 8%;
  transform: rotate(8deg);
}
.ui-flow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 140px;
  transform: translate(-50%, -50%);
}
.ui-flow:before,
.ui-flow:after {
  content: "";
  position: absolute;
  height: 2px;
  background: #1c8e70;
  transform-origin: left;
}
.ui-flow:before {
  width: 125px;
  left: 20px;
  top: 34px;
  transform: rotate(28deg);
}
.ui-flow:after {
  width: 112px;
  left: 70px;
  top: 98px;
  transform: rotate(-22deg);
}
.ui-flow span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #2bc49b;
}
.ui-flow span:nth-child(1) {
  left: 8px;
  top: 22px;
}
.ui-flow span:nth-child(2) {
  left: 92px;
  top: 73px;
}
.ui-flow span:nth-child(3) {
  right: 4px;
  top: 39px;
}
.discipline-code {
  background: #111817;
  color: #fff;
}
.discipline-code .discipline-copy > span {
  color: #67e0bd;
}
.discipline-code .discipline-copy p {
  color: #aebbb8;
}
.code-art-home {
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(43, 196, 155, 0.18),
      transparent 30%
    ),
    #09100f;
  padding: 52px 30px;
}
.code-window-home {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #101817;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.code-window-home > div {
  display: flex;
  gap: 7px;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.code-window-home > div i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7069;
}
.code-window-home > div i:nth-child(2) {
  background: #f6c85c;
}
.code-window-home > div i:nth-child(3) {
  background: #55ca7e;
}
.code-window-home pre {
  margin: 0;
  padding: 30px 22px;
  color: #dbe8e3;
  font: 600 0.82rem/1.9 monospace;
  white-space: pre-wrap;
}
.code-window-home pre span {
  color: #6ee4c0;
}
.code-window-home pre b {
  color: #ffd27c;
}
.code-window-home pre em {
  color: #9fb8ff;
}
.code-art-home small {
  position: absolute;
  right: 7%;
  bottom: 7%;
  color: #6ee4c0;
  letter-spacing: 0.14em;
}
.discipline-market {
  background: #f7f2ea;
}
.market-art-home {
  background: linear-gradient(145deg, #fff, #dff8ef);
}
.market-ring-home {
  position: absolute;
  left: 10%;
  top: 15%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: #18302a;
  color: #fff;
  box-shadow: 0 26px 55px rgba(18, 42, 35, 0.17);
}
.market-ring-home:before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px dashed #2bc49b;
  border-radius: 50%;
}
.market-ring-home strong {
  font: 800 2.8rem/1 "Space Grotesk";
}
.market-ring-home small {
  margin-top: 8px;
  color: #8bdcc3;
  letter-spacing: 0.14em;
}
.market-chart-home {
  position: absolute;
  left: 15%;
  right: 9%;
  bottom: 14%;
  height: 150px;
  display: flex;
  align-items: end;
  gap: 14px;
  border-bottom: 2px solid #1b2b27;
}
.market-chart-home i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: #2bc49b;
}
.market-chart-home i:nth-child(1) {
  height: 24%;
}
.market-chart-home i:nth-child(2) {
  height: 42%;
}
.market-chart-home i:nth-child(3) {
  height: 58%;
}
.market-chart-home i:nth-child(4) {
  height: 72%;
}
.market-chart-home i:nth-child(5) {
  height: 94%;
  background: #18302a;
}
.market-tags-home {
  position: absolute;
  right: 8%;
  top: 12%;
  display: grid;
  gap: 9px;
}
.market-tags-home span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(18, 42, 35, 0.08);
  font: 800 0.62rem "Space Grotesk";
  letter-spacing: 0.12em;
}
.home-process-section {
  padding: 120px 0;
  background: #fff;
}
.home-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
  align-items: start;
}
.home-process-copy {
  position: sticky;
  top: 120px;
}
.home-process-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}
.home-process-copy p {
  max-width: 590px;
}
.home-process-copy .button {
  margin-top: 22px;
}
.home-process-track {
  border-left: 1px solid var(--line);
}
.home-process-track article {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding: 34px 0 34px 34px;
  border-bottom: 1px solid var(--line);
}
.home-process-track article:before {
  content: "";
  position: absolute;
  left: -6px;
  top: 43px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2bc49b;
  box-shadow: 0 0 0 7px rgba(43, 196, 155, 0.14);
}
.home-process-track span {
  color: var(--brand-dark);
  font-weight: 800;
}
.home-process-track strong {
  display: block;
  font: 700 1.6rem "Space Grotesk";
}
.home-process-track small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}
.home-work-preview {
  padding: 120px 0;
  background: #111817;
  color: #fff;
}
.home-work-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.home-work-head h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.94;
}
.home-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.home-work-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.home-work-card:hover {
  transform: translateY(-5px);
  border-color: #2bc49b;
}
.home-work-card:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
}
.home-work-card > * {
  position: relative;
  z-index: 2;
}
.home-work-card span {
  color: #b7c4c0;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.home-work-card strong {
  display: block;
  margin-top: 10px;
  font: 700 clamp(2rem, 3vw, 3.5rem) / 0.96 "Space Grotesk";
}
.home-work-card i {
  position: absolute;
  right: 26px;
  top: 22px;
  font-style: normal;
  font-size: 1.4rem;
}
.work-maid:before {
  background:
    linear-gradient(145deg, transparent 0 38%, rgba(43, 196, 155, 0.22) 38%),
    radial-gradient(circle at 75% 25%, #2bc49b, transparent 38%);
}
.work-nina:before {
  background:
    radial-gradient(
      circle at 72% 20%,
      rgba(234, 178, 121, 0.55),
      transparent 36%
    ),
    linear-gradient(145deg, #2d1710, #6f422d);
}
.work-afdes:before {
  background: linear-gradient(145deg, #071827, #0d344a);
}
.work-afdes:after {
  content: "AFDES";
  position: absolute;
  right: -22px;
  top: 20px;
  color: rgba(101, 205, 242, 0.12);
  font: 800 5rem "Space Grotesk";
  transform: rotate(90deg);
}
@media (max-width: 1100px) {
  .discipline-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .discipline-art {
    min-height: 340px;
  }
  .home-process-grid {
    grid-template-columns: 1fr;
  }
  .home-process-copy {
    position: static;
  }
  .home-work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-work-card:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 850px) {
  .home-intro-grid,
  .home-disciplines-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .discipline-grid {
    grid-template-columns: 1fr;
  }
  .home-work-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-work-grid {
    grid-template-columns: 1fr;
  }
  .home-work-card:last-child {
    grid-column: auto;
  }
}
@media (max-width: 620px) {
  .home-intro {
    padding: 86px 0 70px;
  }
  .home-disciplines {
    padding: 80px 0 90px;
  }
  .discipline-panel {
    border-radius: 24px;
  }
  .discipline-copy {
    padding: 28px 22px 24px;
  }
  .discipline-copy h3 {
    font-size: clamp(2.15rem, 11vw, 3.5rem);
  }
  .discipline-art {
    min-height: 290px;
  }
  .lens-ring-home {
    width: 190px;
    height: 190px;
    border-width: 22px;
  }
  .ui-phone {
    width: 120px;
    height: 240px;
  }
  .web-monitor-home {
    width: 74%;
  }
  .web-tablet-home {
    width: 38%;
  }
  .home-process-section,
  .home-work-preview {
    padding: 88px 0;
  }
  .home-process-track article {
    grid-template-columns: 50px 1fr;
    padding-left: 24px;
  }
  .home-work-card {
    min-height: 260px;
  }
  .home-work-head .button {
    width: 100%;
  }
}

/* 2026-07 homepage discipline image upgrade */
.discipline-art {
  background: #111;
}
.discipline-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}
.discipline-art:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 14, 12, 0.06) 0%,
    rgba(8, 14, 12, 0.1) 36%,
    rgba(8, 14, 12, 0.34) 100%
  );
  z-index: 1;
}
.discipline-art .art-badge,
.discipline-art small {
  position: absolute;
  z-index: 2;
}
.art-badge {
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  color: #152522;
  font: 800 0.68rem "Space Grotesk";
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(18, 42, 35, 0.12);
}
.discipline-art small {
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 24, 23, 0.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font: 800 0.62rem "Space Grotesk";
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.graphic-art,
.photo-art-home,
.web-art-home,
.ui-art-home,
.code-art-home,
.market-art-home {
  background: none !important;
  padding: 0;
}
.graphic-art strong,
.graphic-art i,
.lens-ring-home,
.web-monitor-home,
.web-tablet-home,
.web-phone-home,
.ui-phone,
.ui-flow,
.code-window-home,
.market-ring-home,
.market-chart-home,
.market-tags-home,
.photo-art-home > span {
  display: none !important;
}
.discipline-graphic {
  background: linear-gradient(145deg, #fff 0 49%, #f4f7f6 49%);
}
.discipline-copy b {
  color: inherit;
}
.discipline-photo .art-badge,
.discipline-code .art-badge {
  background: rgba(255, 255, 255, 0.92);
  color: #132320;
}
.discipline-photo .discipline-copy b,
.discipline-code .discipline-copy b {
  color: #fff;
}
.discipline-ui .art-badge {
  background: rgba(255, 255, 255, 0.9);
}
.discipline-market .art-badge {
  background: rgba(255, 255, 255, 0.9);
}
.discipline-panel:hover .discipline-art img {
  transform: scale(1.04);
}

@media (max-width: 1100px) {
  .discipline-art {
    min-height: 360px;
  }
}
@media (max-width: 620px) {
  .art-badge {
    left: 14px;
    top: 14px;
    padding: 9px 12px;
    font-size: 0.62rem;
  }
  .discipline-art small {
    left: 14px;
    bottom: 14px;
    padding: 9px 12px;
    font-size: 0.58rem;
  }
}

/* 2026-07 photography card fix + tighter responsive grid */
.photo-art-home {
  background: linear-gradient(
    135deg,
    #0d1316 0%,
    #112125 48%,
    #24434d 100%
  ) !important;
}
.photo-art-home:before {
  background: linear-gradient(
    180deg,
    rgba(3, 6, 8, 0.08) 0%,
    rgba(3, 6, 8, 0.16) 34%,
    rgba(3, 6, 8, 0.28) 100%
  );
}
.photo-mini-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.photo-mini-camera {
  position: absolute;
  right: 7%;
  bottom: 12%;
  width: 72%;
  height: 58%;
  border-radius: 34px;
  background: linear-gradient(145deg, #1d2528, #0b0f11);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}
.photo-mini-camera:before {
  content: "";
  position: absolute;
  left: 8%;
  top: -10%;
  width: 34%;
  height: 18%;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(145deg, #232e32, #0d1113);
}
.photo-mini-camera:after {
  content: "";
  position: absolute;
  left: 16%;
  bottom: 22%;
  width: 22%;
  height: 18%;
  border-radius: 16px;
  background: linear-gradient(145deg, #0e1417, #1e2a2f);
}
.mini-cam-grip {
  position: absolute;
  right: -3%;
  top: 18%;
  width: 18%;
  height: 46%;
  border-radius: 26px;
  background: linear-gradient(145deg, #1f292d, #0b0f11);
}
.mini-cam-top {
  position: absolute;
  left: 42%;
  top: -7%;
  width: 24%;
  height: 10%;
  border-radius: 10px;
  background: linear-gradient(145deg, #252f33, #0f1518);
}
.mini-cam-button {
  position: absolute;
  right: 13%;
  top: 8%;
  width: 9%;
  height: 9%;
  border-radius: 50%;
  background: #e7c78a;
  box-shadow: 0 0 0 5px rgba(231, 199, 138, 0.14);
}
.mini-cam-lens {
  position: absolute;
  left: 32%;
  top: 16%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 38% 35%,
    #254b63 0%,
    #0a1115 32%,
    #16242b 62%,
    #050607 82%
  );
  box-shadow:
    0 0 0 16px #101619,
    0 0 0 30px #1f2b30,
    0 12px 28px rgba(0, 0, 0, 0.45);
}
.mini-cam-lens i,
.mini-cam-lens b,
.mini-cam-lens em {
  position: absolute;
  border-radius: 50%;
}
.mini-cam-lens i {
  inset: 22%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.mini-cam-lens b {
  inset: 40%;
  background: #58cde1;
  box-shadow: 0 0 28px rgba(88, 205, 225, 0.18);
}
.mini-cam-lens em {
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.photo-mini-ui {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #eaf5f2;
  font: 800 0.6rem "Space Grotesk";
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.photo-mini-ui.ui-top {
  left: 8%;
  top: 9%;
}
.photo-mini-ui.ui-right {
  right: 8%;
  top: 11%;
}
.mini-cam-reticle {
  position: absolute;
  left: 20%;
  top: 26%;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}
.mini-cam-reticle span,
.mini-cam-reticle i {
  position: absolute;
  background: rgba(255, 255, 255, 0.34);
}
.mini-cam-reticle span {
  left: 50%;
  top: 14%;
  bottom: 14%;
  width: 1px;
  transform: translateX(-50%);
}
.mini-cam-reticle i {
  top: 50%;
  left: 14%;
  right: 14%;
  height: 1px;
  transform: translateY(-50%);
}

@media (max-width: 980px) {
  .discipline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .discipline-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .discipline-art {
    min-height: 320px;
  }
  .discipline-copy {
    padding: 28px 22px 24px;
  }
  .discipline-copy h3 {
    font-size: clamp(2rem, 4.8vw, 3.15rem);
  }
}
@media (max-width: 760px) {
  .discipline-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .discipline-art {
    min-height: 270px;
  }
  .photo-mini-camera {
    width: 76%;
    height: 58%;
    right: 6%;
    bottom: 10%;
  }
  .mini-cam-reticle {
    width: 52px;
    height: 52px;
    left: 18%;
    top: 22%;
  }
}

/* 2026-07 hotfix: clean photography card + tighter mobile grid */
.photo-art-home img {
  object-position: 56% center;
}
.photo-art-home .art-badge {
  background: rgba(255, 255, 255, 0.92);
  color: #132320;
}
.photo-art-home small {
  background: rgba(12, 18, 20, 0.76);
}
.photo-mini-scene,
.photo-mini-camera,
.mini-cam-reticle,
.photo-mini-ui {
  display: none !important;
}

@media (max-width: 760px) {
  .discipline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .discipline-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL PHOTOGRAPHY CARD CLEANUP */
.photo-art-home {
  position: relative;
  padding: 0 !important;
  background: #111 !important;
  overflow: hidden;
}

.photo-art-home::before,
.photo-art-home::after {
  content: none !important;
  display: none !important;
}

.photo-art-home img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transform: none !important;
  filter: none !important;
}

.photo-art-home:hover img,
.discipline-panel:hover .photo-art-home img {
  transform: scale(1.025) !important;
}

.photo-art-home > span,
.photo-art-home > small {
  position: absolute;
  z-index: 3;
}

.photo-art-home .photo-art-badge {
  left: 18px !important;
  right: auto !important;
  top: 18px !important;
  bottom: auto !important;
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #132320 !important;
  font: 800 0.68rem "Space Grotesk" !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 26px rgba(18, 42, 35, 0.12) !important;
  backdrop-filter: blur(8px);
}

.photo-art-home .photo-art-caption {
  left: 18px !important;
  right: auto !important;
  bottom: 18px !important;
  top: auto !important;
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  background: rgba(12, 18, 20, 0.78) !important;
  color: #fff !important;
  font: 800 0.62rem "Space Grotesk" !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  backdrop-filter: blur(8px);
}

.photo-mini-scene,
.photo-mini-camera,
.photo-mini-ui,
.mini-cam-reticle,
.mini-cam-grip,
.mini-cam-top,
.mini-cam-button,
.mini-cam-lens,
.lens-ring-home {
  display: none !important;
}

@media (max-width: 760px) {
  .discipline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .discipline-grid {
    grid-template-columns: 1fr;
  }

  .photo-art-home .photo-art-badge {
    left: 14px !important;
    top: 14px !important;
    padding: 9px 12px !important;
    font-size: 0.62rem !important;
  }

  .photo-art-home .photo-art-caption {
    left: 14px !important;
    bottom: 14px !important;
    padding: 9px 12px !important;
    font-size: 0.58rem !important;
  }
}

/* Ensure responsive picture fallbacks inherit the existing art frame. */
.discipline-art picture {
  display: block;
  width: 100%;
  height: 100%;
}
