/*
Theme Name: Tiempo Cero · Casting
Theme URI: https://sonariva.com/tiempo-cero/
Author: Sonariva
Author URI: https://sonariva.com/
Description: Landing visual y portal de casting para el reality online Tiempo Cero. Incluye bases, proceso de selección y formulario con vídeo obligatorio.
Version: 1.0.3
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: tiempo-cero-casting
*/

:root {
  --tc-night: #0b1a29;
  --tc-night-deep: #050b13;
  --tc-panel: #10263b;
  --tc-panel-light: #15334b;
  --tc-signal: #49b9eb;
  --tc-tension: #ff5a3a;
  --tc-critical: #ff334e;
  --tc-neutral: #f3e5ca;
  --tc-muted: #a9bed0;
  --tc-line: rgba(243, 229, 202, 0.15);
  --tc-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --tc-radius: 22px;
  --tc-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--tc-neutral);
  background: var(--tc-night-deep);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.tc-casting { background: var(--tc-night-deep); }
a { color: inherit; }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
.tc-shell { width: min(calc(100% - 40px), var(--tc-width)); margin: 0 auto; }
.tc-skip-link {
  position: absolute; left: -9999px; top: 10px; z-index: 100;
  padding: 10px 14px; background: var(--tc-neutral); color: var(--tc-night);
}
.tc-skip-link:focus { left: 10px; }

/* Header */
.tc-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--tc-line);
  background: rgba(5, 11, 19, 0.82);
  backdrop-filter: blur(18px);
}
.tc-header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.tc-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 190px; }
.tc-brand img { width: 116px; height: auto; display: block; filter: drop-shadow(0 0 14px rgba(73, 185, 235, 0.17)); }
.tc-brand small { color: var(--tc-muted); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; line-height: 1.25; }
.tc-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.tc-nav a {
  color: var(--tc-muted); text-decoration: none; padding: 9px 12px; border-radius: 999px;
  font-size: 0.83rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.tc-nav a:hover, .tc-nav a:focus-visible { color: var(--tc-neutral); background: rgba(73, 185, 235, 0.13); transform: translateY(-1px); }
.tc-nav .tc-nav-cta { color: var(--tc-night); background: var(--tc-signal); padding-inline: 17px; }
.tc-nav .tc-nav-cta:hover, .tc-nav .tc-nav-cta:focus-visible { color: var(--tc-night); background: var(--tc-neutral); }

/* Shared components */
.tc-kicker { margin: 0 0 12px; color: var(--tc-signal); font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.tc-heading { margin: 0; font-size: clamp(2rem, 5vw, 4.15rem); line-height: .98; letter-spacing: -.045em; text-wrap: balance; }
.tc-heading em { color: var(--tc-tension); font-style: normal; }
.tc-lead { max-width: 660px; margin: 20px 0 0; color: var(--tc-muted); font-size: clamp(1rem, 1.7vw, 1.2rem); }
.tc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 13px 21px; border: 1px solid transparent; border-radius: 999px;
  color: var(--tc-night); background: var(--tc-signal); font-weight: 850; text-decoration: none;
  letter-spacing: .02em; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.tc-btn-primary {
  min-height: 58px; padding-inline: 25px; color: #fff8e8; background: linear-gradient(135deg, #ff5a3a, #ff334e 62%, #b91f43);
  box-shadow: 0 12px 34px rgba(255, 51, 78, .22), inset 0 1px 0 rgba(255, 255, 255, .28);
  letter-spacing: .08em;
}
.tc-btn-primary:hover, .tc-btn-primary:focus-visible { color: var(--tc-night); background: var(--tc-neutral); box-shadow: 0 14px 36px rgba(243, 229, 202, .18); }
.tc-btn:hover, .tc-btn:focus-visible { color: var(--tc-night); background: var(--tc-neutral); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(73, 185, 235, .2); }
.tc-btn-secondary { color: var(--tc-neutral); background: transparent; border-color: var(--tc-line); }
.tc-btn-secondary:hover, .tc-btn-secondary:focus-visible { color: var(--tc-neutral); background: rgba(243, 229, 202, .1); }
.tc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid rgba(255, 90, 58, .35);
  border-radius: 999px; color: #ffc3b9; background: rgba(255, 90, 58, .1); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.tc-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--tc-critical); box-shadow: 0 0 0 5px rgba(255, 51, 78, .12); }
.tc-section { position: relative; padding: 112px 0; }
.tc-section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 36px; }
.tc-section-head > div:first-child { max-width: 760px; }
.tc-rule { width: 76px; height: 3px; margin-top: 20px; background: linear-gradient(90deg, var(--tc-tension), var(--tc-signal)); border-radius: 9px; }

/* Hero */
.tc-hero {
  position: relative; min-height: clamp(740px, 88vh, 920px); display: grid; align-items: center; overflow: hidden;
  background: radial-gradient(circle at 78% 40%, rgba(73, 185, 235, .22), transparent 32%), radial-gradient(circle at 12% 12%, rgba(255, 90, 58, .16), transparent 28%), linear-gradient(120deg, #071421 0%, var(--tc-night) 54%, #081b2c 100%);
}
.tc-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image: linear-gradient(rgba(243, 229, 202, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(243, 229, 202, .045) 1px, transparent 1px), linear-gradient(112deg, transparent 38%, rgba(73, 185, 235, .12) 49%, transparent 60%);
  background-size: 46px 46px, 46px 46px, 220% 100%; background-position: 0 0, 0 0, 120% 0;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%); animation: tc-hero-signal 16s linear infinite;
}
.tc-hero::after { content: ""; position: absolute; width: 500px; height: 500px; right: -220px; bottom: -280px; border: 1px solid rgba(255, 90, 58, .35); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255, 90, 58, .06), 0 0 0 90px rgba(73, 185, 235, .04); animation: tc-hero-ring 18s linear infinite; }
.tc-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr); align-items: center; gap: 50px; padding-block: 120px; }
.tc-hero-copy { max-width: 700px; animation: tc-hero-rise .75s ease both; }
.tc-hero-logo { width: min(390px, 80%); margin: 25px 0 13px; filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .4)); }
.tc-hero-urgency { display: inline-flex; align-items: baseline; gap: 10px; margin: 0 0 17px; padding: 9px 13px 9px 0; border-top: 1px solid rgba(255, 90, 58, .5); border-bottom: 1px solid rgba(255, 90, 58, .24); }
.tc-hero-urgency strong { color: #fff3d6; font-size: clamp(1.05rem, 2.3vw, 1.55rem); letter-spacing: .08em; line-height: 1; text-shadow: 0 0 22px rgba(255, 90, 58, .38); }
.tc-hero-urgency span { color: #ff8a74; font-size: .67rem; font-weight: 900; letter-spacing: .16em; }
.tc-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.tc-hero-meta { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px; color: var(--tc-muted); font-size: .83rem; }
.tc-hero-meta strong { display: block; color: var(--tc-neutral); font-size: 1.1rem; letter-spacing: .04em; }
.tc-clock-wrap { display: grid; place-items: center; min-height: 460px; }
.tc-clock-face {
  position: relative; width: min(450px, 78vw); aspect-ratio: 1; display: grid; place-items: center; isolation: isolate;
  border: 1px solid rgba(243, 229, 202, .22); border-radius: 50%; overflow: hidden;
  background: radial-gradient(circle at 50% 43%, rgba(73, 185, 235, .16) 0 13%, rgba(16, 38, 59, .74) 14% 43%, rgba(5, 11, 19, .55) 66% 100%);
  box-shadow: inset 0 0 60px rgba(73, 185, 235, .1), 0 0 0 12px rgba(243, 229, 202, .025), 0 0 0 35px rgba(73, 185, 235, .035), 0 30px 90px rgba(0, 0, 0, .42);
}
.tc-clock-face::before, .tc-clock-face::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.tc-clock-face::before { inset: 5%; border: 1px solid rgba(73, 185, 235, .27); box-shadow: 0 0 28px rgba(73, 185, 235, .16); animation: tc-clock-breathe 4.5s ease-in-out infinite; }
.tc-clock-face::after { inset: 18%; border: 1px solid rgba(255, 90, 58, .28); border-top-color: rgba(255, 90, 58, .75); animation: tc-spin 18s linear infinite reverse; }
.tc-clock-orbit { position: absolute; border-radius: 50%; pointer-events: none; }
.tc-clock-orbit-one { inset: 2.5%; border: 1px solid rgba(243, 229, 202, .18); border-left-color: var(--tc-tension); border-bottom-color: rgba(73, 185, 235, .72); animation: tc-spin 24s linear infinite; }
.tc-clock-orbit-two { inset: 13%; border: 1px dashed rgba(73, 185, 235, .28); animation: tc-spin 14s linear infinite reverse; }
.tc-clock-ticks { position: absolute; inset: 7%; z-index: 1; border-radius: 50%; background: repeating-conic-gradient(from 0deg, rgba(243, 229, 202, .72) 0deg 1deg, transparent 1deg 30deg); mask: radial-gradient(circle, transparent 0 78%, #000 79% 82%, transparent 83%); }
.tc-clock-scan { position: absolute; inset: 8%; z-index: 2; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0 72%, rgba(73, 185, 235, .18) 82%, transparent 89% 100%); filter: blur(1px); animation: tc-scan 6s linear infinite; pointer-events: none; }
.tc-clock-hand { position: absolute; left: 50%; bottom: 50%; z-index: 3; width: 3px; height: 31%; border-radius: 10px; transform-origin: 50% 100%; transform: translateX(-50%) rotate(28deg); background: var(--tc-tension); box-shadow: 0 0 22px rgba(255, 90, 58, .55); animation: tc-tick 12s linear infinite; opacity: .7; }
.tc-clock-hand::after { content: ""; position: absolute; bottom: -8px; left: 50%; width: 15px; height: 15px; transform: translateX(-50%); border-radius: 50%; background: var(--tc-neutral); box-shadow: 0 0 0 7px rgba(243, 229, 202, .1); }
.tc-clock-core { position: relative; z-index: 4; display: grid; justify-items: center; gap: 12px; width: 74%; padding: 28px 18px 23px; border: 1px solid rgba(243, 229, 202, .18); border-radius: 24px; background: linear-gradient(145deg, rgba(5, 11, 19, .9), rgba(16, 38, 59, .76)); box-shadow: inset 0 0 30px rgba(73, 185, 235, .08), 0 18px 42px rgba(0, 0, 0, .32); }
.tc-clock-status { display: inline-flex; align-items: center; gap: 8px; color: var(--tc-signal); font-size: .62rem; font-weight: 900; letter-spacing: .16em; }
.tc-clock-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--tc-critical); box-shadow: 0 0 0 5px rgba(255, 51, 78, .12), 0 0 14px rgba(255, 51, 78, .55); animation: tc-clock-pulse 1.8s ease-in-out infinite; }
.tc-clock-readout { display: flex; align-items: baseline; gap: .07em; color: var(--tc-neutral); font-family: "SFMono-Regular", Consolas, monospace; font-size: clamp(1.7rem, 4.8vw, 2.9rem); font-weight: 900; letter-spacing: .03em; line-height: 1; text-shadow: 0 0 18px rgba(73, 185, 235, .56); }
.tc-clock-readout b { color: var(--tc-tension); font-weight: 500; animation: tc-clock-colon 1s steps(2, end) infinite; }
.tc-clock-core small { color: var(--tc-muted); font-size: .56rem; font-weight: 800; letter-spacing: .19em; text-align: center; }
@keyframes tc-spin { to { transform: rotate(360deg); } }
@keyframes tc-tick { 0% { transform: translateX(-50%) rotate(28deg); } 50% { transform: translateX(-50%) rotate(208deg); } 100% { transform: translateX(-50%) rotate(388deg); } }
@keyframes tc-scan { to { transform: rotate(360deg); } }
@keyframes tc-clock-breathe { 50% { opacity: .46; transform: scale(.985); } }
@keyframes tc-clock-pulse { 50% { opacity: .46; transform: scale(.78); } }
@keyframes tc-clock-colon { 50% { opacity: .28; } }

/* Intro / bases */
.tc-intro { background: linear-gradient(180deg, var(--tc-night) 0%, var(--tc-night-deep) 100%); }
.tc-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.tc-feature, .tc-base-card, .tc-process-card, .tc-form-panel, .tc-faq details { border: 1px solid var(--tc-line); border-radius: var(--tc-radius); background: linear-gradient(145deg, rgba(21, 51, 75, .82), rgba(16, 38, 59, .58)); box-shadow: var(--tc-shadow); }
.tc-feature { min-height: 210px; padding: 26px; }
.tc-feature-number { color: var(--tc-tension); font-family: "SFMono-Regular", Consolas, monospace; font-size: .76rem; font-weight: 800; letter-spacing: .1em; }
.tc-feature h3 { margin: 21px 0 8px; font-size: 1.18rem; }
.tc-feature p { margin: 0; color: var(--tc-muted); font-size: .95rem; }
.tc-bases { background: #071421; }
.tc-base-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; align-items: start; }
.tc-base-sticky { position: sticky; top: 112px; }
.tc-base-sticky .tc-heading { font-size: clamp(2.1rem, 4vw, 3.4rem); }
.tc-base-note { margin-top: 26px; padding: 17px 18px; border-left: 3px solid var(--tc-tension); color: var(--tc-muted); background: rgba(255, 90, 58, .07); border-radius: 0 14px 14px 0; font-size: .9rem; }
.tc-base-list { display: grid; gap: 13px; }
.tc-base-card { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 22px; box-shadow: none; }
.tc-base-index { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; color: var(--tc-night); background: var(--tc-signal); font-family: "SFMono-Regular", Consolas, monospace; font-weight: 900; }
.tc-base-card h3 { margin: 0 0 6px; font-size: 1.03rem; }
.tc-base-card p { margin: 0; color: var(--tc-muted); font-size: .92rem; }
.tc-base-card a { color: var(--tc-signal); }

/* Process */
.tc-process { background: radial-gradient(circle at 90% 50%, rgba(255, 51, 78, .08), transparent 30%), var(--tc-night); }
.tc-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.tc-process-card { position: relative; min-height: 215px; padding: 23px; box-shadow: none; }
.tc-process-card::after { content: ""; position: absolute; top: 39px; right: -16px; width: 27px; height: 1px; background: var(--tc-tension); }
.tc-process-card:last-child::after { display: none; }
.tc-process-card strong { color: var(--tc-tension); font-family: "SFMono-Regular", Consolas, monospace; font-size: .8rem; letter-spacing: .14em; }
.tc-process-card h3 { margin: 27px 0 8px; font-size: 1.08rem; }
.tc-process-card p { margin: 0; color: var(--tc-muted); font-size: .9rem; }

/* Casting form */
.tc-casting-section { background: linear-gradient(180deg, #071421 0%, #050b13 100%); }
.tc-casting-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; align-items: start; }
.tc-casting-side { position: sticky; top: 108px; }
.tc-casting-side .tc-heading { font-size: clamp(2.2rem, 4.6vw, 4rem); }
.tc-casting-side ul { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.tc-casting-side li { display: flex; gap: 10px; color: var(--tc-muted); font-size: .93rem; }
.tc-casting-side li::before { content: "✓"; color: var(--tc-signal); font-weight: 900; }
.tc-form-panel { padding: clamp(20px, 4vw, 36px); box-shadow: 0 30px 100px rgba(0, 0, 0, .4); }
.tc-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.tc-field { display: grid; gap: 7px; }
.tc-field-wide { grid-column: 1 / -1; }
.tc-field label { color: var(--tc-neutral); font-size: .82rem; font-weight: 800; letter-spacing: .03em; }
.tc-field label span { color: var(--tc-tension); }
.tc-field input:not([type="checkbox"]), .tc-field select, .tc-field textarea {
  width: 100%; border: 1px solid rgba(243, 229, 202, .18); border-radius: 12px; padding: 12px 13px; color: var(--tc-neutral); background: rgba(5, 11, 19, .68); outline: none; transition: border .2s ease, box-shadow .2s ease;
}
.tc-field textarea { min-height: 118px; resize: vertical; }
.tc-field input:focus, .tc-field select:focus, .tc-field textarea:focus { border-color: var(--tc-signal); box-shadow: 0 0 0 4px rgba(73, 185, 235, .12); }
.tc-field input::placeholder, .tc-field textarea::placeholder { color: #73899b; }
.tc-field small { color: var(--tc-muted); font-size: .76rem; }
.tc-upload {
  display: grid; place-items: center; gap: 9px; min-height: 155px; padding: 22px; border: 1px dashed rgba(73, 185, 235, .55); border-radius: 16px; color: var(--tc-muted); text-align: center; background: rgba(73, 185, 235, .055); cursor: pointer; transition: border .2s ease, background .2s ease;
}
.tc-upload:hover, .tc-upload.tc-dragover { border-color: var(--tc-tension); background: rgba(255, 90, 58, .08); }
.tc-upload strong { color: var(--tc-neutral); }
.tc-upload input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.tc-upload-name { color: var(--tc-signal); font-family: "SFMono-Regular", Consolas, monospace; font-size: .8rem; word-break: break-all; }
.tc-check { display: flex; align-items: flex-start; gap: 10px; color: var(--tc-muted); font-size: .81rem; }
.tc-check input { margin-top: 4px; accent-color: var(--tc-signal); }
.tc-check a { color: var(--tc-signal); }
.tc-form-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 22px; }
.tc-submit-note { max-width: 350px; margin: 0; color: var(--tc-muted); font-size: .75rem; }
.tc-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.tc-notice { margin-bottom: 20px; padding: 13px 15px; border-radius: 12px; color: var(--tc-neutral); background: rgba(73, 185, 235, .12); border: 1px solid rgba(73, 185, 235, .3); }
.tc-notice-error { background: rgba(255, 51, 78, .1); border-color: rgba(255, 51, 78, .35); }

/* FAQ / footer */
.tc-faq { background: var(--tc-night); }
.tc-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.tc-faq details { box-shadow: none; }
.tc-faq summary { padding: 18px 20px; color: var(--tc-neutral); font-weight: 800; cursor: pointer; list-style: none; }
.tc-faq summary::-webkit-details-marker { display: none; }
.tc-faq summary::after { content: "+"; float: right; color: var(--tc-signal); font-size: 1.3rem; line-height: 1; }
.tc-faq details[open] summary::after { content: "−"; }
.tc-faq details p { margin: -4px 20px 19px; color: var(--tc-muted); font-size: .9rem; }
.tc-footer { border-top: 1px solid var(--tc-line); background: #050b13; }
.tc-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 34px 0; color: var(--tc-muted); font-size: .82rem; }
.tc-footer-brand { display: flex; align-items: center; gap: 13px; }
.tc-footer-brand img { width: 86px; }
.tc-footer-production { display: inline-flex; align-items: center; gap: 12px; padding: 8px 12px; border: 1px solid rgba(73, 185, 235, .24); border-radius: 13px; background: rgba(16, 38, 59, .42); }
.tc-footer-production span { color: var(--tc-muted); font-size: .62rem; font-weight: 900; letter-spacing: .15em; }
.tc-footer-production img { width: 72px; height: 45px; display: block; object-fit: contain; }
.tc-footer a { color: var(--tc-signal); text-decoration: none; }

/* WordPress content fallback */
.tc-content { padding: 100px 0; min-height: 62vh; }
.tc-content article { max-width: 820px; margin: 0 auto; }
.tc-content h1, .tc-content h2, .tc-content h3 { line-height: 1.1; }
.tc-content p, .tc-content li { color: var(--tc-muted); }

@media (max-width: 900px) {
  .tc-hero-grid, .tc-base-layout, .tc-casting-layout { grid-template-columns: 1fr; }
  .tc-clock-wrap { order: -1; min-height: 360px; }
  .tc-clock-face { width: min(360px, 72vw); }
  .tc-base-sticky, .tc-casting-side { position: static; }
  .tc-process-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-process-card::after { display: none; }
}
@media (max-width: 680px) {
  .tc-shell { width: min(calc(100% - 28px), var(--tc-width)); }
  .tc-header-inner { min-height: 68px; align-items: flex-start; padding: 12px 0; }
  .tc-brand { min-width: 0; }
  .tc-brand img { width: 100px; }
  .tc-brand small { display: none; }
  .tc-nav { gap: 2px; }
  .tc-nav a { padding: 7px 8px; font-size: .68rem; }
  .tc-nav a:not(.tc-nav-cta) { display: none; }
  .tc-hero { min-height: 0; }
  .tc-hero-grid { padding-block: 58px 78px; gap: 26px; }
  .tc-hero-logo { width: min(310px, 85%); }
  .tc-hero-urgency { display: grid; gap: 5px; }
  .tc-hero-urgency span { font-size: .59rem; }
  .tc-hero-meta { gap: 13px; }
  .tc-section { padding: 76px 0; }
  .tc-section-head { display: block; margin-bottom: 25px; }
  .tc-feature-grid, .tc-process-grid, .tc-faq-grid { grid-template-columns: 1fr; }
  .tc-form-grid { grid-template-columns: 1fr; }
  .tc-field-wide { grid-column: auto; }
  .tc-form-actions { display: block; }
  .tc-submit-note { margin-top: 13px; }
  .tc-footer-inner { display: block; padding: 28px 0; }
  .tc-footer-production { margin-top: 18px; }
  .tc-footer-inner > div:last-child { margin-top: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

@keyframes tc-hero-signal { to { background-position: 0 0, 0 0, -120% 0; } }
@keyframes tc-hero-ring { to { transform: rotate(360deg); } }
@keyframes tc-hero-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
