/* =========================================================
   Dream TKY Trading LLC / StatusPal — site stylesheet
   Brand tokens are lifted directly from brand/icon-master.svg
   and brand/splash-static.svg (bodyGrad, headGrad, splashGrad).
   ========================================================= */

:root {
  /* -- brand color ramp, pulled from the actual SVG gradients -- */
  --teal-100: #EAF7F4;
  --teal-200: #B9ECDD;   /* splashGrad stop 0 */
  --teal-300: #8FE3D3;
  --teal-400: #4FB6B0;   /* splashGrad stop .55 */
  --teal-500: #3FB2AA;   /* headGrad stop 0 */
  --teal-600: #2FA79E;   /* bodyGrad stop .55 */
  --teal-700: #1E7E77;   /* deepest facet teal */
  --blue-500: #2E8FA6;   /* headGrad stop 1 */
  --blue-600: #2E6FD9;   /* bodyGrad stop 1 */
  --blue-900: #1E5D74;   /* splashGrad stop 1 */
  --coral-400: #FF9868;
  --coral-500: #FF7A59;  /* beak */
  --coral-600: #F0693D;  /* tail facet */

  --ink: #16323A;
  --ink-soft: #3E5B5E;
  --ink-faint: #6C8887;

  --paper: #FFFEFC;
  --paper-alt: #F5FAF8;
  --line: #DCE9E6;
  --line-soft: #E9F2F0;

  --max-text: 680px;
  --max-page: 1180px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-sm: 0 1px 2px rgba(22, 50, 58, 0.06), 0 1px 1px rgba(22, 50, 58, 0.04);
  --shadow-md: 0 16px 40px rgba(22, 50, 58, 0.14);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal-700);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 0 28px;
}

/* animated underline, used for inline text links throughout */
.u-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.25s var(--ease), color 0.2s ease;
  padding-bottom: 1px;
}

.u-link:hover {
  background-size: 100% 1px;
  color: var(--teal-700);
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 6px 0;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 254, 252, 0.9);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--max-page);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--line);
  transition: transform 0.35s var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(-8deg);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding-bottom: 4px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--teal-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease;
  font-family: var(--font-body);
}

.btn .arrow {
  transition: transform 0.25s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--blue-900);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--teal-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--teal-700);
  color: var(--teal-700);
}

.btn-invert {
  background: var(--paper);
  color: var(--blue-900);
}

.btn-invert:hover {
  background: var(--teal-100);
  color: var(--blue-900);
  transform: translateY(-1px);
}

/* ---------- Facet motif (small triangle bullets echoing the bird's feathers) ---------- */
.facet {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.facet-teal { background: var(--teal-600); }
.facet-coral { background: var(--coral-500); }
.facet-deep { background: var(--teal-700); }

/* ---------- Eyebrow / kicker label ---------- */
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--teal-600);
  display: inline-block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: -8%;
  right: -6%;
  width: 640px;
  max-width: 60vw;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.hero-constellation {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.hero-copy {
  padding-top: 8px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal-700);
}

.hero .lede {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--ink-faint);
  max-width: 46ch;
  border-left: 2px solid var(--line);
  padding-left: 12px;
}

/* ---------- Hero illustration column ---------- */
.hero-illustration {
  position: relative;
  padding-top: 26px;
}

.bird-figure {
  width: 78%;
  margin-left: auto;
  margin-right: 6%;
  transform: rotate(-5deg);
  filter: drop-shadow(0 18px 30px rgba(30, 93, 116, 0.18));
}

.status-tag {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 13px 16px;
  font-size: 0.82rem;
  max-width: 210px;
}

.status-tag .tag-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  font-weight: 700;
  margin-bottom: 4px;
}

.status-tag .tag-value {
  font-weight: 700;
  color: var(--ink);
}

.status-tag.tag-1 {
  top: 6%;
  left: -4%;
  transform: rotate(-4deg);
}

.status-tag.tag-2 {
  bottom: 4%;
  right: 2%;
  transform: rotate(3deg);
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-600);
  margin-right: 6px;
}

/* ---------- Sections ---------- */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--paper-alt);
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section-head p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 44ch;
}

/* ---------- Feature list (editorial rows, not card grid) ---------- */
.feature-list {
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.feature-row:hover {
  background: var(--paper-alt);
}

.feature-index {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--teal-300);
  font-style: italic;
}

.feature-name {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.feature-name h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-row p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}

/* ---------- About / record panel ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.about-statement {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  position: sticky;
  top: 110px;
}

.about-statement .accent {
  color: var(--teal-700);
  font-style: normal;
  font-weight: 600;
}

.record-panel {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 32px;
  overflow: hidden;
}

.record-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal-300), var(--teal-600) 55%, var(--blue-600));
}

.record-panel h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 18px;
}

.record-panel dl {
  margin: 0 0 24px;
}

.record-panel dt {
  font-weight: 700;
  color: var(--ink-faint);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 16px;
}

.record-panel dt:first-child {
  margin-top: 0;
}

.record-panel dd {
  margin: 4px 0 0;
  font-size: 1rem;
  color: var(--ink);
}

.notice {
  display: flex;
  gap: 14px;
  background: var(--teal-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 0.92rem;
  color: var(--ink);
}

.notice .facet {
  margin-top: 5px;
  width: 12px;
  height: 12px;
}

.notice strong {
  color: var(--teal-700);
}

/* ---------- CTA band (splash-gradient, direct brand reuse) ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal-200) 0%, var(--teal-400) 52%, var(--blue-900) 100%);
  color: #fff;
  border-radius: 22px;
  padding: 64px 48px;
  margin: 0 28px;
  max-width: calc(var(--max-page) - 56px);
  margin-left: auto;
  margin-right: auto;
}

.cta-watermark {
  position: absolute;
  bottom: -12%;
  right: -6%;
  width: 380px;
  max-width: 46vw;
  opacity: 0.9;
  pointer-events: none;
}

.cta-constellation {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 28px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--teal-300), var(--teal-600) 45%, var(--blue-600)) 1;
  background: var(--paper-alt);
  padding: 52px 0 28px;
  margin-top: 88px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 34ch;
  margin-top: 14px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  font-weight: 700;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.94rem;
}

.footer-col a:hover {
  color: var(--teal-700);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* =========================================================
   Text / legal pages
   ========================================================= */
.doc-header {
  position: relative;
  overflow: hidden;
  background: var(--paper-alt);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 44px;
}

.doc-header-watermark {
  position: absolute;
  top: -20%;
  right: -4%;
  width: 300px;
  opacity: 0.06;
  pointer-events: none;
}

.doc-header .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.doc-header h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  margin-bottom: 14px;
}

.doc-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.doc-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.doc-body-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}

.doc-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, var(--max-text));
  gap: 56px;
  padding: 52px 0 88px;
  align-items: start;
}

.doc-toc {
  position: sticky;
  top: 96px;
}

.doc-toc h2 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  font-weight: 700;
  margin-bottom: 14px;
}

.doc-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line);
}

.doc-toc li {
  margin: 0;
}

.doc-toc a {
  display: block;
  padding: 7px 0 7px 16px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: 0.87rem;
  color: var(--ink-soft);
  text-decoration: none;
  line-height: 1.35;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.doc-toc a:hover {
  color: var(--ink);
}

.doc-toc a.is-active {
  color: var(--teal-700);
  border-left-color: var(--teal-600);
  font-weight: 600;
}

.doc-toc-mobile {
  display: none;
  margin-bottom: 36px;
}

.doc-toc-mobile summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-700);
  padding: 12px 16px;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.doc-toc-mobile ol {
  list-style: none;
  margin: 10px 0 0;
  padding: 6px 4px;
}

.doc-toc-mobile a {
  display: block;
  padding: 8px 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-decoration: none;
}

.doc-toc-mobile a:hover {
  color: var(--teal-700);
}

.doc-content h2 {
  font-size: 1.28rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 2.6em;
  margin-bottom: 0.7em;
  scroll-margin-top: 96px;
}

.doc-content h2:first-child {
  margin-top: 0;
}

.doc-content h2::before {
  content: "";
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  background: var(--coral-500);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  transform: translateY(-3px);
}

.doc-content p,
.doc-content li {
  color: var(--ink);
  font-size: 1rem;
}

.doc-content ul {
  padding-left: 1.3em;
}

.back-to-top {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
  padding: 8px 0 0;
}

.contact-intro h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  margin-bottom: 18px;
}

.contact-intro p {
  color: var(--ink-soft);
}

.contact-panel {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 36px;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal-300), var(--teal-600) 55%, var(--blue-600));
}

.contact-panel h2 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-email {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--teal-300);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-email:hover {
  color: var(--teal-700);
  border-color: var(--teal-600);
}

.contact-hint {
  color: var(--ink-faint);
  font-size: 0.88rem;
  margin-top: 10px;
}

.checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.checklist .facet {
  margin-top: 6px;
}

.contact-caution {
  margin-top: 22px;
  font-size: 0.86rem;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-illustration {
    order: -1;
    max-width: 340px;
    margin: 0 auto 8px;
  }

  .about-grid,
  .section-head,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-statement {
    position: static;
  }

  .doc-layout {
    grid-template-columns: 1fr;
  }

  .doc-toc {
    display: none;
  }

  .doc-toc-mobile {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 28px 20px;
    display: none;
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 11px 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    padding: 56px 0 52px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-tag {
    max-width: 170px;
    padding: 10px 12px;
    font-size: 0.76rem;
  }

  .section {
    padding: 56px 0;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px 0;
  }

  .feature-index {
    font-size: 1.2rem;
  }

  .cta-band {
    padding: 44px 26px;
    margin: 0 16px;
  }

  .cta-watermark {
    width: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .record-panel,
  .contact-panel {
    padding: 26px 22px;
  }
}
