/* BI Migrate — bimigrate.com */
:root {
  --bg: #f4f7f9;
  --bg-deep: #e8eef3;
  --ink: #0e1a2b;
  --ink-soft: #243447;
  --muted: #5c6b7a;
  --teal: #0b6e74;
  --teal-deep: #08555a;
  --teal-soft: rgba(11, 110, 116, 0.12);
  --line: rgba(14, 26, 43, 0.1);
  --surface: rgba(255, 255, 255, 0.72);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 520px at 80% -8%, rgba(11, 110, 116, 0.16), transparent 55%),
    radial-gradient(820px 480px at -10% 20%, rgba(14, 26, 43, 0.06), transparent 50%),
    linear-gradient(180deg, #fbfcfd 0%, var(--bg) 42%, var(--bg-deep) 100%);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.wrap {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
  animation: fadeDown 0.7s ease both;
}

.logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--ink);
}

.logo span {
  color: var(--teal);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

/* —— Hero: one composition —— */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: end;
  min-height: min(78vh, 720px);
  padding: 2.5rem 0 3.5rem;
}

.hero-copy {
  display: grid;
  gap: 1.1rem;
  max-width: 32rem;
  padding-bottom: 1.5rem;
  animation: fadeUp 0.85s ease both;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--ink);
}

.brand em {
  font-style: italic;
  color: var(--teal);
}

.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  max-width: 24ch;
  line-height: 1.35;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36ch;
}

.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 0.45rem;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 28px rgba(11, 110, 116, 0.22);
}

.btn-primary:hover { background: var(--teal-deep); }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--surface);
  backdrop-filter: blur(6px);
}

.hero-visual {
  position: relative;
  min-height: 340px;
  animation: fadeIn 1.1s ease 0.15s both;
}

.hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 50px rgba(14, 26, 43, 0.12));
}

.float-a {
  animation: floatY 6s ease-in-out infinite;
  transform-origin: center;
}

.float-b {
  animation: floatY 7.5s ease-in-out 0.8s infinite;
}

.draw-line {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: draw 1.4s ease 0.4s forwards;
}

/* —— Sections —— */
.section {
  padding: 3.5rem 0 1rem;
  animation: fadeUp 0.9s ease both;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 42ch;
}

.deliverables {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.deliverables li {
  list-style: none;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.deliverables .n {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--teal);
  font-size: 1.35rem;
  line-height: 1.2;
}

.deliverables strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}

.deliverables p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 48ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 0.5rem;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.4rem 0 0.35rem;
}

.step p {
  color: var(--muted);
  font-size: 0.92rem;
}

.step .tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.price-band {
  margin: 3.5rem 0 2rem;
  padding: 2.25rem 2rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(11,110,116,0.06));
  border-radius: 0.75rem;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
}

.price-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.price-band p {
  color: var(--muted);
  max-width: 42ch;
  font-size: 0.98rem;
}

.price-tag {
  text-align: right;
}

.price-tag .amt {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.price-tag .amt span {
  font-size: 0.55em;
  color: var(--muted);
  font-style: italic;
}

.price-tag .meta {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footnote {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.5rem 0 2rem;
  max-width: 58ch;
}

.contact {
  padding: 2.5rem 0 1rem;
  max-width: 34rem;
}

.contact h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.contact p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.contact a.mail {
  color: var(--teal);
  font-weight: 650;
  text-decoration: none;
}

.contact a.mail:hover { text-decoration: underline; }

footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.5rem;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}

footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

.legal {
  padding: 3rem 0 4rem;
  max-width: 42rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 1.75rem 0 0.5rem;
}

.legal p, .legal li {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.legal strong { color: var(--ink); }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--teal); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

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

  .hero-visual { order: -1; min-height: auto; }

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

  .price-band {
    grid-template-columns: 1fr;
  }

  .price-tag { text-align: left; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .deliverables li { grid-template-columns: 3rem 1fr; }
}
