.ctc-card { background: var(--secondary-container); color: var(--on-secondary-container); border-radius: var(--r-2xl); padding: 48px; }
.ctc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.ctc-statement { font-family: var(--display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 500; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 18px; }
.ctc-statement em { font-style: italic; color: var(--primary); }
.ctc-desc { font-size: 16px; line-height: 1.6; opacity: 0.85; margin-bottom: 24px; max-width: 50ch; }

.ctc-channels { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.ctc-ch { display: grid; grid-template-columns: 80px minmax(0, 1fr) 32px; gap: 14px; align-items: center; padding: 14px 18px; background: color-mix(in oklab, var(--surface) 60%, transparent); border-radius: var(--r-lg); transition: background .15s, padding .15s; }
.ctc-ch:hover { background: var(--surface-container-low); padding-left: 22px; }
.ctc-ch-k { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.65; }
.ctc-ch-v { font-size: 14px; font-weight: 500; min-width: 0; overflow-wrap: anywhere; }
.ctc-ch-arrow { color: var(--primary); }

.ctc-form { background: var(--surface-container-lowest); border-radius: var(--r-xl); padding: 28px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--elev-1); color: var(--on-surface); min-width: 0; }
.ctc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; min-width: 0; }
.ctc-field { display: flex; flex-direction: column; position: relative; min-width: 0; }
.ctc-field label { position: absolute; left: 16px; top: 14px; font-size: 14px; color: var(--on-surface-variant); pointer-events: none; transition: all .15s; background: var(--surface-container-lowest); padding: 0 4px; }
.ctc-field input, .ctc-field select, .ctc-field textarea {
  font: inherit; font-family: var(--body); font-size: 15px; padding: 14px 16px; border: 1px solid var(--outline-variant); border-radius: var(--r-md); background: var(--surface-container-lowest); color: var(--on-surface); outline: none; transition: border-color .15s, padding .15s;
  width: 100%; min-width: 0; max-width: 100%;
}
.ctc-field input:focus, .ctc-field select:focus, .ctc-field textarea:focus { border-color: var(--primary); border-width: 2px; padding: 13px 15px; }
.ctc-field input:focus + label, .ctc-field input:not(:placeholder-shown) + label,
.ctc-field textarea:focus + label, .ctc-field textarea:not(:placeholder-shown) + label,
.ctc-field select:focus + label, .ctc-field select:valid + label {
  top: -8px; font-size: 12px; color: var(--primary);
}
.ctc-field textarea { resize: vertical; min-height: 100px; }
.ctc-submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ctc-submit button { border: 0; cursor: pointer; }
.ctc-submit button:disabled { opacity: 0.6; cursor: not-allowed; }
.ctc-note { font-size: 12px; color: var(--on-surface-variant); }
.ctc-honeypot { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
