:root {
  color-scheme: light;
  --bg: #f7f3ec;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #17202a;
  --muted: #5e6a78;
  --line: rgba(23, 32, 42, 0.13);
  --accent: #1769e0;
  --accent-2: #22a982;
  --accent-soft: rgba(23, 105, 224, 0.12);
  --shadow: 0 18px 46px rgba(23, 32, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0, var(--accent-soft), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 20px));
  margin: 10px auto 24px;
}

.top {
  display: grid;
  gap: 8px;
  padding: 12px 0 14px;
}

.brand {
  font-weight: 900;
  font-size: clamp(1.1rem, 6vw, 1.65rem);
  color: var(--accent);
  overflow-wrap: anywhere;
}

.note {
  color: var(--muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero {
  display: grid;
  gap: 12px;
}

.copy,
.visual,
.panel,
.strip,
.proof {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.copy {
  padding: clamp(20px, 6vw, 44px);
}

.visual {
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 34px);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62));
}

.visual img {
  width: min(100%, 520px);
  height: auto;
  border-radius: 16px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

h1 {
  margin: 16px 0 14px;
  max-width: 12ch;
  font-size: clamp(2.35rem, 13vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(1rem, 4.6vw, 1.22rem);
  line-height: 1.62;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.primary {
  color: #fff;
  background: var(--accent);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.strip {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
}

.panel,
.proof {
  padding: 18px;
}

.panel b,
.proof b {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
}

.panel p,
.proof p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.proof-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.proof h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 7vw, 2rem);
  line-height: 1;
}

.theme-dorotech { --bg: #edf5ff; --ink: #07111f; --muted: #516176; --accent: #1168d8; --accent-2: #22c38a; --accent-soft: rgba(17, 104, 216, 0.12); }
.theme-ecoloop { --bg: #edf8ef; --ink: #153522; --muted: #58705f; --accent: #1c9550; --accent-2: #a9d936; --accent-soft: rgba(28, 149, 80, 0.13); }
.theme-digital { --bg: #eef5fb; --ink: #101820; --muted: #64717f; --accent: #0057d9; --accent-2: #00b8ff; --accent-soft: rgba(0, 87, 217, 0.12); }
.theme-edwards { --bg: #f7f3f3; --ink: #24252a; --muted: #666d76; --accent: #c8102e; --accent-2: #ef7c87; --accent-soft: rgba(200, 16, 46, 0.12); }
.theme-ely { --bg: #fff4f9; --ink: #29212b; --muted: #706574; --accent: #b32063; --accent-2: #138466; --accent-soft: rgba(179, 32, 99, 0.12); }
.theme-universal { --bg: #f1f5fb; --ink: #1f2732; --muted: #627083; --accent: #123d79; --accent-2: #d8a742; --accent-soft: rgba(18, 61, 121, 0.12); }
.theme-lakatos { --bg: #f4efe7; --ink: #16212b; --muted: #56616f; --accent: #ef7d1a; --accent-2: #bb5f12; --accent-soft: rgba(239, 125, 26, 0.14); }

@media (min-width: 520px) {
  .actions {
    display: flex;
    flex-wrap: wrap;
  }

  .btn {
    width: auto;
    min-width: min(100%, 180px);
  }
}

@media (min-width: 820px) {
  .wrap {
    width: min(1180px, calc(100% - 36px));
    margin-top: 18px;
  }

  .top {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    align-items: center;
  }

  .note {
    text-align: right;
  }

  .hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 18px;
  }

  .copy,
  .visual,
  .panel,
  .strip,
  .proof {
    border-radius: 24px;
  }

  .strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
    padding: 14px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }
}
