:root {
  --ink: #08162f;
  --muted: #5f6778;
  --line: #e6e8ee;
  --surface: #ffffff;
  --soft: #f6f4fb;
  --purple: #7b3fd1;
  --purple-dark: #4d2097;
  --green: #22c55e;
  --blue: #0b64d8;
  --shadow: 0 24px 80px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family:
    Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(8, 22, 47, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: auto;
  max-width: 150px;
  max-height: 58px;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--ink);
}

.header-cta,
.primary,
.secondary,
.lead-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
}

.header-cta,
.primary,
.lead-form button {
  border: 0;
  background: var(--purple);
  color: #fff;
  box-shadow: 0 12px 28px rgba(123, 63, 209, 0.24);
}

.header-cta {
  padding: 0 18px;
}

.primary,
.secondary {
  padding: 0 22px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: min(660px, calc(100vh - 78px));
  padding: clamp(30px, 5vw, 64px) clamp(18px, 5vw, 72px) clamp(36px, 5vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(123, 63, 209, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h1,
h2 {
  overflow-wrap: break-word;
}

.hero-copy,
.fashion-copy,
.form-copy,
.section-heading {
  min-width: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
}

.lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span,
.segment-list span,
.integration-grid span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-strip span {
  padding: 0 14px;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: auto 4% -6% 4%;
  height: 28%;
  border-radius: 50%;
  background: rgba(123, 63, 209, 0.2);
  content: "";
  filter: blur(40px);
}

.hero-media img {
  position: relative;
  width: 100%;
  border: 1px solid rgba(123, 63, 209, 0.15);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.problem,
.feature-band,
.fashion,
.segments,
.integrations,
.form-section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.problem {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  background: #fff;
}

.problem-grid,
.feature-grid {
  display: grid;
  gap: 14px;
}

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

.problem-grid article,
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.problem-grid article {
  padding: 24px;
}

.problem-grid p,
.feature-grid p,
.fashion-copy p,
.form-copy p,
footer p {
  color: var(--muted);
}

.feature-band {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

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

.feature-grid article {
  padding: 26px;
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.fashion {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #27324a;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.fashion-panel img {
  border: 1px solid rgba(8, 22, 47, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.segments {
  background: #07152f;
  color: #fff;
}

.segments .eyebrow {
  color: #8ee2b2;
}

.segments h2 {
  max-width: 760px;
}

.segment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.segment-list span {
  padding: 0 16px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.integrations {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  background: #fff;
}

.integration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.integration-grid span {
  padding: 0 15px;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("assets/modershop-hero.png") center / cover;
}

.contact-note {
  display: grid;
  gap: 4px;
  max-width: 420px;
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--purple);
  background: #fff;
  box-shadow: 0 12px 36px rgba(16, 24, 40, 0.08);
}

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

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #27324a;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9dde7;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.wide,
.lead-form button,
.form-feedback {
  grid-column: 1 / -1;
}

.lead-form button {
  min-height: 52px;
  cursor: pointer;
  font-size: 1rem;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--purple-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

footer img {
  width: 138px;
}

footer p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 0.9rem;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .problem,
  .fashion,
  .integrations,
  .form-section {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
  }

  .brand img {
    max-width: 112px;
    max-height: 48px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    max-width: 330px;
    font-size: 1.95rem;
  }

  .hero-copy,
  .hero-copy .lead {
    max-width: 330px;
  }

  .hero-actions,
  .primary,
  .secondary {
    width: 100%;
  }

  .problem-grid,
  .feature-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .fashion,
  .form-section {
    gap: 24px;
  }

  footer {
    display: grid;
  }

  footer p {
    text-align: left;
  }
}
