:root {
  --ink: #102042;
  --ink-soft: #42516a;
  --green: #26754f;
  --teal: #197a90;
  --coral: #c94f3d;
  --paper: #f6f4ee;
  --white: #ffffff;
  --line: #d7dee5;
  --shadow: 0 20px 60px rgba(16, 32, 66, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, "Noto Sans KR", "Malgun Gothic", sans-serif;
  line-height: 1.55;
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 10px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid rgba(215, 222, 229, 0.88);
}

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

.brand img {
  width: clamp(126px, 14vw, 172px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-select {
  min-width: 68px;
  height: 34px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 12px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  min-height: min(760px, calc(100svh - 120px));
  display: grid;
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(22px, 6vw, 92px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 23, 48, 0.86) 0%, rgba(8, 23, 48, 0.66) 35%, rgba(8, 23, 48, 0.1) 68%),
    url("assets/generated/global-food-ecosystem.png") center / cover no-repeat;
}

.hero-content {
  width: min(640px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ee0a6;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(45px, 8vw, 88px);
  font-weight: 800;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary,
.button.submit {
  color: var(--white);
  background: var(--green);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 44px));
  margin: -34px auto 0;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip div {
  min-height: 112px;
  padding: 24px;
  background: var(--white);
}

.proof-strip strong {
  display: block;
  color: var(--teal);
  font-size: 32px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 120px) clamp(22px, 6vw, 92px);
}

.section:nth-of-type(odd) {
  background: var(--paper);
}

.section-heading {
  width: min(850px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

.about-grid,
.partners-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: start;
}

.partners-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(620px, 1.28fr);
}

.lead-copy {
  font-size: clamp(18px, 2vw, 22px);
}

.lead-copy p {
  margin: 0 0 22px;
}

.market-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.market-panel h3,
.product-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.market-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.market-panel li {
  padding-left: 18px;
  border-left: 3px solid var(--teal);
  color: var(--ink-soft);
}

.product-visual,
.partner-logos {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-visual img {
  width: 100%;
  height: clamp(260px, 48vw, 520px);
  object-fit: cover;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #f8f8f6;
}

.product-card div {
  min-height: 168px;
  padding: 22px;
}

.product-card p {
  margin: 0;
  color: var(--ink-soft);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(1120px, 100%);
  margin: 28px auto 0;
}

.link-row a {
  padding: 11px 16px;
  color: var(--teal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.beauty-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 54px auto 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.beauty-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.beauty-feature div {
  padding: clamp(28px, 4vw, 46px) clamp(24px, 4vw, 50px);
}

.beauty-feature h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.14;
}

.beauty-feature p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.beauty-feature ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.beauty-feature li {
  padding-left: 16px;
  border-left: 3px solid var(--green);
  color: var(--ink-soft);
  font-weight: 700;
}

.partner-copy {
  display: grid;
  gap: 22px;
}

.anyone-logo {
  width: min(330px, 100%);
  border-radius: 6px;
}

.partner-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.permission-note {
  padding-left: 16px;
  border-left: 3px solid var(--coral);
  font-size: 14px !important;
}

.partner-logos {
  margin: 0;
  padding: 26px;
}

.partner-logos figcaption {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 26px 20px;
  align-items: center;
  justify-items: center;
}

.partner-logo-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 82px;
  text-decoration: none;
}

.partner-logo-grid img {
  width: auto;
  max-width: 100%;
  max-height: 76px;
  min-height: 0;
  padding: 0;
  transform: scale(1.2);
  transform-origin: center;
  object-fit: contain;
}

.contact-layout {
  align-items: stretch;
}

.contact-info,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 30px;
  font-style: normal;
}

.contact-info span {
  margin-top: 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-info span:first-child {
  margin-top: 0;
}

.contact-info a {
  color: var(--ink-soft);
  text-decoration-color: rgba(25, 122, 144, 0.45);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 16px;
}

.contact-form input {
  height: 46px;
  padding: 0 13px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 12px 13px;
}

.button.submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(22px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 22px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .language-select {
    width: 100%;
    min-height: 44px;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 150px);
    align-items: end;
    background:
      linear-gradient(180deg, rgba(8, 23, 48, 0.2) 0%, rgba(8, 23, 48, 0.88) 72%),
      url("assets/generated/global-food-ecosystem.png") center / cover no-repeat;
  }

  .proof-strip,
  .about-grid,
  .partners-layout,
  .contact-layout,
  .beauty-feature {
    grid-template-columns: 1fr;
  }

  .beauty-feature img {
    min-height: 280px;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .partner-logo-grid img {
    max-width: min(100%, 108px);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .hero {
    padding: 70px 18px 58px;
  }

  .hero h1 {
    font-size: clamp(38px, 15vw, 54px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-strip,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-inline: 18px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2 {
    font-size: clamp(29px, 10vw, 40px);
  }

  .product-card div {
    min-height: auto;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .partner-logo-grid img {
    max-width: min(100%, 98px);
    max-height: 62px;
  }

  .site-footer {
    display: grid;
  }
}
