:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf7f0;
  --card: rgba(255, 255, 255, 0.76);
  --card-strong: rgba(255, 255, 255, 0.92);
  --text: #151515;
  --muted: rgba(21, 21, 21, 0.7);
  --line: rgba(21, 21, 21, 0.12);
  --accent: #00bcd4;
  --accent-2: #d523ff;
  --accent-3: #ff8a00;
  --shadow: 0 24px 80px rgba(27, 16, 9, 0.12);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.page {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 188, 212, 0.16), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(213, 35, 255, 0.14), transparent 20%),
    radial-gradient(circle at 12% 34%, rgba(255, 138, 0, 0.1), transparent 24%),
    radial-gradient(circle at 88% 50%, rgba(0, 188, 212, 0.1), transparent 22%),
    radial-gradient(circle at 8% 68%, rgba(213, 35, 255, 0.09), transparent 23%),
    radial-gradient(circle at 78% 88%, rgba(255, 138, 0, 0.09), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 50%, #f9f4ea 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 1px, transparent 1px);
  background-size: 6px 6px;
  mix-blend-mode: multiply;
}

.wrap {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: none;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.12));
}

.brand-mark {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tag {
  font-size: 0.83rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
}

.hero {
  padding: 28px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--card);
  backdrop-filter: blur(18px);
}

.hero-copy {
  border-radius: 40px;
  padding: clamp(24px, 4vw, 46px);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.18), transparent 65%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: #222;
  font-size: 0.86rem;
  font-weight: 600;
}

.eyebrow .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(0, 188, 212, 0.08);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 0.9;
}

.hero-copy p.lead {
  max-width: 54ch;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.3vw, 1.24rem);
  color: var(--muted);
}

.hero-bullets {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 56ch;
}

.hero-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.07);
  font-size: 0.98rem;
}

.hero-panel {
  border-radius: 34px;
  padding: 18px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.signup-box {
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(213, 35, 255, 0.12));
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.signup-box h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 10px;
}

.signup-box p {
  margin: 0 0 18px;
  color: var(--muted);
}

.price {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
}

.form-row {
  display: grid;
  gap: 12px;
}

.field,
.cta {
  width: 100%;
  border: 0;
  border-radius: 18px;
  font: inherit;
}

.field {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.12);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(213, 35, 255, 0.22);
}

.mini-note {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}

.emoji {
  font-size: 1.2rem;
  line-height: 1;
  width: 1.2em;
  flex: none;
}

.section {
  padding: 10px 0 28px;
}

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

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.section-head p {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
}

.section-more {
  margin: 14px 0 0;
  color: inherit;
}

.section-more a {
  color: inherit;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.section-more a:hover {
  color: #087ea4;
}

.section-card {
  border-radius: 34px;
  padding: clamp(18px, 3vw, 28px);
}

#examples .section-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66)),
    linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(213, 35, 255, 0.08));
}

.examples {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.example {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.example-left,
.example-right {
  gap: 16px;
  min-width: 0;
}

.example-left {
  display: grid;
  flex: 0.72 1 0;
}

.example-right {
  display: flex;
  flex: 1.28 1 0;
}

.example-image-shell {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(21, 21, 21, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.example-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.example-copy {
  display: grid;
  gap: 8px;
}

.example-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.example-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.example-copy p {
  margin: 0;
  color: var(--muted);
}

.example-map-shell {
  min-height: 480px;
  flex: 1 1 auto;
  border-radius: 22px;
  overflow: hidden;
}

.example-map-shell .map-widget {
  width: 100%;
  height: 100%;
  min-height: 0;
  position: relative;
  background: #eef2f5;
}

.map-widget-loading,
.map-widget-error {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  background: linear-gradient(135deg, #f3f5f7, #e6ebef);
}

.map-widget-error {
  color: #8b1e1e;
  background: linear-gradient(135deg, #f9e4e4, #f4d7d7);
}

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

.step {
  border-radius: 26px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.18), rgba(213, 35, 255, 0.18));
  font-weight: 700;
}

.step h3 {
  font-family: inherit;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.doc-hero {
  padding-bottom: 22px;
}

.doc-hero .hero-copy {
  max-width: 820px;
}

.examples-page .doc-hero {
  min-height: 62svh;
  display: flex;
  align-items: center;
}

.example-showcase {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(64px, 8vw, 104px) 0;
}

.example-showcase .section-head {
  margin-bottom: 20px;
}

.example-showcase .section-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(213, 35, 255, 0.07));
}

.example-showcase--classic {
  background:
    radial-gradient(circle at 14% 22%, rgba(0, 188, 212, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(213, 35, 255, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.45), rgba(246, 241, 232, 0.82));
}

.example-showcase--open {
  background:
    radial-gradient(circle at 18% 18%, rgba(120, 196, 86, 0.22), transparent 30%),
    radial-gradient(circle at 82% 74%, rgba(255, 184, 74, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(250, 255, 245, 0.72), rgba(241, 246, 232, 0.86));
}

.example-showcase--open .section-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 255, 246, 0.72)),
    linear-gradient(135deg, rgba(120, 196, 86, 0.14), rgba(255, 184, 74, 0.1));
}

.example-showcase--dark {
  color: #f7f5ef;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 188, 212, 0.2), transparent 28%),
    radial-gradient(circle at 84% 74%, rgba(213, 35, 255, 0.15), transparent 28%),
    linear-gradient(180deg, #191b1f 0%, #101216 58%, #181318 100%);
}

.example-showcase--dark .section-card {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(42, 45, 50, 0.9), rgba(24, 26, 31, 0.82)),
    linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(213, 35, 255, 0.09));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.example-showcase--dark .section-head p,
.example-showcase--dark .example-kicker,
.example-showcase--dark .example-copy p {
  color: rgba(247, 245, 239, 0.72);
}

.example-showcase--dark .example-image-shell {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.example-showcase--dark .example-map-shell .map-widget {
  background: #202329;
}

.doc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: start;
}

.doc-main,
.doc-aside {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--card);
  backdrop-filter: blur(18px);
}

.doc-main {
  display: grid;
  gap: 26px;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 34px;
}

.doc-aside {
  position: sticky;
  top: 18px;
  padding: 18px;
  border-radius: 28px;
}

.doc-section {
  display: grid;
  gap: 12px;
}

.doc-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.doc-section h3 {
  font-size: 1.1rem;
  letter-spacing: 0;
}

.doc-section p {
  margin: 0;
  color: var(--muted);
}

.doc-section code,
.code-note a,
.footer a,
.imprint-main a {
  color: inherit;
}

.imprint-main {
  max-width: 820px;
}

.contact-hero {
  padding-bottom: 34px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 22px;
  align-items: stretch;
}

.contact-copy {
  display: grid;
  align-content: center;
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-details h2 {
  margin-bottom: 4px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-details p {
  margin: 0;
  color: var(--muted);
}

.contact-map-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.contact-map-shell,
.contact-map-shell .map-widget {
  width: 100%;
  height: 100%;
  min-height: 620px;
}

.contact-map-shell .map-widget {
  position: relative;
  background: #eef2f5;
}

.contact-note {
  max-width: 780px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-note h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.contact-note p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.option-grid > div {
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.code-card {
  border-radius: 28px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 244, 0.88)),
    linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(213, 35, 255, 0.08));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.code-label {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  color: rgba(21, 21, 21, 0.54);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.code-block {
  margin: 0;
  padding: 20px;
  max-width: 100%;
  overflow-x: auto;
  color: #27313a;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.65;
  tab-size: 2;
}

.code-block code {
  display: block;
  min-width: max-content;
}

.code-tag {
  color: #087ea4;
}

.code-attr {
  color: #9a5b00;
}

.code-string {
  color: #168044;
}

.code-punct {
  color: #778391;
}

.code-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(21, 21, 21, 0.08);
  color: rgba(21, 21, 21, 0.62);
  font-size: 0.88rem;
}

.code-note code {
  max-width: 100%;
  overflow-x: auto;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(21, 21, 21, 0.05);
  color: #27313a;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  gap: 30px;
  padding: 34px 0 46px;
  border-top: 1px solid rgba(21, 21, 21, 0.1);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-about {
  max-width: 48ch;
}

.footer-brand {
  margin-bottom: 8px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.footer-about p {
  margin: 0;
}

.footer-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-map div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-map h2 {
  margin: 0 0 2px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-map a {
  color: inherit;
  text-decoration: none;
}

.footer-map a:hover {
  color: #087ea4;
}

@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .examples,
  .guide,
  .doc-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

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

  #examples .section-card {
    padding: 14px;
  }

  .examples-page .doc-hero {
    min-height: auto;
  }

  .example-showcase {
    min-height: 100svh;
    padding: 52px 0;
  }

  .example-showcase .section-card {
    padding: 14px;
  }

  .example-map-shell {
    flex: none;
    width: 100%;
    height: 380px;
    min-height: 380px;
  }

  .example {
    flex-direction: column;
    gap: 14px;
  }

  .example-left,
  .example-right {
    flex: none;
    width: 100%;
  }

  .example-left {
    order: 2;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .example-right {
    order: 1;
  }

  .example-image-shell {
    flex: 0 0 116px;
    width: 116px;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .example-copy {
    flex: 1 1 auto;
    gap: 4px;
  }

  .example-copy h3 {
    font-size: 1.35rem;
  }

  .example-copy p {
    font-size: 0.92rem;
  }

  .example-map-shell .map-widget {
    height: 100%;
    min-height: 0;
  }

  .doc-aside {
    position: static;
  }

  .contact-map-card,
  .contact-map-shell,
  .contact-map-shell .map-widget {
    min-height: 460px;
  }

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

@media (max-width: 640px) {
  .wrap {
    width: min(100vw - 22px, 1180px);
  }

  .topbar {
    align-items: start;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-copy {
    border-radius: 30px;
  }

  .contact-map-card,
  .contact-note {
    border-radius: 28px;
  }

  .contact-map-card,
  .contact-map-shell,
  .contact-map-shell .map-widget {
    min-height: 380px;
  }

  .hero-panel,
  .section-card {
    border-radius: 28px;
  }

  #examples .section-card {
    padding: 10px;
  }

  .example-showcase {
    padding: 38px 0;
  }

  .example-showcase .section-card {
    padding: 10px;
  }

  .signup-box {
    padding: 20px;
  }

  .example {
    gap: 12px;
  }

  .example-map-shell {
    height: 340px;
    min-height: 340px;
  }

  .example-left {
    gap: 10px;
  }

  .example-image-shell {
    flex-basis: 72px;
    width: 72px;
    height: 54px;
    aspect-ratio: auto;
    border-radius: 10px;
  }

  .example-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .example-copy h3 {
    font-size: 1.08rem;
    letter-spacing: 0;
  }

  .example-copy p {
    display: none;
  }

  .code-block {
    padding: 16px;
    font-size: 0.78rem;
  }

  .code-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    padding: 28px 0 38px;
  }

  .footer-map {
    grid-template-columns: 1fr;
  }
}
