:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #68756e;
  --paper: #f7f0e5;
  --line: #cfc1ab;
  --card: rgba(255, 255, 255, 0.72);
  --teal: #0f766e;
  --rust: #b95735;
  --gold: #c69636;
  --blue: #365f8f;
  --forest: #3f6f52;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(247, 240, 229, 0.96), rgba(229, 239, 232, 0.94) 48%, rgba(246, 222, 205, 0.94)),
    repeating-linear-gradient(90deg, rgba(23, 32, 29, 0.04) 0 1px, transparent 1px 84px);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 42px;
  border-bottom: 1px solid rgba(207, 193, 171, 0.82);
  background: rgba(247, 240, 229, 0.86);
  backdrop-filter: blur(14px);
}

.brand,
nav,
.kicker,
.mock-browser,
.site-hero small,
.trust-strip,
.service-matrix small,
.case-preview small,
.sub-preview span,
.phone-preview,
.asset-grid,
.figma-board,
.evidence-section dt {
  font-family: Arial, sans-serif;
}

.brand {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

nav a {
  text-decoration: none;
}

main {
  padding: 0 42px 70px;
}

.result-hero {
  min-height: 94vh;
  padding: 62px 0 46px;
  border-bottom: 1px solid var(--line);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 1100px;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font: 900 22px/1.08 Arial, sans-serif;
}

.lead,
.site-hero p,
.case-preview p,
.support-section p,
.evidence-section dd {
  color: var(--muted);
  font: 16px/1.62 Arial, sans-serif;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  gap: 16px;
  align-items: start;
}

.main-preview,
.sub-preview,
.phone-preview,
.asset-grid article,
.figma-board article,
.support-section article {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 18px 70px rgba(48, 38, 27, 0.08);
}

.main-preview {
  padding: 16px;
  min-height: 820px;
}

.mock-browser {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.mock-browser span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.mock-browser strong {
  margin-left: 8px;
}

.site-hero {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.82fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: linear-gradient(135deg, #edf6ef, #f4dfd0);
  border: 1px solid rgba(207, 193, 171, 0.75);
}

.site-hero small,
.service-matrix small,
.case-preview small {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
}

.site-hero h2 {
  margin: 10px 0 16px;
  font-size: clamp(44px, 6vw, 76px);
}

.site-hero img,
.case-preview img,
.sub-preview img,
.asset-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.hero-actions b {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  background: var(--teal);
  color: white;
  font: 900 14px/1 Arial, sans-serif;
}

.hero-actions b + b {
  background: white;
  color: var(--teal);
  border: 1px solid var(--teal);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.trust-strip div,
.service-card,
.process-row div {
  padding: 15px;
  border: 1px solid rgba(207, 193, 171, 0.78);
  background: rgba(255, 255, 255, 0.62);
}

.trust-strip b {
  display: block;
  color: var(--rust);
  font-size: 24px;
  line-height: 1;
}

.trust-strip span,
.service-card span,
.process-row span {
  color: var(--muted);
  font-size: 13px;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.service-matrix header {
  grid-column: 1 / -1;
  padding: 22px 0 6px;
}

.service-card b {
  display: block;
  margin-bottom: 24px;
  font: 900 18px/1.1 Arial, sans-serif;
}

.case-preview {
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 10px;
  padding: 18px;
  border: 1px solid rgba(207, 193, 171, 0.78);
  background: #e9eef4;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.process-row b {
  display: block;
  color: var(--gold);
  font: 900 20px/1 Arial, sans-serif;
}

.bottom-cta {
  margin-top: 10px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: var(--ink);
  color: white;
}

.bottom-cta strong {
  font: 900 22px/1.15 Arial, sans-serif;
}

.bottom-cta span {
  color: rgba(255, 255, 255, 0.72);
  font: 800 13px/1.3 Arial, sans-serif;
}

.side-previews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sub-preview {
  min-height: 260px;
  padding: 16px;
}

.sub-preview span {
  display: block;
  margin-bottom: 10px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 900;
}

.sub-preview strong {
  display: block;
  min-height: 56px;
  margin-bottom: 14px;
  font: 900 18px/1.14 Arial, sans-serif;
}

.phone-preview {
  grid-column: 1 / -1;
  max-width: 390px;
  width: 100%;
  justify-self: center;
  min-height: 530px;
  padding: 18px;
  border-radius: 28px;
  background: #121917;
  color: white;
}

.phone-top {
  width: 76px;
  height: 8px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-preview section {
  margin-top: 11px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.phone-preview small {
  color: #f1c66b;
  font-weight: 900;
}

.phone-preview h3 {
  margin: 8px 0 12px;
  color: white;
}

.phone-preview button {
  width: 100%;
  height: 42px;
  border: 0;
  background: #f1c66b;
  color: #121917;
  font: 900 14px/1 Arial, sans-serif;
}

.phone-card b {
  display: block;
  margin-bottom: 4px;
}

.phone-card span {
  color: rgba(255, 255, 255, 0.68);
}

.asset-section,
.figma-section,
.support-section,
.evidence-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.asset-grid article {
  min-height: 300px;
  padding: 16px;
}

.asset-grid b {
  display: block;
  margin: 16px 0 7px;
  font: 900 19px/1.1 Arial, sans-serif;
}

.asset-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.figma-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.figma-board article {
  min-height: 150px;
  padding: 18px;
}

.figma-board b {
  display: block;
  margin-bottom: 30px;
  color: var(--teal);
  font-size: 14px;
}

.figma-board span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.support-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.support-section article {
  min-height: 200px;
  padding: 20px;
}

.evidence-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
}

.evidence-section dl {
  margin: 0;
}

.evidence-section dl div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.evidence-section dt {
  color: var(--rust);
  font-weight: 900;
}

.evidence-section dd {
  margin: 0;
}

@media (max-width: 1180px) {
  .intro,
  .showcase-grid,
  .evidence-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 880px) {
  .site-hero,
  .case-preview,
  .asset-grid,
  .figma-board,
  .support-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-matrix,
  .trust-strip,
  .process-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 18px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  main {
    padding: 0 18px 52px;
  }

  h1 {
    font-size: 40px;
  }

  .result-hero {
    padding-top: 44px;
  }

  .site-hero,
  .case-preview,
  .asset-grid,
  .figma-board,
  .support-section,
  .side-previews,
  .service-matrix,
  .trust-strip,
  .process-row {
    grid-template-columns: 1fr;
  }

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

  .evidence-section dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
