/* [project]/src/app/globals.css [app-client] (css) */
@layer theme {
  :root, :host {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
      "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
      "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

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

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring:where(:not(iframe)) {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

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

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible;
  }

  .fixed {
    position: fixed;
  }

  .block {
    display: block;
  }

  .flex {
    display: flex;
  }

  .inline {
    display: inline;
  }

  .table {
    display: table;
  }

  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
}

:root {
  --bg: #f6f7f9;
  --surface: #fff;
  --border: #e2e5ea;
  --text: #16191d;
  --muted: #646c78;
  --accent: #1f5fd0;
  --accent-soft: #eaf1fd;
  --danger: #b4232a;
  --ok: #1a7f47;
  --radius: 10px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101317;
    --surface: #171b21;
    --border: #2a3038;
    --text: #e9ecf1;
    --muted: #9aa3b0;
    --accent: #6ea2ff;
    --accent-soft: #1a2437;
    --danger: #ff8a8a;
    --ok: #5cc98d;
  }
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
}

.shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

main.shell {
  flex: 1;
  padding-top: 28px;
  padding-bottom: 48px;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

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

.brand-mark {
  background: var(--accent);
  color: #fff;
  letter-spacing: .04em;
  border-radius: 8px;
  place-items: center;
  width: 34px;
  height: 34px;
  font-size: 13px;
  font-weight: 700;
  display: grid;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
  display: block;
}

.brand em {
  color: var(--muted);
  font-size: 12.5px;
  font-style: normal;
  display: block;
}

.nav {
  gap: 6px;
  display: flex;
}

.nav a {
  color: var(--muted);
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 14px;
  text-decoration: none;
}

.nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 16px 0;
  font-size: 13px;
}

.layout {
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  display: grid;
}

.result-column {
  overscroll-behavior: contain;
  max-height: calc(100vh - 32px);
  position: sticky;
  top: 16px;
  overflow-y: auto;
}

@media (max-width: 940px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .result-column {
    max-height: none;
    position: static;
    overflow-y: visible;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.card + .card {
  margin-top: 18px;
}

.card-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 650;
}

.card-subtitle {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 13px;
}

.field {
  margin-bottom: 14px;
}

.field > label, .fieldset-legend {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
  display: block;
}

.field-hint {
  color: var(--muted);
  margin: 5px 0 0;
  font-size: 12.5px;
}

.field-error {
  color: var(--danger);
  margin: 5px 0 0;
  font-size: 12.5px;
}

input[type="text"], input[type="url"], select, textarea {
  border: 1px solid var(--border);
  background: var(--bg);
  width: 100%;
  color: var(--text);
  font: inherit;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
}

textarea {
  resize: vertical;
  min-height: 78px;
}

input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.row {
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 10px;
  display: grid;
}

.preview-field, .preview-required, .preview-hint-required {
  display: none;
}

:is(form:has(#ctaId option[value="maquette"]:checked) .preview-field, form:has(#ctaId option[value="site-complet"]:checked) .preview-field, form:has(#ctaId option[value="apercu-live"]:checked) .preview-field) {
  display: block;
}

:is(form:has(#ctaId option[value="apercu-live"]:checked) .preview-required, form:has(#ctaId option[value="apercu-live"]:checked) .preview-hint-required) {
  display: inline;
}

form:has(#ctaId option[value="apercu-live"]:checked) .preview-hint-optional {
  display: none;
}

.checkline {
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 13.5px;
  display: flex;
}

.checkline input {
  flex-shrink: 0;
  margin-top: 3px;
}

.checkline span small {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
}

button:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  width: 100%;
  padding: 10px 14px;
  font-weight: 600;
}

button.primary:hover:not(:disabled) {
  filter: brightness(1.08);
  color: #fff;
}

.button-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  display: flex;
}

button.small {
  padding: 5px 10px;
  font-size: 13px;
}

.empty {
  color: var(--muted);
  text-align: center;
  padding: 44px 20px;
}

.subject-list {
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.subject-item {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 11px;
  font-size: 14px;
  display: flex;
}

.subject-item span {
  overflow-wrap: anywhere;
  min-width: 0;
}

.tabs {
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  display: flex;
}

.tab {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 13.5px;
}

.tab[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

.tab[aria-pressed="true"]:hover {
  color: #fff;
}

.tone-guidance {
  background: var(--accent-soft);
  color: var(--text);
  border-radius: 8px;
  margin: 0 0 12px;
  padding: 9px 12px;
  font-size: 13px;
}

.mail-meta {
  color: var(--muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 12.5px;
  display: flex;
}

.mail-subject {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 9px 12px;
  font-size: 14px;
}

.mail-subject strong {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-right: 6px;
  font-size: 12.5px;
  font-weight: 600;
}

.mail-body {
  border: 1px solid var(--border);
  background: var(--bg);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  border-radius: 8px;
  margin: 0;
  padding: 16px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
}

.notice {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 9px 12px;
  font-size: 13px;
}

.notice.warn {
  border-color: var(--danger);
  color: var(--danger);
}

.copied {
  color: var(--ok);
  font-weight: 600;
}

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

.history-list li + li {
  border-top: 1px solid var(--border);
}

.history-link {
  color: inherit;
  border-radius: 8px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin: 0 -10px;
  padding: 13px 10px;
  text-decoration: none;
  display: flex;
}

.history-link:hover {
  background: var(--accent-soft);
}

.history-main {
  min-width: 0;
}

.history-link h3 {
  color: var(--accent);
  margin: 0 0 3px;
  font-size: 15px;
}

.history-excerpt {
  color: var(--muted);
  overflow-wrap: anywhere;
  margin: 5px 0 0;
  font-size: 13px;
}

.history-date {
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 13px;
}

.detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 18px;
  margin: 0 0 4px;
  display: grid;
}

.detail-grid dt {
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--muted);
  font-size: 12px;
}

.detail-grid dd {
  overflow-wrap: anywhere;
  margin: 1px 0 0;
  font-size: 14px;
}

.detail-note {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 14px;
  padding: 10px 12px;
}

.detail-note strong {
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--muted);
  margin-bottom: 3px;
  font-size: 12px;
  display: block;
}

.detail-note p {
  margin: 0;
  font-size: 14px;
}

.history-meta {
  color: var(--muted);
  font-size: 13px;
}

.tag {
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  margin-right: 5px;
  padding: 1px 8px;
  font-size: 12px;
  display: inline-block;
}

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/