:root {
  --ink: #2c241c;
  --mute: #6f6458;
  --line: #eadfd4;
  --cream: #fffdf9;
  --page: #fff6ee;
  --peach: #ff8a5b;
  --peach-deep: #e86a33;
  --mint: #3db8a0;
  --sky: #5b9fd6;
  --shadow: 0 12px 32px rgba(70, 46, 28, 0.16);
  --radius: 28px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(255, 138, 91, 0.18), transparent 55%),
    radial-gradient(900px 420px at -10% 20%, rgba(61, 184, 160, 0.1), transparent 50%),
    var(--page);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 20;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(234, 223, 212, 0.7);
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(232, 106, 51, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--mute);
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.btn:focus-visible,
.nav a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--peach);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--peach);
  color: white;
  box-shadow: 0 8px 18px rgba(232, 106, 51, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: white;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn-lg {
  min-height: 48px;
  padding: 14px 22px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
  padding: 72px 0 36px;
}

.section,
.hero {
  scroll-margin-top: 84px;
}

.eyebrows {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  border-radius: 999px;
  background: rgba(255, 138, 91, 0.14);
  padding: 7px 12px 7px 10px;
  color: var(--peach-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.lede {
  margin: 0 0 28px;
  color: var(--mute);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.fine {
  margin: 0;
  color: var(--mute);
  font-size: 13px;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 12px;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mascot {
  position: relative;
  width: 36px;
  height: 36px;
}

.mascot-face {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd0b5 0%, #ff8a5b 100%);
  box-shadow: 0 8px 18px rgba(232, 106, 51, 0.28);
}

.eyes {
  display: flex;
  gap: 6px;
  margin-bottom: 2px;
}

.eye {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.smile {
  width: 12px;
  height: 5px;
  border: 1.5px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.panel-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.panel-status {
  color: var(--mute);
  font-size: 12px;
}

.tabs {
  display: flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(234, 223, 212, 0.8);
  padding: 4px;
}

.tab {
  flex: 1;
  border-radius: 999px;
  padding: 8px 0;
  color: var(--mute);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.tab.is-on {
  background: white;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(44, 36, 28, 0.06);
}

.job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  border-radius: 16px;
  background: white;
  padding: 10px 12px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.job b {
  display: block;
  font-size: 13px;
}

.job span {
  color: var(--mute);
  font-size: 11px;
}

.job .job-run {
  border-radius: 999px;
  background: var(--peach);
  color: #fff;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
}

.log {
  margin-top: 8px;
  border-radius: 16px;
  background: white;
  padding: 12px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.log p {
  margin: 0 0 8px;
  color: var(--mute);
  font-size: 11px;
  font-weight: 800;
}

.log li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
}

.log ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.section {
  padding: 72px 0;
}

.section h2 {
  margin: 0 0 40px;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1.25;
}

#faq h2 {
  margin-bottom: 20px;
}

.section-lead {
  max-width: 40rem;
  margin: 0 0 48px;
  color: var(--mute);
}

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

.card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: white;
  padding: 22px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--mute);
  font-size: 15px;
}

.step-ui {
  flex: 1;
  margin-top: 16px;
  border-radius: 16px;
  background: var(--cream);
  padding: 12px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.pills {
  display: flex;
  gap: 8px;
}

.pill {
  flex: 1;
  border-radius: 12px;
  background: white;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 0 0 1px var(--line);
}

.pill-on {
  background: var(--peach);
  color: #fff;
  box-shadow: none;
}

.step-ui-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

.fake-run {
  margin-top: 12px;
  border-radius: 10px;
  background: var(--peach);
  color: #fff;
  padding: 8px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.seq {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.seq li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--ink);
  font-size: 12px;
}

.seq span {
  width: 36px;
  flex-shrink: 0;
  color: var(--mute);
  font-size: 10px;
  font-weight: 800;
}

.seq-log {
  margin-top: 12px;
  border-radius: 12px;
  background: white;
  padding: 10px 12px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.seq-log li {
  margin-top: 4px;
}

.step-ui .fake-row {
  margin-top: 0;
  background: white;
}

.step-ui .fake-row .job-run {
  border-radius: 999px;
  background: var(--peach);
  color: #fff;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
}

.icon-blob {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: #fff1e8;
  color: var(--peach-deep);
  font-size: 20px;
  font-weight: 800;
}

.shots {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.shot {
  display: flex;
  min-height: 280px;
  flex-direction: column;
}

.shot h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.mini-form,
.mini-settings {
  flex: 1;
  border-radius: 18px;
  background: white;
  padding: 12px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.field {
  margin-bottom: 10px;
}

.field b {
  display: block;
  margin-bottom: 4px;
  color: var(--mute);
  font-size: 11px;
}

.fake-input,
.fake-row {
  border-radius: 12px;
  background: var(--cream);
  padding: 10px 12px;
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 13px;
}

.fake-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.learn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 10px;
  font-size: 12px;
}

.learn strong {
  display: inline-block;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 6px 8px;
  font-size: 11px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.num {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.steps h3 {
  margin: 4px 0 4px;
  font-size: 16px;
}

.steps p {
  margin: 0;
  color: var(--mute);
  font-size: 14px;
}

.video {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #2c241c;
  box-shadow: var(--shadow);
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  display: grid;
  height: 100%;
  place-items: center;
  padding: 24px;
  color: white;
  text-align: center;
}

.play {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  font-size: 22px;
}

.video-placeholder p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta {
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 208, 181, 0.45), rgba(255, 253, 249, 0.9)),
    white;
  padding: 48px 32px;
  box-shadow: inset 0 0 0 1px var(--line);
  text-align: center;
}

.cta h2 {
  margin-bottom: 8px;
}

.cta .hero-actions {
  justify-content: center;
  margin: 22px 0 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq details {
  border-radius: 20px;
  background: white;
  box-shadow: inset 0 0 0 1px var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  float: right;
  color: var(--peach);
  content: "+";
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--mute);
  font-size: 15px;
}

.site-footer {
  padding: 28px 0 48px;
  color: var(--mute);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-inner a {
  color: var(--mute);
}

.chrome-mark {
  width: 18px;
  height: 18px;
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero,
  .shots,
  .split,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .section {
    padding: 56px 0;
  }

  .site-header .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}
