:root {
  --ink: #111827;
  --muted: #536173;
  --paper: #f5f7fb;
  --white: #ffffff;
  --line: #dde5ef;
  --blue: #1268d9;
  --blue-dark: #083f8c;
  --mint: #18a884;
  --coral: #f05d4f;
  --amber: #f3b345;
  --black: #03070d;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
  --max: 1920px;
  --readable: 980px;
  --page-pad: clamp(18px, 8vw, 180px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 9px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 14px var(--page-pad);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(221, 229, 239, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border: 3px solid var(--mint);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  overflow: hidden;
  max-width: 30ch;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue-dark);
  background: #eaf3ff;
}

.header-cta,
.button,
.lead-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: clamp(680px, calc(100vh - 75px), 920px);
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.96), rgba(3, 7, 13, 0.76) 48%, rgba(3, 7, 13, 0.26)),
    linear-gradient(0deg, rgba(3, 7, 13, 0.72), rgba(3, 7, 13, 0.18));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(78px, 9vw, 150px) var(--page-pad);
}

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

.pill {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 26px;
  padding: 9px 14px;
  color: #d9e6f5;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

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

h1 {
  max-width: var(--readable);
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7.2vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero p {
  max-width: 760px;
  color: #d9e6f5;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero-meta span {
  padding: 10px 13px;
  color: #d9e6f5;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 800;
}

.button {
  padding: 0 22px;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: none;
  margin-inline: auto;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip span {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: var(--white);
  font-weight: 900;
  text-align: center;
}

.proof-strip strong {
  color: var(--blue);
  font-size: 0.82rem;
}

.section,
.page-hero,
.cta-band {
  width: 100%;
  margin-inline: auto;
  padding: clamp(60px, 8vw, 120px) var(--page-pad);
}

.section p,
.page-hero p,
.cta-band p {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-grid,
.process-section,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 7vw, 140px);
  align-items: start;
}

.intro-grid {
  padding-block: clamp(62px, 7vw, 105px);
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.intro-copy p {
  margin-bottom: 0;
}

.showcase-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.1fr);
  gap: clamp(36px, 8vw, 150px);
  align-items: center;
  max-width: none;
  width: 100%;
  color: var(--white);
  background: var(--black);
  padding-block: clamp(78px, 7vw, 115px);
}

.showcase-copy {
  justify-self: end;
  max-width: 620px;
}

.showcase-band h2 {
  color: var(--white);
}

.showcase-band p {
  color: #c4d2e3;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--mint);
  font-weight: 950;
}

.device-photo-stage {
  position: relative;
  justify-self: stretch;
  min-height: clamp(420px, 34vw, 620px);
}

.macbook-photo,
.iphone-photo {
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.macbook-photo {
  width: min(100%, 760px);
  aspect-ratio: 16 / 10;
  margin-left: auto;
}

.iphone-photo {
  position: absolute;
  left: 0;
  bottom: 34px;
  width: clamp(170px, 17vw, 260px);
  aspect-ratio: 9 / 16;
  border: 10px solid var(--black);
}

.device-note {
  position: absolute;
  right: clamp(14px, 3vw, 42px);
  bottom: 0;
  display: grid;
  max-width: 330px;
  gap: 4px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

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

.services-panel,
.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 140px);
  align-items: start;
}

.service-rows {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-rows article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-rows span {
  color: var(--blue);
  font-weight: 950;
}

.service-rows h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

.work-preview {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  color: var(--white);
  background: var(--black);
}

.work-preview h2 {
  max-width: 920px;
  color: var(--white);
}

.work-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.work-preview-grid article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.work-preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92);
}

.work-preview-grid h3,
.work-preview-grid p {
  padding-inline: 22px;
}

.work-preview-grid h3 {
  margin-top: 22px;
  color: var(--white);
}

.work-preview-grid p {
  padding-bottom: 24px;
  color: #c4d2e3;
}

.services-grid,
.work-grid,
.pricing-grid,
.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.services-grid {
  padding-top: clamp(54px, 5.5vw, 84px);
  padding-bottom: clamp(32px, 3.5vw, 54px);
}

.services-grid article,
.work-card,
.price-card,
.note-grid > div {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.07);
}

.services-grid article:nth-child(1),
.work-card:nth-child(1) {
  border-top: 5px solid var(--blue);
}

.services-grid article:nth-child(2),
.work-card:nth-child(2) {
  border-top: 5px solid var(--coral);
}

.services-grid article:nth-child(3),
.work-card:nth-child(3) {
  border-top: 5px solid var(--mint);
}

.card-index {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 950;
}

.process-list {
  display: grid;
  gap: 14px;
  padding-left: 0;
  list-style: none;
}

.process-section {
  padding-top: clamp(32px, 3.5vw, 54px);
  padding-bottom: clamp(68px, 7vw, 110px);
}

.process-list li {
  display: grid;
  gap: 4px;
  padding: 22px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.trust-section h2 {
  color: var(--white);
}

.trust-section p {
  color: #c4d2e3;
}

.trust-copy {
  display: grid;
  gap: 30px;
}

blockquote {
  margin: 0;
  padding-left: 24px;
  color: var(--white);
  border-left: 5px solid var(--mint);
  font-size: clamp(1.55rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}

.process-list strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.cta-band {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--black);
  padding-block: clamp(72px, 7vw, 110px);
}

.cta-band h2 {
  max-width: 900px;
  margin-bottom: 10px;
  color: var(--white);
}

.cta-band p {
  color: #c4d2e3;
}

.page-hero {
  max-width: none;
  color: var(--white);
  background: var(--black);
  text-align: center;
}

.page-hero h1 {
  max-width: var(--readable);
  margin-inline: auto;
  color: var(--white);
  font-size: clamp(2.75rem, 6vw, 6.2rem);
}

.page-hero p {
  max-width: 760px;
  margin-inline: auto;
  color: #c4d2e3;
}

.success-page,
.contact-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--black);
}

.success-page .site-header,
.contact-page .site-header {
  position: static;
}

.success-page main,
.contact-page main {
  display: grid;
  min-height: 0;
  background: var(--black);
}

.contact-page .contact-hero {
  min-height: 100%;
  align-items: center;
  padding-block: clamp(72px, 8vh, 130px);
}

.success-hero {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding-block: clamp(90px, 12vh, 180px);
}

.success-hero h1 {
  max-width: 920px;
}

.mock-browser {
  display: grid;
  gap: 12px;
  min-height: 220px;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 8px;
  background: #111827;
}

.mock-browser span {
  width: 42%;
  height: 12px;
  border-radius: 8px;
  background: var(--mint);
}

.mock-browser strong {
  align-self: end;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.1;
}

.mock-browser em {
  height: 52px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.tradie-card .mock-browser {
  background: linear-gradient(135deg, #0d4f86, #111827);
}

.cafe-card .mock-browser {
  background: linear-gradient(135deg, #f05d4f, #111827);
}

.cleaner-card .mock-browser {
  background: linear-gradient(135deg, #18a884, #111827);
}

.pricing-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card.featured {
  border-top: 5px solid var(--blue);
}

.price-card .button {
  margin-top: auto;
}

.badge {
  width: fit-content;
  padding: 7px 10px;
  color: var(--blue-dark);
  background: #eaf3ff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 950;
}

.price {
  display: block;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1;
}

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

.contact-hero {
  max-width: none;
  text-align: left;
}

.contact-hero h1 {
  margin-inline: 0;
}

.contact-hero p {
  margin-inline: 0;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--mint);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hidden-field {
  display: none;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(18, 104, 217, 0.14);
}

.lead-form button {
  color: var(--white);
  background: var(--blue);
}

.lead-form button:disabled {
  opacity: 0.75;
  cursor: default;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px var(--page-pad);
  color: #c9d7e8;
  background: var(--black);
  font-size: 0.92rem;
}

footer a {
  color: inherit;
}

@media (min-width: 1600px) {
  .intro-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.72fr);
  }

  .process-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(560px, 0.78fr);
  }

  .cta-band {
    min-height: 360px;
  }

  .services-grid,
  .work-grid,
  .work-preview-grid {
    gap: 24px;
  }

  .services-grid article,
  .work-card,
  .price-card,
  .note-grid > div {
    padding: 32px;
  }
}

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

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .intro-grid,
  .process-section,
  .contact-hero,
  .showcase-band,
  .services-panel,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    justify-self: stretch;
    max-width: none;
  }

  .services-grid,
  .work-grid,
  .work-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand strong {
    max-width: 22ch;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav a {
    padding-inline: 10px;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 11, 18, 0.88), rgba(7, 11, 18, 0.58)),
      linear-gradient(0deg, rgba(7, 11, 18, 0.52), rgba(7, 11, 18, 0.12));
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.25rem);
  }

  .hero-actions .button,
  .cta-band .button {
    width: 100%;
  }

  .proof-strip,
  .pricing-grid,
  .note-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    justify-content: flex-start;
  }

  .device-photo-stage {
    min-height: 520px;
  }

  .macbook-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .iphone-photo {
    width: 150px;
    bottom: 68px;
    border-width: 7px;
  }

  .device-note {
    right: 0;
    left: 46px;
  }

  .cta-band,
  footer {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 430px) {
  .brand strong {
    max-width: 18ch;
  }

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

  .site-nav a {
    text-align: center;
  }

  .lead-form,
  .service-rows article,
  .services-grid article,
  .work-card,
  .price-card,
  .note-grid > div,
  .process-list li {
    padding: 18px;
  }
}
