:root {
  --font-heading: "Nunito", "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, sans-serif;

  --color-bg: #e5dbc9;
  --color-card: rgba(255, 250, 244, 0.92);
  --color-text: #2f2d2c;
  --color-muted: #71645d;
  --color-accent: #b65b54;
  --color-accent-hover: #9f4d47;
  --color-secondary: #e3af81;
  --color-line: #ebc7ae;
  --color-highlight: #fddaae;
  --color-soft: #fff7ec;

  --shadow-card: 0 24px 70px rgba(85, 64, 52, 0.14);
  --radius-card: 8px;
  --radius-button: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    linear-gradient(135deg, rgba(229, 219, 201, 0.98) 0%, rgba(253, 218, 174, 0.42) 48%, rgba(235, 199, 174, 0.46) 100%),
    repeating-linear-gradient(90deg, rgba(182, 91, 84, 0.05) 0 1px, transparent 1px 96px);
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.landing-card {
  position: relative;
  z-index: 1;
  width: min(100%, 1060px);
  min-height: 680px;
  padding: 64px 48px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-card);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}

.decor-line-left {
  left: 28px;
  bottom: 72px;
  width: 180px;
  height: 220px;
  border-left: 2px solid rgba(182, 91, 84, 0.28);
  border-bottom: 2px solid rgba(182, 91, 84, 0.28);
  border-radius: 0 0 0 100px;
  transform: rotate(-8deg);
}

.decor-line-right {
  right: -40px;
  top: -60px;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(227, 175, 129, 0.4);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
  transform: rotate(18deg);
}

.decor-dots {
  left: 70px;
  top: 250px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(rgba(182, 91, 84, 0.28) 2px, transparent 2px);
  background-size: 22px 22px;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.brand {
  margin-bottom: 56px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  color: var(--color-accent);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
  text-indent: 0.24em;
  color: var(--color-text);
}

.brand-domain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
  font-size: 0.95rem;
  letter-spacing: 0.36em;
  text-transform: lowercase;
  color: var(--color-accent);
}

.brand-domain::before,
.brand-domain::after {
  content: "";
  width: 82px;
  height: 1px;
  background: var(--color-line);
}

.hero-title {
  max-width: 700px;
  margin: 0 auto 26px;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--color-text);
}

.hero-text {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-muted);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px auto 22px;
  color: var(--color-accent);
}

.divider::before,
.divider::after {
  content: "";
  width: 82px;
  height: 1px;
  background: var(--color-line);
}

.instagram-text {
  max-width: 610px;
  margin: 0 auto 28px;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.7;
  color: var(--color-text);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 260px;
  padding: 18px 28px;
  border-radius: var(--radius-button);
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(182, 91, 84, 0.28);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(182, 91, 84, 0.34);
}

.cta:focus-visible {
  outline: 3px solid rgba(182, 91, 84, 0.35);
  outline-offset: 4px;
}

.cta svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.support-message {
  margin-top: 34px;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--color-text);
}

.small-leaf {
  width: 42px;
  margin: 20px auto 0;
  color: var(--color-accent);
  opacity: 0.8;
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.leaf-left,
.leaf-right {
  position: absolute;
  z-index: 0;
  color: rgba(182, 91, 84, 0.45);
  pointer-events: none;
}

.leaf-left {
  left: 90px;
  bottom: 116px;
  width: 90px;
  transform: rotate(-18deg);
}

.leaf-right {
  right: 88px;
  bottom: 104px;
  width: 120px;
  transform: rotate(14deg);
}

@media (max-width: 860px) {
  .landing-card {
    min-height: auto;
    padding: 52px 30px 30px;
  }

  .brand {
    margin-bottom: 42px;
  }

  .brand-name {
    letter-spacing: 0.18em;
    text-indent: 0.18em;
  }

  .brand-domain {
    gap: 12px;
    letter-spacing: 0.24em;
  }

  .brand-domain::before,
  .brand-domain::after {
    width: 52px;
  }

  .leaf-left,
  .leaf-right,
  .decor-dots {
    opacity: 0.28;
  }
}

@media (max-width: 560px) {
  .page {
    align-items: flex-start;
    padding: 20px 14px;
  }

  .landing-card {
    width: 100%;
    padding: 42px 22px 26px;
  }

  .brand {
    margin-bottom: 34px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 2rem;
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }

  .brand-domain {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
  }

  .brand-domain::before,
  .brand-domain::after {
    width: 34px;
  }

  .hero-title {
    font-size: 2.65rem;
  }

  .hero-text,
  .instagram-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .cta {
    width: 100%;
    min-width: auto;
    padding: 17px 22px;
  }

  .footer {
    margin-top: 42px;
    font-size: 0.78rem;
  }

  .decor-line-left,
  .decor-line-right,
  .leaf-left,
  .leaf-right {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cta {
    transition: none;
  }

  .cta:hover {
    transform: none;
  }
}
