:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5f6a64;
  --paper: #f7f4ec;
  --surface: #fffefa;
  --line: #d9d1c3;
  --green: #285f47;
  --green-2: #d8eadf;
  --rose: #b75e63;
  --gold: #c79132;
  --shadow: 0 24px 80px rgba(44, 50, 45, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.94), rgba(247, 244, 236, 0.98)),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 24px 36px;
}

.hero__copy {
  max-width: 620px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(23, 32, 29, 0.14);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  margin: 28px 0 24px;
  max-width: 550px;
  font-size: clamp(1.24rem, 2.4vw, 1.85rem);
  line-height: 1.18;
  color: #28302c;
}

.lead-form {
  width: 100%;
  padding: 18px;
  background: rgba(255, 254, 250, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(39, 47, 42, 0.12);
  backdrop-filter: blur(16px);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: #34423b;
  font-size: 0.84rem;
  font-weight: 750;
}

input[type="email"],
input[type="tel"],
input[type="text"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfc7ba;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  padding: 0 13px;
  outline: none;
}

input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(40, 95, 71, 0.14);
}

.company-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.consent span {
  margin: 0;
  font-weight: 560;
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

button,
.actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

button {
  border: 0;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}

button:hover {
  background: #1f4d39;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.actions a {
  border: 1px solid #bfc7c0;
  background: #f9fbf8;
  color: #243129;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: var(--rose);
}

.hero__media {
  position: relative;
  min-height: clamp(520px, 72vh, 720px);
}

.phone-shot,
.preview-shot {
  position: absolute;
  overflow: hidden;
  background: #111714;
  border: 1px solid rgba(23, 32, 29, 0.12);
  box-shadow: var(--shadow);
}

.phone-shot {
  right: clamp(22px, 5vw, 74px);
  top: 4px;
  width: min(54vw, 310px);
  border-radius: 34px;
  padding: 10px;
  z-index: 2;
}

.phone-shot img {
  border-radius: 25px;
}

.preview-shot {
  left: 0;
  bottom: 22px;
  width: min(68vw, 455px);
  border-radius: 8px;
  padding: 8px;
}

.preview-shot img,
.showcase img {
  border-radius: 6px;
}

.feature-band {
  background: #26352e;
  color: #f8f4ea;
  padding: clamp(44px, 7vw, 82px) 24px;
}

.section-heading,
.features,
.showcase {
  max-width: 1120px;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: end;
}

.section-heading .eyebrow {
  color: #a7d4b6;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.features article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(248, 244, 234, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.features p {
  margin: 0;
  color: rgba(248, 244, 234, 0.78);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  padding: clamp(48px, 7vw, 86px) 24px;
}

.showcase p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.showcase img {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (max-width: 880px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 22px;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__media {
    min-height: 560px;
  }

  .phone-shot {
    right: 8%;
    width: min(64vw, 300px);
  }

  .preview-shot {
    width: min(82vw, 520px);
  }

  .section-heading,
  .features,
  .showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-inline: 16px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand img {
    width: 54px;
    height: 54px;
    border-radius: 12px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .actions {
    align-items: stretch;
  }

  button,
  .actions a {
    width: 100%;
  }

  .hero__media {
    min-height: 470px;
  }

  .phone-shot {
    right: 0;
    width: min(62vw, 245px);
    border-radius: 26px;
    padding: 7px;
  }

  .phone-shot img {
    border-radius: 20px;
  }

  .preview-shot {
    left: 0;
    bottom: 8px;
    width: min(86vw, 430px);
  }

  .feature-band,
  .showcase {
    padding-inline: 16px;
  }
}
