:root {
  --bg: #f3f5f2;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #1f2a1f;
  --muted: #4e5f50;
  --brand: #4f654f;
  --brand-2: #7f9579;
  --line: rgba(79, 101, 79, 0.2);
  --accent: #d58d72;
  --shadow: 0 18px 40px rgba(32, 48, 34, 0.12);
  --radius: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
  position: relative;
  z-index: 1;
}

.background-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(65px);
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

.background-glow-1 {
  background: #b8c9b4;
  top: -10rem;
  right: -8rem;
  animation: floatA 18s ease-in-out infinite;
}

.background-glow-2 {
  background: #d8a894;
  left: -10rem;
  bottom: -12rem;
  animation: floatB 22s ease-in-out infinite;
}

@keyframes floatA {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-50px, 40px);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, -30px);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(243, 245, 242, 0.85);
  border-bottom: 1px solid rgba(79, 101, 79, 0.09);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 10px 18px rgba(36, 48, 38, 0.18);
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.main-nav a {
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
  color: var(--brand);
  background: rgba(79, 101, 79, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 800;
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.gradient-text {
  background: linear-gradient(110deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 58ch;
  margin: 1.25rem 0 1.65rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--brand), #3f5741);
  color: #fff;
  box-shadow: 0 14px 30px rgba(52, 78, 54, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(52, 78, 54, 0.32);
}

.btn-ghost {
  border-color: rgba(79, 101, 79, 0.2);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.5);
}

.hero-bullets {
  margin: 1.3rem 0 0;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
}

.hero-card {
  background: var(--surface);
  border: 1px solid rgba(79, 101, 79, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  backdrop-filter: blur(8px);
}

.hero-visual-panel {
  display: grid;
  gap: 0.75rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 150px;
  padding: 1rem;
  color: #eef7ef;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 30px rgba(31, 45, 34, 0.24);
  transform: translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 25, 20, 0.2), rgba(16, 27, 20, 0.78));
  transition: background 0.3s ease;
}

.visual-card > * {
  position: relative;
  z-index: 1;
}

.visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(31, 45, 34, 0.33);
}

.visual-card:hover::before {
  transform: scale(1.08);
}

.visual-card:hover::after {
  background: linear-gradient(180deg, rgba(18, 25, 20, 0.12), rgba(16, 27, 20, 0.68));
}

.visual-main {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.visual-label {
  display: inline-flex;
  width: fit-content;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.28rem 0.55rem;
  margin-bottom: 0.5rem;
}

.visual-main h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  max-width: 18ch;
}

.visual-main p,
.visual-card p {
  margin: 0.45rem 0 0;
  color: rgba(238, 247, 239, 0.95);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section-head {
  max-width: 70ch;
}

.section-head p {
  margin-top: 0.85rem;
  color: var(--muted);
}

.timeline-section {
  padding-top: 0.5rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  bottom: 0.8rem;
  left: 1rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(127, 149, 121, 0.1), rgba(79, 101, 79, 0.8));
}

.timeline-item {
  position: relative;
  padding-left: 3.1rem;
}

.timeline-dot {
  position: absolute;
  top: 0.5rem;
  left: 0.48rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 3px solid var(--brand-2);
  box-shadow: 0 0 0 8px rgba(127, 149, 121, 0.14);
}

.timeline-content {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(79, 101, 79, 0.15);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.45rem;
}

.timeline-media {
  position: relative;
  overflow: hidden;
}

.timeline-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.timeline-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(241, 246, 241, 0.9));
  transition: background 0.35s ease;
}

.timeline-media > * {
  position: relative;
  z-index: 1;
}

.timeline-media:hover::before {
  transform: scale(1.08);
}

.timeline-media:hover::after {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(241, 246, 241, 0.84));
}

.timeline-step {
  margin: 0 0 0.35rem;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.timeline-content p {
  color: var(--muted);
  margin: 0.75rem 0;
}

.timeline-content ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.timeline-content li {
  margin-bottom: 0.3rem;
}

.timeline-result {
  border-top: 1px dashed rgba(79, 101, 79, 0.25);
  padding-top: 0.8rem;
  margin-top: 1rem;
  color: #2a3c2b;
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.chips span {
  display: inline-flex;
  border: 1px solid rgba(79, 101, 79, 0.18);
  background: #fff;
  color: #304232;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.card-list {
  display: grid;
  gap: 1rem;
}

.soft-card,
.policy-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(79, 101, 79, 0.14);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.policy-card-media {
  position: relative;
  overflow: hidden;
}

.policy-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
  transform: scale(1.02);
}

.policy-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 238, 0.9));
  transition: background 0.3s ease;
}

.policy-card-media > * {
  position: relative;
  z-index: 1;
}

.policy-card-media:hover::before {
  transform: scale(1.08);
}

.policy-card-media:hover::after {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.84), rgba(238, 244, 238, 0.82));
}

.soft-card ul,
.policy-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.05rem;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.7rem;
  color: var(--brand);
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.contact-card {
  background: linear-gradient(130deg, #fefefe 0%, #e9efe8 100%);
  border: 1px solid rgba(79, 101, 79, 0.14);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 1.8rem;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr 1fr;
}

.creator-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(130deg, #ffffff, #eef4ed);
  border: 1px solid rgba(79, 101, 79, 0.16);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.creator-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 320px;
}

.creator-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 45, 34, 0.06), rgba(31, 45, 34, 0.28));
}

.creator-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #334936;
  font-weight: 500;
}

.form-status {
  margin-top: 1rem;
  display: none;
  border: 1px solid rgba(66, 122, 75, 0.25);
  background: linear-gradient(135deg, rgba(235, 249, 236, 0.95), rgba(220, 243, 226, 0.95));
  color: #1f4b29;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(47, 93, 56, 0.14);
}

.form-status.is-visible {
  display: block;
  animation: formSuccessIn 0.45s ease;
}

.form-status.is-error {
  border-color: rgba(150, 58, 58, 0.26);
  background: linear-gradient(135deg, rgba(255, 238, 238, 0.95), rgba(251, 225, 225, 0.95));
  color: #7b2323;
}

.contact-form .btn[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

@keyframes formSuccessIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(79, 101, 79, 0.23);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.85);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(79, 101, 79, 0.22);
  border-color: var(--brand);
}

.footer {
  border-top: 1px solid rgba(79, 101, 79, 0.16);
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  padding: 1rem 0 1.5rem;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
}

.footer-links a:hover {
  color: var(--brand);
}

.legal-wrap {
  background: var(--surface);
  border: 1px solid rgba(79, 101, 79, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.legal-wrap h2 {
  margin-top: 1.3rem;
}

.legal-wrap ol,
.legal-wrap ul {
  padding-left: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-card,
  .creator-card {
    grid-template-columns: 1fr;
  }

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

  .main-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1160px, calc(100% - 1.4rem));
  }

  .section {
    padding: 4rem 0;
  }

  .timeline-item {
    padding-left: 2.5rem;
  }

  .timeline::before {
    left: 0.78rem;
  }

  .timeline-dot {
    left: 0.2rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
