:root {
  color-scheme: dark;
  --bg: #070707;
  --bg-soft: rgba(255, 255, 255, 0.03);
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text: #f8f2ed;
  --muted: #bbb0aa;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #ff7a1a;
  --accent-soft: rgba(255, 122, 26, 0.16);
  --accent-glow: rgba(255, 122, 26, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 122, 26, 0.12), transparent 28%),
    linear-gradient(180deg, #090909 0%, #060606 52%, #0a0a0a 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-noise,
.page-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -2;
}

.page-noise {
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
}

.page-glow {
  z-index: -3;
}

.page-glow__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  background: radial-gradient(circle, rgba(255, 122, 26, 0.32), rgba(255, 122, 26, 0));
  animation: floatGlow 12s ease-in-out infinite;
}

.page-glow__orb--one {
  top: 6%;
  left: -8%;
  width: 20rem;
  height: 20rem;
}

.page-glow__orb--two {
  right: -6%;
  top: 32%;
  width: 22rem;
  height: 22rem;
  animation-delay: -4s;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: clamp(2.35rem, 4.6vw, 3.5rem) 0;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: #f7a96b;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-tag::before,
.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.7rem;
}

.section-heading h2,
.split-layout h2,
.brand-block h2,
.cta-panel h2,
.why-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p,
.section-copy,
.brand-block p,
.cta-panel p,
.why-card p,
.service-card p,
.project-card p,
.contact-card span,
.contact-form__note {
  color: var(--muted);
}

.hero {
  position: relative;
  padding: 1.2rem 0 clamp(3.2rem, 8vw, 5.1rem);
}

.hero__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0 1.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand__copy strong {
  font-size: 0.95rem;
  font-weight: 700;
}

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

.availability-pill {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.hero__layout {
  display: grid;
  gap: 1.55rem;
  align-items: stretch;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2rem;
}

.hero h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.25rem, 10vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.hero__lead {
  max-width: 36rem;
  margin: 1.35rem 0 0;
  font-size: clamp(1.05rem, 2.5vw, 1.24rem);
  color: #d8cac2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.16) 50%, transparent 100%);
  opacity: 0;
  transform: translateX(-24%);
  transition: opacity 200ms ease, transform 280ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(24%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, #ff7a1a 0%, #ff9548 100%);
  color: #1d0c00;
  box-shadow: 0 14px 40px rgba(255, 122, 26, 0.3);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
}

.button--full {
  width: 100%;
}

.hero__supporting {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__supporting span {
  position: relative;
  padding-left: 1rem;
}

.hero__supporting span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 14px var(--accent-glow);
}

.hero-signature {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  width: min(100%, 39rem);
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at right, rgba(255, 122, 26, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.hero-signature__avatar-wrap {
  width: 8rem;
  height: 8rem;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.hero-signature__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transform: scale(1.52);
}

.hero-signature__copy {
  display: grid;
  gap: 0.28rem;
}

.hero-signature__copy strong {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.hero-signature__copy span {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.5;
}

.hero__visual {
  position: relative;
  height: 100%;
}

.system-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 1.2rem;
  border-radius: calc(var(--radius) + 0.35rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(12, 12, 12, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.system-panel::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.2), transparent 70%);
}

.system-panel__header {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f4d2bb;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.system-panel__live-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #ff9f58;
  box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.55);
  animation: pulse 1.9s infinite;
}

.system-panel__stats {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.25rem;
}

.metric-card {
  min-height: 7.2rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.3rem);
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.system-panel__flow {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.flow-node {
  position: relative;
  padding: 1rem 1rem 1rem 1.25rem;
  border-left: 1px solid rgba(255, 122, 26, 0.45);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.flow-node::before {
  content: "";
  position: absolute;
  left: -0.33rem;
  top: 1.25rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(255, 122, 26, 0.5);
}

.flow-node__label {
  display: block;
  font-weight: 700;
}

.flow-node__text {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.proof-strip {
  padding-bottom: 0.15rem;
}

.problem-solution,
.services,
.projects,
.differentiation,
.personal-brand,
.cta-section,
.contact {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.proof-strip__inner {
  display: grid;
  gap: 0.8rem;
}

.proof-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #efe1d6;
  font-weight: 600;
}

.proof-badge__icon {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a1a, #ffaf6e);
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.35);
}

.split-layout,
.contact-layout {
  display: grid;
  gap: 1.15rem;
}

.split-layout__column,
.service-card,
.project-card,
.brand-block,
.cta-panel,
.contact-card,
.contact-form,
.why-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.split-layout__column {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.35rem, 3.2vw, 2rem);
}

.section-copy {
  margin: 0;
}

.problem-art {
  margin-top: auto;
  padding-top: 0.25rem;
}

.problem-art img {
  width: 100%;
  min-height: 12.5rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
  object-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

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

.benefit-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.4);
}

.services-grid,
.projects-grid,
.why-points {
  display: grid;
  gap: 0.9rem;
}

.service-card,
.project-card {
  position: relative;
  padding: 1.4rem;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 200ms ease;
}

.service-card:hover,
.service-card:focus-within,
.project-card:hover,
.project-card:focus-within,
.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 26, 0.28);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 122, 26, 0.08);
}

.service-card:hover::before,
.service-card:focus-within::before,
.project-card:hover::before,
.project-card:focus-within::before {
  opacity: 1;
}

.service-card__index,
.project-card__label,
.contact-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.12);
  color: #ffb27a;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.service-card h3,
.project-card h3,
.why-point h3 {
  margin: 1.05rem 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  color: #ffd6b6;
  font-weight: 700;
}

.text-link::after {
  content: "->";
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.why-card {
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.why-card__intro {
  max-width: 44rem;
}

.why-points {
  margin-top: 1.8rem;
}

.why-point {
  padding: 1.2rem 1.2rem 1.3rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-point p {
  margin: 0;
}

.project-preview {
  margin: -0.2rem -0.2rem 1.25rem;
  padding: 0.45rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.14), transparent 40%),
    rgba(255, 255, 255, 0.025);
}

.project-preview__frame {
  min-height: 11.8rem;
  padding: 0.9rem;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.project-preview__toolbar {
  display: flex;
  gap: 0.35rem;
}

.project-preview__toolbar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.project-preview__toolbar span:first-child {
  background: rgba(255, 122, 26, 0.75);
}

.project-preview__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.project-preview__stat,
.project-preview__cards span {
  padding: 0.75rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.project-preview__stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}

.project-preview__stat span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.project-preview__rows {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.project-preview__row,
.project-preview__form,
.project-preview__badge,
.project-preview__headline,
.project-preview__cta-row span {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.project-preview__row {
  height: 0.85rem;
}

.project-preview__row--half {
  width: 58%;
}

.project-preview__panel {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.project-preview__form {
  height: 3.4rem;
  border-radius: 1rem;
}

.project-preview__cards {
  display: grid;
  gap: 0.6rem;
}

.project-preview__cards span {
  min-height: 2.85rem;
}

.project-preview__bars {
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 5.8rem;
  margin-top: 1rem;
}

.project-preview__bars span {
  flex: 1;
  border-radius: 0.6rem 0.6rem 0 0;
  background: linear-gradient(180deg, rgba(255, 149, 72, 0.92), rgba(255, 122, 26, 0.14));
}

.project-preview__bars span:nth-child(1) {
  height: 38%;
}

.project-preview__bars span:nth-child(2) {
  height: 72%;
}

.project-preview__bars span:nth-child(3) {
  height: 54%;
}

.project-preview__bars span:nth-child(4) {
  height: 88%;
}

.project-preview__bars span:nth-child(5) {
  height: 63%;
}

.project-preview__hero {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.14), transparent 45%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-preview__badge {
  width: 5.2rem;
  height: 1.35rem;
  background: rgba(255, 122, 26, 0.25);
}

.project-preview__headline {
  height: 1rem;
  margin-top: 0.9rem;
}

.project-preview__headline--short {
  width: 70%;
}

.project-preview__cta-row {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.project-preview__cta-row span {
  width: 5rem;
  height: 2rem;
}

.project-preview--pipeline .project-preview__frame {
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.16), transparent 42%),
    #0b0b0b;
}

.project-preview--crm .project-preview__cards span:nth-child(2) {
  background: rgba(255, 122, 26, 0.13);
}

.project-preview--landing .project-preview__cta-row span:first-child {
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.9), rgba(255, 149, 72, 0.78));
}

.brand-block,
.cta-panel {
  text-align: center;
  padding: clamp(1.8rem, 5vw, 3rem);
}

.brand-story {
  display: grid;
  gap: 1.5rem;
}

.brand-story__media,
.brand-story__copy {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.brand-story__media {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  align-content: start;
}

.demo-archive {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0.95rem;
  height: 100%;
}

.demo-archive__header {
  display: grid;
  gap: 0.3rem;
  padding: 0.25rem;
}

.demo-archive__eyebrow {
  color: #ffb27a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.demo-archive__header strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.demo-archive__header p {
  margin: 0;
  color: var(--muted);
}

.demo-archive__list {
  display: grid;
  gap: 0.75rem;
  max-height: 28rem;
  padding-right: 0.25rem;
  overflow: auto;
}

.demo-archive__list::-webkit-scrollbar {
  width: 0.45rem;
}

.demo-archive__list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.35);
}

.demo-entry {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at right, rgba(255, 122, 26, 0.09), transparent 35%),
    rgba(255, 255, 255, 0.03);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.demo-entry:hover,
.demo-entry:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 26, 0.26);
  background:
    radial-gradient(circle at right, rgba(255, 122, 26, 0.14), transparent 35%),
    rgba(255, 255, 255, 0.045);
}

.demo-entry__copy {
  display: grid;
  gap: 0.28rem;
}

.demo-entry__label {
  color: #ffb27a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 700;
}

.demo-entry__copy strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.demo-entry__copy span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.demo-entry__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.13);
  color: #ffd6b6;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-story__copy {
  padding: clamp(1.8rem, 5vw, 3rem);
}

.brand-story__copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.brand-story__copy p {
  color: var(--muted);
}

.brand-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.brand-highlights span {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f3e2d5;
  font-weight: 600;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -50% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.22), transparent 72%);
}

.contact-layout {
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: block;
  padding: 1.3rem;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-card strong {
  display: block;
  margin: 0.95rem 0 0.25rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 4vw, 2rem);
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8d817a;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 122, 26, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.contact-form textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-form--focused {
  animation: focusPulse 600ms ease;
}

.case-study-page {
  background:
    radial-gradient(circle at top, rgba(255, 122, 26, 0.14), transparent 24%),
    linear-gradient(180deg, #090909 0%, #060606 52%, #0a0a0a 100%);
}

.case-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 7, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.case-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.case-study {
  padding-bottom: 3rem;
}

.case-hero {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.case-hero__layout,
.case-grid {
  display: grid;
  gap: 1.4rem;
}

.case-hero__content,
.case-hero__visual,
.case-shell {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.case-hero__content,
.case-shell {
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.case-hero__content h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.case-hero__lead {
  margin: 1.2rem 0 0;
  max-width: 42rem;
  color: #d7c9c1;
  font-size: 1.06rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #ffd6b6;
}

.case-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.case-kicker span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #f3e2d5;
  font-size: 0.88rem;
}

.case-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.case-hero__visual {
  padding: 1.1rem;
}

.case-note {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.9rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.case-note strong {
  color: #ffb27a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.case-note span {
  color: var(--muted);
}

.case-shell h2 {
  margin: 0 0 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: -0.04em;
}

.case-shell p {
  color: var(--muted);
}

.case-metrics,
.case-steps,
.stack-list {
  display: grid;
  gap: 0.9rem;
}

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

.case-metric,
.case-step,
.stack-list li {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.case-metric strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.case-metric span,
.case-step p,
.stack-list li span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
}

.case-step strong,
.stack-list li strong {
  display: block;
  color: #f3e2d5;
}

.stack-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer {
  padding: 1.2rem 0 2rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #948882;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@media (min-width: 720px) {
  .proof-strip__inner,
  .services-grid,
  .projects-grid,
  .why-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .contact-layout,
  .brand-story,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (min-width: 980px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
    gap: 1.85rem;
  }

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

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

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

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

  .case-hero__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: start;
  }
}

@media (max-width: 719px) {
  .hero__topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .availability-pill {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .system-panel__stats {
    grid-template-columns: 1fr;
  }

  .project-preview__stats,
  .case-metrics {
    grid-template-columns: 1fr;
  }

  .case-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-hero__actions .button {
    width: 100%;
  }

  .hero-signature {
    grid-template-columns: 6.2rem minmax(0, 1fr);
    align-items: flex-start;
  }

  .hero-signature__avatar-wrap {
    width: 6.2rem;
    height: 6.2rem;
  }

  .demo-entry {
    flex-direction: column;
  }

  .demo-entry__arrow {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.06);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 122, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 26, 0);
  }
}

@keyframes focusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.18);
  }
  100% {
    box-shadow: 0 0 0 18px rgba(255, 122, 26, 0);
  }
}
