/* CarrotSoftClan — light brand theme (design handoff 2026-08) */

:root {
  --bg: #fbfaf9;
  --surface: #ffffff;
  --text: #3f362e;
  --text-sub: #6b635a;
  --text-body: #5c554d;
  --muted: #8d857c;
  --caption: #a39b91;
  --orange: #e56a1c;
  --link: #d9531e;
  --link-hover: #b8430f;
  --hairline: #efeae4;
  --card-border: #eee8e1;
  --grad-cta: linear-gradient(160deg, #f6a03c, #e05a17);
  --font-sans: 'Pretendard Variable', 'Montserrat', sans-serif;
  --font-latin: 'Montserrat', 'Pretendard Variable', sans-serif;
  --radius-card: 16px;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }
::selection { background: #fde3cd; }

img { max-width: 100%; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ddf0dc;
  border-bottom: 1px solid #c8e3c8;
}

.nav-inner {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.brand-badge img {
  width: 28px;
  height: 30px;
  object-fit: contain;
}

.wordmark {
  font-family: var(--font-latin);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.wm-carrot { color: var(--orange); }
.wm-green { color: #4a7a52; }
.wm-gray { color: var(--muted); }
.wm-dot { color: #4a443c; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a { color: #3d6b46; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--orange); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-facets {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.facet { position: absolute; }
.facet-1 { top: -60px; right: -40px; width: 340px; height: 340px; background: #f3f1ee; clip-path: polygon(100% 0, 0 0, 100% 100%); }
.facet-2 { top: 90px; right: 150px; width: 150px; height: 150px; background: #efece7; clip-path: polygon(100% 0, 0 100%, 100% 100%); }
.facet-3 { bottom: -70px; left: -50px; width: 320px; height: 320px; background: #f3f1ee; clip-path: polygon(0 100%, 0 0, 100% 100%); }
.facet-4 { bottom: 60px; left: 170px; width: 130px; height: 130px; background: #efece7; clip-path: polygon(0 0, 0 100%, 100% 0); }

.hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 84px 24px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-mark {
  width: 190px;
  height: 200px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero h1 {
  margin: 18px 0 0;
  font-family: var(--font-latin);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 62px);
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.hero-tagline {
  margin: 14px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 4px;
  color: var(--caption);
}

.hero-sub {
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-sub);
  max-width: 460px;
  text-wrap: pretty;
}

.hero-cta {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  align-items: center;
}

/* ---------- Buttons ---------- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--grad-cta);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(224, 90, 23, 0.25);
  transition: filter 0.15s ease, transform 0.1s ease;
}

.btn-primary:hover { filter: brightness(1.05); color: #fff; }
.btn-primary:active { transform: scale(0.98); }

/* ---------- Sections ---------- */

.section {
  border-top: 1px solid var(--hairline);
}

.section-white { background: var(--surface); }

.section .container {
  padding-top: 88px;
  padding-bottom: 96px;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.pixel-marker {
  display: inline-grid;
  grid-template-columns: repeat(3, 7px);
  gap: 3px;
}

.pixel-marker i { width: 7px; height: 7px; }
.pixel-green i:nth-child(1) { background: #6cbf4a; }
.pixel-green i:nth-child(2) { background: #3c9e56; }
.pixel-green i:nth-child(3) { background: #2aa88f; }
.pixel-orange i:nth-child(1) { background: #f6a03c; }
.pixel-orange i:nth-child(2) { background: #ee7a24; }
.pixel-orange i:nth-child(3) { background: #e05a17; }

/* ---------- Apps ---------- */

.app-featured {
  margin-top: 36px;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fff8f1, #fdf1e3);
  border: 1px solid #f5e3cd;
  border-radius: var(--radius-card);
  padding: 36px 40px;
}

.app-icon-lg {
  width: 108px;
  height: 108px;
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(224, 90, 23, 0.15);
}

.app-featured-body {
  flex: 1;
  min-width: 260px;
}

.app-featured h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.app-featured p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-sub);
  max-width: 560px;
}

.btn-featured {
  margin-top: 20px;
  height: 44px;
  padding: 0 24px;
  font-size: 15px;
  gap: 8px;
}

.btn-featured .btn-arrow { transition: transform 0.15s ease; }
.btn-featured:hover .btn-arrow { transform: translateX(3px); }

.app-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--caption);
  margin-left: 6px;
}

.app-en-featured {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #c98a4e;
  margin-left: 8px;
}

.app-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.app-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 28px 30px;
}

.app-icon-sm {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(63, 54, 46, 0.12);
}

.app-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.app-card p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-sub);
}

.app-card-coming {
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f2faf3, #ebf7f1);
  border-color: #d8ecd9;
}

.app-card-coming h3 { margin-top: 4px; }
.app-card-coming p { margin: 0; color: #5d6b5e; }

.status-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: #3c9e56;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 5fr) minmax(280px, 7fr);
  gap: 48px;
  align-items: start;
}

.chips {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips li {
  height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #eadfd2;
  font-size: 14px;
  font-weight: 600;
  color: #7a5a3a;
}

.about-body {
  margin: 6px 0 0;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-body);
  text-wrap: pretty;
}

/* ---------- Contact ---------- */

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 88px 24px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-contact h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.contact-lead {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-sub);
}

.contact-inner .btn-primary { margin-top: 28px; }

.contact-email {
  margin: 16px 0 0;
  font-family: var(--font-latin);
  font-size: 15px;
  font-weight: 600;
  color: var(--caption);
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg);
}

.footer-inner {
  padding-top: 36px;
  padding-bottom: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wordmark-sm { font-size: 15px; }

.footer-line {
  font-size: 13.5px;
  color: var(--muted);
}

.footer-copy {
  font-size: 13px;
  color: var(--caption);
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-body { margin-top: 0; }
  .app-featured { padding: 28px 26px; gap: 24px; }
  .section .container { padding-top: 64px; padding-bottom: 72px; }
  .hero-inner { padding: 56px 24px 72px; }
  .hero-mark { width: 150px; height: 158px; }
}
