/* =========================================================================
   VALIANT TITLE — Design System (v2, ground-up)
   Apple-inspired: big type, deep whitespace, floating/tilting cards, bento
   layout. Palette: near-black ink + electric blue (from the logo) + white.
   ========================================================================= */

:root {
  --bg:            #ffffff;
  --ink:           #0a0e17;   /* near-black */
  --ink-soft:      #141a29;
  --ink-panel:     #0b1020;   /* dark section bg */

  --blue:          #1e57f0;   /* electric royal blue */
  --blue-600:      #1646cf;
  --blue-400:      #4f7bf5;
  --blue-050:      #eff3ff;
  --blue-100:      #dbe6ff;

  --muted:         #59626f;
  --muted-2:       #8b94a3;
  --line:          #e9edf3;
  --line-2:        #dde3ec;
  --card:          #ffffff;

  --radius:        14px;
  --radius-lg:     22px;
  --radius-xl:     30px;
  --radius-2xl:    40px;

  --shadow-1: 0 1px 2px rgba(10,14,23,.04), 0 3px 10px rgba(10,14,23,.05);
  --shadow-2: 0 10px 28px rgba(10,14,23,.09), 0 2px 8px rgba(10,14,23,.05);
  --shadow-float: 0 30px 70px -24px rgba(10,14,23,.32), 0 10px 30px -16px rgba(30,87,240,.20);
  --shadow-blue: 0 18px 44px -14px rgba(30,87,240,.55);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-h: 74px;
  --ease: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.075rem);
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  margin: 0 0 .4em;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.4vw + 1rem, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3vw + 1rem, 3.25rem); }
h3 { font-size: clamp(1.3rem, 1vw + 1rem, 1.65rem); }
p  { margin: 0 0 1em; }
a  { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: var(--blue); color: #fff; }

section[id], [id] { scroll-margin-top: calc(var(--header-h) + 24px); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 22px; }
@media (min-width: 768px) { .container { padding-inline: 32px; } }
.section { padding-block: clamp(64px, 8vw, 128px); }
.section--tight { padding-block: clamp(48px, 5vw, 84px); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  color: var(--blue); margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.center .eyebrow { justify-content: center; }
.lead { font-size: clamp(1.08rem, 0.5vw + 1rem, 1.3rem); color: var(--muted); line-height: 1.6; }
.section-head { max-width: 46ch; margin: 0 auto clamp(40px,5vw,68px); }
.section-head.center { text-align: center; }
.muted { color: var(--muted); }
.blue { color: var(--blue); }

/* Gradient headline word */
.grad {
  background: linear-gradient(120deg, var(--blue) 0%, #6f52ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; line-height: 1; letter-spacing: -0.01em;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-600); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #1b2333; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: #f7f8fb; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #eef1f6; }
.btn--ghost-light { background: rgba(255,255,255,.08); color:#fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.center .btn-row { justify-content: center; }

/* ---------- Header (floating pill nav) ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 14px 0; transition: padding .3s var(--ease);
}
.nav-shell {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 12px 10px 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(16,22,38,.08);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(10,14,23,.08);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled .nav-shell { background: rgba(255,255,255,.9); box-shadow: 0 12px 34px rgba(10,14,23,.12); }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 30px; width: auto; }
@media (min-width:768px){ .brand img { height: 34px; } }
.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav a { color: var(--ink); font-weight: 500; font-size: .95rem; padding: 9px 14px; border-radius: 999px; transition: background .15s ease, color .15s ease; }
.nav a:hover, .nav a[aria-current="page"] { background: rgba(30,87,240,.08); color: var(--blue); text-decoration: none; }
.nav-cta { display: none; }
@media (min-width: 980px) { .nav { display: block; } .nav-cta { display: inline-flex; } }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line-2);
  background: #fff; cursor: pointer; gap: 4px; flex-direction: column;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; display: block; }
@media (min-width: 980px) { .nav-toggle { display: none; } }

/* Mobile menu */
.m-menu {
  position: fixed; inset: 0; z-index: 200; background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; padding: 20px 22px 32px;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.m-menu[data-open="true"] { opacity: 1; pointer-events: auto; transform: none; }
.m-menu__head { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.m-menu__close { width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line-2); background:#fff; font-size: 22px; cursor: pointer; color: var(--ink); }
.m-menu__list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; }
.m-menu__list a { display: block; padding: 18px 4px; font-size: 1.6rem; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); border-bottom: 1px solid var(--line); }
.m-menu__foot { margin-top: auto; padding-top: 24px; display: grid; gap: 12px; }
.m-menu__foot .btn { width: 100%; }
.m-menu__contact { color: var(--muted); font-size: .95rem; }
@media (min-width: 980px) { .m-menu { display: none; } }

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: calc(var(--header-h) + 46px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: 0; inset: -20% -10% auto -10%; height: 620px;
  background:
    radial-gradient(60% 60% at 78% 8%, rgba(30,87,240,.14) 0%, transparent 60%),
    radial-gradient(46% 50% at 8% 4%, rgba(111,82,255,.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: 1.02fr .98fr; gap: 40px; padding-block: 40px 72px; } }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow-1); font-size: .82rem; font-weight: 600; color: var(--ink);
  margin-bottom: 24px;
}
.hero__kicker b { background: var(--blue); color: #fff; padding: 3px 9px; border-radius: 999px; font-size: .72rem; letter-spacing: .02em; }
.hero h1 { margin-bottom: 22px; }
.hero__lead { font-size: clamp(1.1rem, 0.6vw + 1rem, 1.32rem); color: var(--muted); max-width: 40ch; margin-bottom: 30px; }
.hero__cta { margin-bottom: 26px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .9rem; color: var(--muted); }
.hero__meta b { color: var(--ink); font-weight: 600; }

/* Hero stage — floating cards */
.stage { position: relative; }
.stage__img {
  position: relative; z-index: 1; border-radius: var(--radius-2xl); overflow: hidden;
  box-shadow: var(--shadow-float); aspect-ratio: 4/5; background: var(--ink-panel);
}
@media (min-width: 1000px){ .stage__img { aspect-ratio: 4/4.4; } }
.stage__img img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; z-index: 2; background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.7); border-radius: 18px; padding: 14px 16px;
  box-shadow: var(--shadow-2); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; gap: 12px;
}
.float-card svg { flex-shrink: 0; }
.float-card b { display: block; font-size: .95rem; line-height: 1.15; }
.float-card span { display: block; font-size: .78rem; color: var(--muted); }
.float-card--tl { top: 22px; left: -14px; animation: floaty 6s var(--ease) infinite alternate; }
.float-card--br { bottom: 26px; right: -12px; animation: floaty 7s var(--ease) .4s infinite alternate; }
.float-badge {
  position: absolute; z-index: 2; right: -10px; top: 46%;
  background: var(--blue); color: #fff; border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow-blue); text-align: center; animation: floaty 5.5s var(--ease) .2s infinite alternate;
}
.float-badge b { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.float-badge span { display: block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
@keyframes floaty { from { transform: translateY(0); } to { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce){ .float-card, .float-badge { animation: none; } }
@media (max-width: 560px){ .float-card--tl{ left: 8px; } .float-card--br{ right: 8px; } .float-badge{ right: 6px; } }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; padding-block: 26px; }
.trust__label { width: 100%; text-align: center; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.trust__name { font-weight: 600; color: var(--ink); opacity: .72; }

/* ---------- Bento / floating cards ---------- */
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 760px){ .bento { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.tile {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 26px; overflow: hidden;
  box-shadow: var(--shadow-1);
  transform: perspective(900px) rotateX(var(--ry,0)) rotateY(var(--rx,0));
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.tile:hover { box-shadow: var(--shadow-float); border-color: var(--blue-100); }
.tile__icon {
  width: 50px; height: 50px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-050); color: var(--blue); margin-bottom: 18px;
  transition: background .25s ease, color .25s ease, transform .25s var(--ease);
}
.tile:hover .tile__icon { background: var(--blue); color: #fff; transform: translateY(-2px); }
.tile__icon svg { width: 26px; height: 26px; }
.tile h3 { font-size: 1.22rem; margin-bottom: 8px; }
.tile p { font-size: .96rem; color: var(--muted); margin: 0; }
.tile__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: .92rem; color: var(--blue); }
.tile__link::after { content: "→"; transition: transform .2s ease; }
.tile:hover .tile__link::after { transform: translateX(4px); }
.tile--wide { grid-column: span 2; }
@media (min-width: 760px){ .tile--tall { grid-row: span 2; } }
.tile--blue { background: linear-gradient(150deg, var(--blue) 0%, #1a3fc4 100%); color: #fff; border-color: transparent; }
.tile--blue h3, .tile--blue p { color: #fff; }
.tile--blue p { color: rgba(255,255,255,.85); }
.tile--blue .tile__icon { background: rgba(255,255,255,.16); color: #fff; }
.tile--blue .tile__link { color: #fff; }
.tile--image { padding: 0; min-height: 240px; border: none; color: #fff; }
.tile--image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.tile--image .tile__cap { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; color: #fff; }
.tile--image .tile__cap h3 { color: #fff; margin-bottom: 2px; }
.tile--image .tile__cap p { color: rgba(255,255,255,.85); }
.tile--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,14,23,0) 38%, rgba(10,14,23,.78) 100%); }

/* ---------- Dark feature section ---------- */
.panel { position: relative; background: var(--ink-panel); color: #fff; overflow: hidden; }
.panel::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 560px; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 0%, rgba(30,87,240,.34) 0%, transparent 62%);
}
.panel h2, .panel h3 { color: #fff; }
.panel .eyebrow { color: var(--blue-400); }
.panel .lead { color: rgba(255,255,255,.72); }
.glass-grid { display: grid; grid-template-columns: 1fr; gap: 16px; position: relative; z-index: 1; }
@media (min-width: 700px){ .glass-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1000px){ .glass-grid { grid-template-columns: repeat(4, 1fr); } }
.glass {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl); padding: 24px;
  backdrop-filter: blur(8px); transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.glass:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: rgba(79,123,245,.5); }
.glass__num { font-size: .8rem; font-weight: 700; color: var(--blue-400); letter-spacing: .1em; margin-bottom: 14px; }
.glass h3 { font-size: 1.16rem; margin-bottom: 8px; }
.glass p { color: rgba(255,255,255,.68); font-size: .95rem; margin: 0; }

/* ---------- Stats (floating) ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 760px){ .stats { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 22px; text-align: center; box-shadow: var(--shadow-1);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.stat b { display: block; font-size: clamp(1.9rem, 2vw + 1rem, 2.7rem); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.stat span { display: block; margin-top: 10px; font-size: .84rem; color: var(--muted); }

/* ---------- Split feature blocks ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center; }
@media (min-width: 920px){ .split { grid-template-columns: 1fr 1fr; gap: 60px; } .split--rev .split__media { order: 2; } }
.split__media { border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-float); }
.split__media img { width: 100%; aspect-ratio: 3/2.3; object-fit: cover; }
.check { list-style: none; margin: 20px 0 26px; padding: 0; display: grid; gap: 12px; }
.check li { position: relative; padding-left: 34px; color: var(--ink); }
.check li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 999px;
  background: var(--blue-050) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e57f0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 7'/></svg>") center / 14px no-repeat;
}

/* ---------- Accordion ---------- */
.acc { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.acc details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); overflow: hidden; }
.acc summary { cursor: pointer; list-style: none; padding: 20px 56px 20px 24px; font-weight: 600; font-size: 1.06rem; position: relative; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--blue); font-weight: 400; transition: transform .2s ease; }
.acc details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.acc__body { padding: 0 24px 22px; color: var(--muted); }
.acc__body p:last-child { margin-bottom: 0; }
.acc__body ul { padding-left: 1.1em; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-2xl); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-float); }
.form { display: grid; grid-template-columns: 1fr; gap: 16px; }
.form fieldset { border: 0; margin: 0; padding: 0; }
.form legend { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; margin-bottom: 4px; padding: 0; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 14px; }
@media (min-width: 720px){ .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 13px 15px; font: inherit; color: var(--ink);
  background: #fbfcfe; border: 1px solid var(--line-2); border-radius: 12px; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background:#fff; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30,87,240,.14); }
.field .hint { font-size: .8rem; color: var(--muted); }
.form-note { font-size: .84rem; color: var(--muted); background: var(--blue-050); border-radius: 12px; padding: 14px 16px; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 8px; }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden; border-radius: var(--radius-2xl);
  background: var(--ink-panel); color: #fff; text-align: center; padding: clamp(48px, 7vw, 92px) 24px;
}
.cta::before { content: ""; position: absolute; inset: auto -10% -40% -10%; height: 480px; background: radial-gradient(50% 80% at 50% 100%, rgba(30,87,240,.5) 0%, transparent 65%); }
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.75); max-width: 48ch; margin-inline: auto; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 72px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
@media (min-width: 720px){ .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; } }
.footer__brand img { height: 40px; margin-bottom: 16px; }
.footer p { color: rgba(255,255,255,.62); font-size: .92rem; }
.footer h4 { color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: rgba(255,255,255,.72); font-size: .95rem; }
.footer a:hover { color: #fff; }
.footer__bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-d="1"]{ transition-delay: .07s; } [data-reveal-d="2"]{ transition-delay: .14s; }
[data-reveal-d="3"]{ transition-delay: .21s; } [data-reveal-d="4"]{ transition-delay: .28s; }
@media (prefers-reduced-motion: reduce){ [data-reveal]{ opacity:1 !important; transform:none !important; } }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
