:root {
  --ink: #18352e;
  --forest: #173f35;
  --forest-2: #23584a;
  --accent: #e96643;
  --accent-dark: #c84e30;
  --paper: #f7f2e7;
  --paper-deep: #eee5d3;
  --card: #fffdf8;
  --line: #d8d0c0;
  --muted: #6f776f;
  --sage: #a8bb8a;
  --shadow: 0 22px 70px rgba(28, 50, 42, .11);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 7%, rgba(224, 156, 91, .12), transparent 25rem),
    linear-gradient(180deg, #f8f4ea 0, #f5efe4 48%, #efe7d8 100%);
  font-family: "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea, select { font: inherit; }
button, select, label { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
[hidden] { display: none !important; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(24, 53, 46, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
}
.brand-mark {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: var(--card);
  background: var(--forest);
  border-radius: 10px;
}
.brand-mark svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.studio-name { color: #6d756f; font-family: ui-serif, "Yu Mincho", serif; font-size: 12px; letter-spacing: .06em; }
.studio-name i { padding: 0 7px; color: var(--accent); font-style: normal; }

main { overflow: clip; }
.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 510px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr);
  align-items: center;
  gap: 48px;
  padding: 64px 0 76px;
}

.eyebrow, .kicker {
  margin: 0;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.hero h1 {
  margin: 18px 0 22px;
  color: var(--forest);
  font-family: ui-serif, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 5.3vw, 72px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.22;
}
.hero h1 em { position: relative; color: var(--accent); font-style: normal; white-space: nowrap; }
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 4%; right: 2%; bottom: -8px;
  height: 8px;
  border-top: 2px solid var(--accent);
  border-radius: 50%;
  transform: rotate(-1.5deg);
  opacity: .7;
}
.hero-lead { max-width: 590px; margin: 0; color: #5f6a63; font-size: clamp(15px, 1.4vw, 18px); line-height: 2; }
.flow { display: flex; gap: 0; margin: 38px 0 0; padding: 0; list-style: none; }
.flow li { min-width: 138px; display: flex; align-items: center; gap: 9px; position: relative; }
.flow li:not(:last-child)::after { content: ""; width: 25px; height: 1px; margin-left: auto; margin-right: 13px; background: var(--line); }
.flow b { color: var(--accent); font-family: ui-monospace, monospace; font-size: 11px; }
.flow span { font-size: 13px; font-weight: 700; }

.hero-art { position: relative; min-height: 380px; isolation: isolate; }
.hero-art::before {
  content: "";
  position: absolute;
  inset: 4% -5% 4% 7%;
  z-index: -3;
  background: var(--forest);
  border-radius: 54% 46% 47% 53% / 43% 58% 42% 57%;
  transform: rotate(4deg);
}
.hero-art::after {
  content: "";
  position: absolute;
  width: 55%; height: 65%;
  right: -16%; top: -8%; z-index: -4;
  border: 1px solid rgba(23, 63, 53, .28);
  border-radius: 50%;
}
.plate { position: absolute; border-radius: 50%; }
.plate-back { width: 235px; height: 235px; top: 34px; left: 5px; background: #e9a762; box-shadow: inset 0 0 0 22px #f2c087; transform: rotate(-12deg); opacity: .95; }
.plate-front {
  width: 288px; height: 288px; right: 16px; bottom: 4px;
  background: #f5e8cf;
  box-shadow: inset 0 0 0 21px #fffaf0, 0 26px 40px rgba(9, 32, 25, .28);
  transform: rotate(7deg);
}
.tomato { position: absolute; width: 65px; height: 60px; background: #e9603c; border-radius: 50% 50% 46% 54%; box-shadow: inset -8px -8px 0 rgba(137, 46, 25, .15); }
.tomato::after { content: "✦"; position: absolute; top: -14px; left: 20px; color: #5b7b4f; font-size: 27px; }
.tomato-a { top: 58px; left: 55px; }
.tomato-b { bottom: 64px; right: 55px; transform: scale(.78) rotate(22deg); }
.leaf { position: absolute; width: 45px; height: 100px; background: #86a55f; border-radius: 100% 0 100% 0; box-shadow: inset -8px -5px 0 rgba(40, 83, 54, .18); }
.leaf-a { top: 86px; right: 72px; transform: rotate(20deg); }
.leaf-b { bottom: 44px; left: 72px; transform: scale(.8) rotate(-52deg); background: #adc37b; }
.egg { position: absolute; width: 81px; height: 105px; left: 105px; top: 94px; background: #fffaf0; border-radius: 52% 48% 46% 54% / 60% 57% 43% 40%; transform: rotate(-18deg); box-shadow: 0 5px 12px rgba(40, 45, 30, .1); }
.egg::after { content: ""; position: absolute; width: 43px; height: 43px; left: 22px; top: 30px; background: #f1b940; border-radius: 50%; box-shadow: inset -5px -5px rgba(197, 125, 25, .16); }
.herb { position: absolute; left: 64px; top: 188px; width: 118px; height: 2px; background: #476c47; transform: rotate(-12deg); }
.herb::before, .herb::after { content: ""; position: absolute; width: 32px; height: 16px; background: #73945e; border-radius: 100% 0; transform: rotate(30deg); }
.herb::before { left: 24px; top: -14px; }.herb::after { left: 65px; top: 2px; transform: rotate(205deg); }
.art-note { position: absolute; right: -24px; top: 57px; color: #fff9ed; font-family: ui-serif, Georgia, serif; font-size: 14px; font-style: italic; line-height: 1.25; transform: rotate(8deg); }

.workspace {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 24px;
  align-items: stretch;
}
.workspace::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -36px -200vw 130px;
  background: rgba(255, 252, 245, .66);
  border-top: 1px solid rgba(24, 53, 46, .08);
}
.panel {
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(117, 113, 99, .17);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.panel-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 28px; }
.panel-heading h2 { margin: 2px 0 0; font-family: ui-serif, "Yu Mincho", serif; font-size: clamp(21px, 2.2vw, 27px); line-height: 1.35; }
.step-number { width: 48px; height: 48px; display: grid; place-items: center; flex: none; color: var(--card); background: var(--forest); border-radius: 50%; font-family: ui-monospace, monospace; font-size: 13px; box-shadow: 0 6px 18px rgba(23, 63, 53, .2); }

.drop-zone {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 30px 22px;
  color: #55645c;
  background: #f8f3e8;
  border: 1.5px dashed #a5aa9e;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  transition: border-color .2s, background .2s, transform .2s;
}
.drop-zone:hover, .drop-zone.is-dragging { background: #f2ebdc; border-color: var(--accent); transform: translateY(-2px); }
.drop-zone:focus-within { outline: 3px solid rgba(233, 102, 67, .25); outline-offset: 3px; }
.drop-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 7px; color: var(--accent); background: #fffaf0; border-radius: 50%; box-shadow: 0 8px 22px rgba(77, 65, 44, .1); }
.drop-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.drop-zone strong { color: var(--forest); font-size: 17px; }
.drop-zone > span:not(.drop-icon) { font-size: 13px; }
.drop-zone small { margin-top: 8px; color: #7e857f; font-size: 11px; }

.photo-preview { position: relative; height: 292px; overflow: hidden; border-radius: 20px; background: #d8d4ca; }
.photo-preview img { width: 100%; height: 100%; display: block; object-fit: cover; }
.preview-shade { position: absolute; inset: auto 0 0; padding: 40px 18px 14px; color: white; background: linear-gradient(transparent, rgba(10, 27, 22, .8)); font-size: 12px; }
.icon-button { position: absolute; top: 12px; right: 12px; width: 39px; height: 39px; display: grid; place-items: center; padding: 0; color: white; background: rgba(11, 30, 24, .7); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; cursor: pointer; }
.icon-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, opacity .18s;
}
.button:hover:not(:disabled) { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(233, 102, 67, .34); outline-offset: 3px; }
.button:disabled { cursor: not-allowed; opacity: .45; }
.button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-full { width: 100%; }
.button-dark { margin-top: 17px; color: white; background: var(--forest); box-shadow: 0 8px 22px rgba(23, 63, 53, .18); }
.button-accent { min-height: 58px; color: white; background: var(--accent); box-shadow: 0 10px 24px rgba(201, 76, 44, .25); }
.button-accent:hover:not(:disabled) { background: var(--accent-dark); box-shadow: 0 13px 28px rgba(201, 76, 44, .3); }
.button-outline { min-height: 46px; background: transparent; border: 1px solid #94a39c; color: var(--forest); }
.privacy-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 13px 0 0; color: #777f79; font-size: 11px; }
.privacy-note svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.field-group { margin-bottom: 24px; }
.field-group label, .field-group legend { display: block; margin-bottom: 8px; color: var(--forest); font-size: 13px; font-weight: 850; }
.field-group textarea, .field-group select {
  width: 100%;
  color: var(--ink);
  background: #fbf8f1;
  border: 1px solid #cac7bd;
  border-radius: 13px;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.field-group textarea { min-height: 114px; padding: 14px 15px; line-height: 1.7; resize: vertical; }
.field-group select { height: 47px; padding: 0 42px 0 14px; appearance: none; cursor: pointer; }
.field-group textarea:focus, .field-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(233, 102, 67, .13); }
.field-group textarea.has-result { background: #f7f9f2; border-color: #9bab83; }
.field-help { margin: 7px 2px 0; color: #7a827c; font-size: 11px; }
.field-help.is-warning { color: #ad5a35; }
.condition-grid { display: grid; grid-template-columns: 130px 1fr; gap: 18px; }
.compact { min-width: 0; }
.select-wrap { position: relative; }
.select-wrap::after { content: "⌄"; position: absolute; right: 15px; top: 7px; pointer-events: none; color: #637068; }
fieldset { min-width: 0; margin-inline: 0; padding: 0; border: 0; }
.segmented { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.segmented label { margin: 0; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented span { height: 47px; display: grid; place-items: center; color: #5e6862; background: #f5f1e8; border: 1px solid #d4d0c7; border-radius: 12px; cursor: pointer; font-size: 12px; transition: all .18s; }
.segmented input:checked + span { color: white; background: var(--forest); border-color: var(--forest); box-shadow: 0 5px 14px rgba(23, 63, 53, .17); }
.segmented input:focus-visible + span { outline: 3px solid rgba(233, 102, 67, .25); outline-offset: 2px; }
.priority-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-bottom: 28px; }
.toggle-card { position: relative; min-height: 84px; display: grid; grid-template-columns: 37px 1fr 27px; align-items: center; gap: 10px; padding: 13px; background: #f8f4eb; border: 1px solid #d5d0c6; border-radius: 15px; cursor: pointer; transition: all .18s; }
.toggle-card input { position: absolute; opacity: 0; }
.toggle-card:has(input:checked) { background: #edf2e5; border-color: #8fa273; box-shadow: inset 0 0 0 1px #8fa273; }
.toggle-card:has(input:focus-visible) { outline: 3px solid rgba(233, 102, 67, .25); outline-offset: 2px; }
.toggle-icon { width: 37px; height: 37px; display: grid; place-items: center; color: var(--accent-dark); background: white; border-radius: 11px; font-family: ui-serif, Georgia, serif; font-size: 18px; font-weight: 800; }
.toggle-card strong, .toggle-card small { display: block; }
.toggle-card strong { font-size: 13px; }
.toggle-card small { margin-top: 2px; color: #7a817c; font-size: 9px; line-height: 1.35; }
.toggle-card i { width: 26px; height: 16px; position: relative; background: #c6c7c1; border-radius: 20px; transition: background .18s; }
.toggle-card i::after { content: ""; position: absolute; width: 12px; height: 12px; top: 2px; left: 2px; background: white; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: transform .18s; }
.toggle-card input:checked ~ i { background: var(--forest-2); }
.toggle-card input:checked ~ i::after { transform: translateX(10px); }
.generate-button { justify-content: space-between; padding-inline: 24px; }

.status-box {
  width: min(720px, calc(100% - 40px));
  min-height: 90px;
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(23,63,53,.14);
  border-radius: 18px;
  text-align: left;
}
.status-box strong { display: block; font-size: 14px; }
.status-box p { margin: 2px 0 0; color: #6e7770; font-size: 12px; }
.spinner { width: 30px; height: 30px; flex: none; border: 3px solid #d9ded7; border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.results { width: min(1180px, calc(100% - 40px)); margin: 96px auto 90px; scroll-margin-top: 24px; }
.results-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 29px; }
.results-heading h2 { margin: 8px 0 0; color: var(--forest); font-family: ui-serif, "Yu Mincho", serif; font-size: clamp(30px, 4vw, 47px); line-height: 1.3; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.menu-card { position: relative; overflow: hidden; background: var(--card); border: 1px solid rgba(83, 93, 83, .17); border-radius: 23px; box-shadow: 0 18px 46px rgba(39, 54, 46, .09); }
.menu-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: var(--card-accent, var(--accent)); }
.menu-card:nth-child(2) { --card-accent: #92a96f; margin-top: 22px; }
.menu-card:nth-child(3) { --card-accent: #d9a35d; margin-top: 44px; }
.menu-top { padding: 26px 25px 20px; border-bottom: 1px solid #e5dfd2; }
.menu-index { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.menu-index b { color: var(--card-accent, var(--accent)); font-family: ui-serif, Georgia, serif; font-size: 26px; font-style: italic; }
.time-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; color: #536158; background: #f1eee5; border-radius: 20px; font-size: 11px; font-weight: 800; }
.time-badge svg { width: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-card h3 { margin: 0; color: var(--forest); font-family: ui-serif, "Yu Mincho", serif; font-size: 23px; line-height: 1.45; }
.tagline { margin: 7px 0 0; color: #707871; font-size: 12px; line-height: 1.7; }
.menu-body { padding: 8px 25px 25px; }
.menu-section { padding: 17px 0; border-bottom: 1px solid #ebe6dd; }
.menu-section:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-section h4 { display: flex; align-items: center; gap: 7px; margin: 0 0 10px; color: var(--forest); font-size: 12px; letter-spacing: .03em; }
.menu-section h4 svg { width: 17px; height: 17px; color: var(--card-accent, var(--accent)); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.ingredient-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.ingredient-list li { display: inline-flex; gap: 5px; padding: 5px 8px; color: #536158; background: #f2f3ec; border-radius: 7px; font-size: 10px; }
.ingredient-list li span { color: #81877f; }
.missing-list li { color: #8c563c; background: #fcf0e8; }
.empty-missing { margin: 0; color: #668154; font-size: 11px; font-weight: 750; }
.steps { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps li { position: relative; min-height: 28px; padding: 1px 0 8px 31px; color: #526057; font-size: 11px; line-height: 1.7; counter-increment: step; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 22px; height: 22px; display: grid; place-items: center; color: white; background: var(--forest); border-radius: 50%; font-family: ui-monospace, monospace; font-size: 9px; }
.tip { margin: 0; padding: 11px 12px; color: #675e4c; background: #f6f0df; border-left: 3px solid #d9a35d; border-radius: 7px; font-size: 10px; line-height: 1.65; }
.food-safety { max-width: 750px; margin: 24px auto 0; color: #777e78; font-size: 10px; text-align: center; }

footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 28px 0 40px; display: flex; justify-content: space-between; gap: 20px; color: #7a7f79; border-top: 1px solid rgba(24,53,46,.15); font-size: 10px; letter-spacing: .06em; }
footer p { margin: 0; } footer span { color: var(--accent); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr .72fr; gap: 22px; }
  .hero-art { transform: scale(.83); transform-origin: center; }
  .workspace { grid-template-columns: 1fr; max-width: 720px; }
  .photo-panel, .settings-panel { padding: 34px; }
  .menu-grid { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
  .menu-card:nth-child(2), .menu-card:nth-child(3) { margin-top: 0; }
  .results-heading { max-width: 720px; margin-inline: auto; }
}

@media (max-width: 680px) {
  .site-header { width: calc(100% - 28px); height: 70px; }
  .studio-name { display: none; }
  .brand { font-size: 12px; }
  .hero { width: calc(100% - 28px); min-height: 0; grid-template-columns: 1fr; padding: 50px 0 44px; }
  .hero h1 { font-size: clamp(39px, 12.5vw, 56px); }
  .hero-lead { font-size: 15px; line-height: 1.85; }
  .flow { width: 100%; justify-content: space-between; margin-top: 30px; }
  .flow li { min-width: 0; gap: 5px; }
  .flow li:not(:last-child)::after { width: 12px; margin: 0 7px; }
  .flow span { font-size: 11px; }
  .hero-art { min-height: 305px; transform: scale(.78); transform-origin: top center; margin-bottom: -62px; }
  .hero-art::before { inset-inline: -2%; }
  .art-note { right: 3px; }
  .workspace { width: calc(100% - 24px); gap: 15px; }
  .workspace::before { top: -20px; }
  .panel { padding: 23px 18px 24px; border-radius: 22px; }
  .panel-heading { margin-bottom: 21px; }
  .step-number { width: 42px; height: 42px; }
  .drop-zone, .photo-preview { min-height: 250px; height: 250px; }
  .condition-grid { grid-template-columns: 1fr; gap: 0; }
  .segmented { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .priority-row { grid-template-columns: 1fr; }
  .toggle-card { min-height: 74px; }
  .results { width: calc(100% - 24px); margin-top: 70px; }
  .results-heading { align-items: stretch; flex-direction: column; }
  .results-heading .button { width: 100%; }
  .menu-top { padding-inline: 21px; }
  .menu-body { padding-inline: 21px; }
  .status-box { width: calc(100% - 24px); }
  footer { width: calc(100% - 28px); flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
  .segmented { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 38px; }
  .flow span { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


.billing-notice {
  width: min(980px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  margin: 0 auto 38px;
  padding: 20px 24px;
  color: #28483f;
  background: #edf3e9;
  border: 1px solid #a8bb8a;
  border-radius: 18px;
}
.notice-icon { width: 36px; height: 36px; display: grid; place-items: center; color: white; background: var(--forest); border-radius: 50%; font-family: ui-serif, Georgia, serif; font-size: 18px; font-weight: 800; }
.billing-notice strong { display: block; margin-bottom: 3px; font-size: 14px; }
.billing-notice p { margin: 0; font-size: 13px; font-weight: 700; line-height: 1.7; }
.billing-notice small { display: block; margin-top: 5px; color: #63736c; font-size: 10px; line-height: 1.6; }
.prompt-section { max-width: 980px; }
.prompt-card { padding: clamp(20px, 3vw, 32px); background: var(--card); border: 1px solid rgba(83, 93, 83, .17); border-radius: 23px; box-shadow: var(--shadow); }
.prompt-card > label { display: block; margin-bottom: 10px; color: var(--forest); font-size: 13px; font-weight: 850; }
.prompt-card textarea { width: 100%; min-height: 420px; padding: 18px; color: #253d36; background: #f8f5ed; border: 1px solid #c7c9c0; border-radius: 14px; outline: none; font-family: "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", system-ui, sans-serif; font-size: 13px; line-height: 1.8; resize: vertical; }
.prompt-card textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(233, 102, 67, .13); }
.prompt-actions { display: flex; gap: 12px; margin-top: 16px; }
.prompt-actions .button { flex: 1; }
.copy-feedback { min-height: 1.6em; margin: 11px 2px 0; color: #5c6d65; font-size: 11px; }
.next-steps { margin-top: 22px; padding: 24px; background: rgba(255, 253, 248, .72); border: 1px solid rgba(83, 93, 83, .14); border-radius: 18px; }
.next-steps h3 { margin: 0 0 15px; font-family: ui-serif, "Yu Mincho", serif; font-size: 19px; }
.next-steps ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.next-steps li { display: flex; align-items: center; gap: 10px; padding: 13px; background: #f7f2e7; border-radius: 12px; font-size: 11px; font-weight: 700; line-height: 1.5; }
.next-steps li b { width: 25px; height: 25px; display: grid; place-items: center; flex: none; color: white; background: var(--forest); border-radius: 50%; font-size: 10px; }
.next-steps > p { margin: 16px 0 0; color: #68736d; font-size: 11px; }

@media (max-width: 680px) {
  .billing-notice { width: calc(100% - 24px); grid-template-columns: 34px 1fr; gap: 12px; padding: 17px 15px; }
  .notice-icon { width: 30px; height: 30px; font-size: 15px; }
  .billing-notice p { font-size: 12px; }
  .prompt-card textarea { min-height: 500px; font-size: 12px; }
  .prompt-actions { flex-direction: column; }
  .prompt-actions .button { width: 100%; }
  .next-steps ol { grid-template-columns: 1fr; }
}
