@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --text-muted: #555555;
  --subtext: #666666;
  --border-card: #1f1f1f;
  --border-input: #202124;
  --accent: #a3844f;
  --accent-hover: #8c7041;
  --error: #d93025;
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.45;
  padding: 48px 24px 96px 24px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 480px;
  margin: 0 auto;
}

/* Header Section (Intake State) */
.header-logo {
  width: 68px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}

.header-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}

.header-title .icon {
  font-size: 22px;
}

.header-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 24px;
}

/* Form Card Container */
.form-card {
  border: 1px solid var(--border-card);
  border-radius: 6px;
  padding: 24px 20px 28px 20px;
  background: #ffffff;
}

.form-group {
  margin-bottom: 22px;
}

label.field-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
  color: #111111;
}

.subtext {
  font-size: 12px;
  color: var(--subtext);
  margin-bottom: 7px;
  display: block;
  line-height: 1.35;
}

/* Form Controls */
input[type="text"], 
input[type="email"], 
textarea,
button,
select {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13.5px;
}

input[type="text"], 
input[type="email"], 
textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border-input);
  border-radius: 4px;
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}

input[type="text"]::placeholder, 
input[type="email"]::placeholder, 
textarea::placeholder {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #777777;
  font-size: 13px;
  opacity: 1;
}

input[type="text"]:focus, 
input[type="email"]:focus, 
textarea:focus {
  border-color: var(--accent);
}

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

/* Options */
.options-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 6px;
}

.option-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  color: #222222;
}

.option-label input {
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* Submit Button */
button.submit-btn {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

button.submit-btn:hover { 
  background: var(--accent-hover); 
}

button.submit-btn:disabled { 
  opacity: 0.6; 
  cursor: not-allowed; 
}

.status-msg { 
  margin-top: 12px; 
  font-size: 13px; 
}

.error-msg { 
  color: var(--error); 
}

/* Confirmation Page View (Matches souliq.llc/begin) */
.confirmation-view {
  max-width: 580px;
  margin: 10px auto 0 auto;
}

.confirmation-logo {
  width: 135px;
  height: auto;
  margin-bottom: 42px;
  display: block;
}

.confirmation-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.18;
  color: #1a1a1a;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
  max-width: 540px;
}

.button-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.btn-pill {
  display: inline-block;
  background-color: var(--accent);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-pill:hover {
  background-color: var(--accent-hover);
}